Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: Admin.php (Congif) 'breaks' using Kubrick theme...  (Read 3707 times)

0 Members and 1 Guest are viewing this topic.

macsimoin

  • Guest
Admin.php (Congif) 'breaks' using Kubrick theme...
« on: May 30, 2006, 04:06:56 am »

Similar to my other problem with my FAQ page, all of the text for the Configuration settings is centered...and it look horrible. I've been at this for hours and I still can't fix it. Any thoughts?
« Last Edit: June 01, 2006, 06:42:30 am by GauGau »
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Admin.php (Congif) 'breaks' using Kubrick theme...
« Reply #1 on: May 30, 2006, 04:33:21 am »

edit the stylesheet, find
Code: [Select]
.admin_menu {
        font-family: Verdana, Helvetica, sans-serif;
        font-size: .75em;
        color:gray;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right:2px;
        margin-left:2px;
        text-align: center;
        background-color: #f8f8f8;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
}
and replace with
Code: [Select]
.admin_menu {
        font-family: Verdana, Helvetica, sans-serif;
        font-size: .75em;
        color:gray;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right:2px;
        margin-left:2px;
        text-align: left;
        background-color: #f8f8f8;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
}
Use the "Web Developer Toolbar" (or the similar tool "Web Accessibility Toolbar" for IE) to find out what CSS class determines which part of the screen output and change accordingly. I recommend using a better browser than IE  ;).
Logged

macsimoin

  • Guest
Re: Admin.php (Congif) 'breaks' using Kubrick theme...
« Reply #2 on: May 30, 2006, 09:47:54 pm »

GauGau,

Thanks...but this only worked in Firefox. I still can't fix it for IE6.
Logged

Gizmo

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1015
    • BullsEye Photos
Re: Admin.php (Congif) 'breaks' using Kubrick theme...
« Reply #3 on: May 31, 2006, 01:52:40 am »

I've seen this problem with a couple of themes and haven't figured out exactly why but here's a fix that will work.

edit the template.html, find
Code: [Select]
                        <td valign="top">
                            <img src="images/spacer.gif" width="535" height="1" border="0" alt="" /><!-- determines the minimum width of the gallery section -->
                            {GALLERY}
                        </td>
and replace with
Code: [Select]
                        <td valign="top" align="left">
                            <img src="images/spacer.gif" width="535" height="1" border="0" alt="" /><!-- determines the minimum width of the gallery section -->
                            {GALLERY}
                        </td>

One of these days, I'll look into this as it does bother me as well.

Billy

PS. I agree... let's dump IE but maybe IE7 will be better (we can only hope!).
Logged
Did you read the manual first???? Taking 2 minutes to backup your files can save you hours of wondering what you screwed up.
Billy Bullock - BullsEyePhotos Blog of Indecision

macsimoin

  • Guest
Re: Admin.php (Congif) 'breaks' using Kubrick theme...
« Reply #4 on: June 01, 2006, 01:25:41 am »

Gizmo,

You're a lifesaver! That's done it...it even fixed my FAQ page issue...well, not totally: http://forum.coppermine-gallery.net/index.php?topic=32024.msg148919#msg148919.

Thanks for your help!!! :D
Logged
Pages: [1]   Go Up
 

Page created in 0.021 seconds with 19 queries.