Admin.php (Congif) 'breaks' using Kubrick theme... Admin.php (Congif) 'breaks' using Kubrick theme...
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Admin.php (Congif) 'breaks' using Kubrick theme...

Started by macsimoin, May 30, 2006, 04:06:56 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

macsimoin

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?

Joachim Müller

edit the stylesheet, find.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.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  ;).

macsimoin

GauGau,

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

Gizmo

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

                        <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

                        <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!).
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

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