Originally posted by EpicPlayr41
Thanks for that, though I'm pretty sure my links are readable in this format.
I visited a CSS tutorial, and it actually taught me how to add a background picture! I checked the format used, copied it, but it didn't apply to my format.
Any tips?
Let's see (if I can explain this properly)
(In short: The fixed CSS is at the very bottom of the post)
First off, the body class doesn't work in Acmlmboard this way (unless you define an external CSS file, but that's another thing). You should add a dot before body, and you shouldn't use generic names for classes, since you could change a CSS property of the board.
Then, the <style> needs to be <style type="text/css"> or else it won't work.
Then, you should have added this is another way, without using two style tags, like
<style type="text/css"> .nkpwhite{background-color: #000044; color:#FF0000;} .nkpbg{background-image: http://fc09.deviantart.net/fs71/i/2010/125/6/6/Pokeball__Free_Background__by_scribblin.png;}</style><div class="nkpwhite"><div class="nkpbg">
(text)
</div></div>
You need to call the class like <div class="[name of class]">, in this case nkpgb, that will load the background image. It won't load the class contents (in this case, the bg image) otherwise. However, the text would be unreadable and the box hidden. With some reordering this is what you could use (leaving the box colors as-is):
---Fixed CSS----
HEADER
<style type="text/css"> .nkpwhite{background-color: #000044; color:#FF0000; } .nkpbg{background: url('http://fc09.deviantart.net/fs71/i/2010/125/6/6/Pokeball__Free_Background__by_scribblin.png'); padding: 20px;}</style><div class="nkpbg"><div class="nkpwhite">
SIGNATURE:
</div>
<div class="nkpwhite">
[Your links here]
[more links if you want]
</div></div>
____________________