PDA

View Full Version : How can I put Text on homepage?


JayClark79
Nov-08-2009, 10:12 AM
Im trying to put "Click here to Enter" under my slideshow but I dont see a box for body text.. I only see a singe text line for body code.

Allen
Nov-08-2009, 03:00 PM
Im trying to put "Click here to Enter" under my slideshow but I dont see a box for body text.. I only see a singe text line for body code.
Turn on the biobox and add it there. There are all kinds of ways to format it, added a few in for you.

<html>
<br />
<center>
<a href="/galleries">
<span style="font-size: 12pt; color: #fff; font-family: Comic Sans MS, verdana;">Click here to Enter</span></a>
</center>
</html>

JayClark79
Nov-08-2009, 03:15 PM
Thank you very much, is there a way to make the background of just the bio box black? Regular HTML doesnt seem to be workig :scratch

Allen
Nov-08-2009, 03:30 PM
Thank you very much, is there a way to make the background of just the bio box black? Regular HTML doesnt seem to be workig :scratch
Let's try it this way. HTML adds the entity and CSS formats it.

Change your biobox to this.

<html>
<a href="/galleries">Click here to Enter</a>
</html>

Add these to your CSS

#bioBox {background: none;}
#userBio {text-align: center;}

#userBio a {
text-decoration: none;
font-size: 12pt;
color: #FFF;
}

#userBio a:hover {color: #CCC;}

JayClark79
Nov-08-2009, 03:56 PM
Thanks a ton for your help!