Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

No Tiling CSS is tiling anyway...

Status
Not open for further replies.

jma

Technical User
Apr 24, 2001
74
US
Ok, I am new to CSS....But seems from this group and others...the code below should stop my background from tiling...it isn't...what did i do wrong? Thanks

<STYLE TYPE=&quot;text/css&quot;>
<!--
BODY {background-image:url(images/bckgrnd3.gif); background:no-repeat}
-->
</STYLE>
 
You almost had it. Try this.

<STYLE TYPE=&quot;text/css&quot;>
<!--
BODY {background-image:url(images/bckgrnd3.gif); background-repeat:no-repeat}
-->
</STYLE>

Rick
 
Great! Thank you that was it.... Hey, can I push my luck and ask if you know how I can get hyperlinks to be not underlined and different colors per page? or do you know of a good link i can check out? been looking on internet for a while and can't seem to find plain and simple answer...ones i tried so far...failed... :-( If someone has the time to help me out that would be much appreciated...meanwhile I keep on my search... I also just ordered a couple of CSS books... Thanks again, M
 
The following example will provide a link with underline only when the mouse is hovered over the link.

<style type=&quot;text/css&quot;>
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
A:hover {text-decoration: underline; color: blue;}
</style>


You can check out for css help.
There are loads of sites about. If you want any more, just ask..

Hope this helps Wullie

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top