Now are you talking about the color that is behind the bar? I would love to change that but the button background can stay. I want to change the font color of
← Last
and
Next →
And make the font of those darker so they aren't so hard to see on the button. ( ← and
→ are the left and right arrows).
If I go to "View page source" and find where the last and next buttons are it shows:
HTML Code:
<ul class="[COLOR="Red"]picturenav nopopupgroup[/COLOR]">
<li><a href="album.php?albumid=337&attachmentid=5491" class="textcontrol">← Last</a></li>
<li><a href="album.php?albumid=337&attachmentid=5503" class="textcontrol">Next →</a></li>
</ul>
When I searched for picturenav_nopopupgroup in the templates I found that it was in the
album _picturelist and
album_pictureview
Here is a bit of the album_pictureview template where the picturenav_nopopupgroup shows up:
HTML Code:
<div id="albumtop" class="floatcontainer toolsmenu">
<div>
<vb:if condition="$show['picture_nav']">
[COLOR="Red"] <ul class="picturenav nopopupgroup">[/COLOR]
<li><a href="album.php?{vb:raw session.sessionurl}albumid={vb:raw albuminfo.albumid}&attachmentid={vb:raw pic_location.prev_attachmentid}" class="textcontrol"><vb:if condition="$stylevar['textdirection'] == 'rtl'">→<vb:else />←</vb:if> {vb:raw pic_location.prev_text_short}</a></li>
<li><a href="album.php?{vb:raw session.sessionurl}albumid={vb:raw albuminfo.albumid}&attachmentid={vb:raw pic_location.next_attachmentid}" class="textcontrol">{vb:raw pic_location.next_text_short} <vb:if condition="$stylevar['textdirection'] == 'rtl'">←<vb:else />→</vb:if></a></li>
<vb:if condition="$show['usercss_switch']"><li><a href="profile.php?{vb:raw session.sessionurl}do=switchusercss&hash={vb:raw bbuserinfo.logouthash}&u={vb:raw userinfo.userid}">{vb:raw usercss_switch_phrase}</a></li></vb:if>
</ul>
</vb:if>
Is there anyway to edit this to make the font darker by editing the above code?