MyBB Community Forums

Full Version: lo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi im trying to add this under my shoutbox dunno if this code would work any help pls Lightbulb

<a href="http://my.funtrivia.com/tournament/Super-Daily-Trivia-84442.html">Play our Daily Trivia Game! New Questions Daily!</a>
Sure that code will work, but it all greatly depends on where your shoutbox is. This link would probably go best in your footer, then it can be viewed on every page. You might also consider surrounding it in a center tag. For instance:

<center><a href="http://my.funtrivia.com/tournament/Super-Daily-Trivia-84442.html">Play our Daily Trivia Game! New Questions Daily!</a></center>

You should probably increase the size of the font too, or it could be missed.
got it to work above shoutbox but how do i change colors Exclamation
would that work


<center><font color=white><a href="http://my.funtrivia.com/tournament/Super-Daily-Trivia-84442.html">Play our Daily Trivia Game! New Questions Daily!</a></font></center> 
Yeah. You may want quotation marks around white:

<font color="white">
well tried that dennis no change maybe the theme i guess
Well, that would change regular text to white, not links. Not sure how to change colors of links within code like that.
Hi,

To do what you want, I'd recommend you place your link/notice in a div, with the following css (add this to the 'additional css' part of your theme in the MyBB Admin CP):

.notice {
text-align: center;
}

.notice a:link {
color: white;
}

.notice a:visited {
color: white;
}

Then replace the following:
<center><a href="http://my.funtrivia.com/tournament/Super-Daily-Trivia-84442.html">Play our Daily Trivia Game! New Questions Daily!</a></center>

with

<div class="notice"><a href="http://my.funtrivia.com/tournament/Super-Daily-Trivia-84442.html">Play our Daily Trivia Game! New Questions Daily!</a></div>

That should hopefully work.

Chris
worked a treat chris thank you hehe all that to change a color