need code to hide text in html

Status
Not open for further replies.

looking

always the grunt
May 4, 2007
9
0
0
73
oregon
i'm not going to spam my pages with keywords and such i know that the search engines will find it but this is just for my own curiosity. i'm running kinda of a test and i once had the code but i can't find it anywhere nor can i find it anywhere online. please help. thanks.
 


is css a programming thing? i work with frontpage old version and i know about using the same color as the background. i thought maybe that was what you were talking about. i don't know anything about css. any place to read up on it?
 
is css a programming thing? i work with frontpage old version and i know about using the same color as the background. i thought maybe that was what you were talking about. i don't know anything about css. any place to read up on it?

CSS Tutorial

This helped me out a ton dude, the whole site actually.

I made my first sites with frontpage 2002. Now I just use it for some format and then do much of it with notepad, snagging scripts and goodies from places I surf.

Good luck dude, learn html before you even try to figure out css.
 
In the HTML:

<div id="hidden">
your text
</div>

In the CSS:

#hidden {
display: none;
}
 
Status
Not open for further replies.