MyBB Community Forums

Full Version: A little help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm creating something of a "lite" skin at the moment, but I'm having a few problems. One being that, at the bottom, the copyright text is white and I can only see the links because the BG is also white. How do I change it back to black?
For reference, I upload this image incase you guys can't really understand what I'm trying to do.
[Image: problem.gif]

My second question is, how do I fix the paths so this doesn't happen?
[Image: paths.gif]

I don't want any images there but I don't want it to double either.
heloo there

the 1st error is due to the container font color, u have to check it from the theme manager, if that doesn't help, check the body class also from the theme manager.

also in case all didnt help then u will have to use html to color them by going to the footer template

find this
$lang->copyright © $copyyear


and add the coloring html code so it becomes like

<font color="#000000">$lang->copyright &copy; $copyyear </font>
repeat it for all.

for the sec error, pls check the header template, the code of these links should be

<li><a href="$settings[bburl]/search.php"><img src="$theme[imgdir]/toplinks/search.gif" border="0" alt="$lang->toplinks_search" />$lang->toplinks_search</a></li>
					<li><a href="$settings[bburl]/memberlist.php"><img src="$theme[imgdir]/toplinks/memberlist.gif" border="0" alt="$lang->toplinks_memberlist" />$lang->toplinks_memberlist</a></li>
					<li><a href="$settings[bburl]/calendar.php"><img src="$theme[imgdir]/toplinks/calendar.gif" border="0" alt="$lang->toplinks_calendar" />$lang->toplinks_calendar</a></li>
					<li><a href="$settings[bburl]/misc.php?action=help"><img src="$theme[imgdir]/toplinks/help.gif" border="0" alt="$lang->toplinks_help" />$lang->toplinks_help</a></li>

to remoce the images, u just need to remove this part

e.g
<img src="$theme[imgdir]/toplinks/help.gif" border="0" alt="$lang->toplinks_help" />

and so for the others

regards
Worked perfectly, thank you.
<font> has been deprecated, so use a <span> with the appropriate style.