forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: pfeffer5308 on August 11, 2004, 05:39:10 am

Title: Rainy Day HELP!!!
Post by: pfeffer5308 on August 11, 2004, 05:39:10 am
When you eneter into an album on rainy day, the page has the Album Page number in the bottom right.  Where is the code for this located?  Is it somewhere in the stylesheet?  I am asking, becausing i edited the theme and now page number 1 is the only one visible and the links to pages 2, 3, etc... only show up on mouseover!

Thanks for your help in advance,

pfeffer
Title: Re: Rainy Day HELP!!!
Post by: omniscientdeveloper on August 11, 2004, 06:08:56 am
Why don't you just revert to the unmodified version and reapply your changes?

-omni
Title: Re: Rainy Day HELP!!!
Post by: pfeffer5308 on August 11, 2004, 10:57:47 am
because it does the same thing as i don't know where the code is for this section!
Title: Re: Rainy Day HELP!!!
Post by: Joachim Müller on August 11, 2004, 01:51:52 pm
if the numbers show up when you hover over them, there's no need to change the code in theme.php - you will only have to adjust your css class. open themes/rainy_day/style.css, find
Code: [Select]
.navmenu {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        color: #FFFFFF;
        font-size: 100%;
        font-weight: bold;
        background : #66707C ;
        border-style: none;
}

.navmenu img {
        margin-top: 1px;
        margin-right: 5px;
        margin-bottom: 1px;
        margin-left: 5px;
}

.navmenu a {
        position: relative;
        display: block;
        padding-top: 2px;
        padding-right: 5px;
        padding-bottom: 2px;
        padding-left: 5px;
        text-decoration: none;
        color: #FFFFFF;
}

.navmenu a:hover {
        background : #C2C9D3 ;
        text-decoration: none;
        color:         #000000;
}
and change accordingly. Use the same color for .navmenu a as you have for .navmenu a:hover.

For more details, post a link.

GauGau