Rainy Day HELP!!! Rainy Day HELP!!!
 

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

Main Menu

Rainy Day HELP!!!

Started by pfeffer5308, August 11, 2004, 05:39:10 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

pfeffer5308

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

omniscientdeveloper

Why don't you just revert to the unmodified version and reapply your changes?

-omni

pfeffer5308

because it does the same thing as i don't know where the code is for this section!

Joachim Müller

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