Re-working my website... I would love Comments

Quote:
any one know how to get it so they do not show?

It can be done with css...
wink.png
But I don't think it can be done in plain html
 
Quote:
any one know how to get it so they do not show?

It can be done with css...
wink.png
But I don't think it can be done in plain html

Ok, one thing i was thinking about was using <div></div> tags and then have a different class for each. i am not sure at all
 
Quote:
The way I've seen it done would be as follows:
:

<html>
<head>
<style type="text/css">
.hidebullets{
list-style-type: none;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<ul class="hidebullets">
<li>Bla bla</li>
<li>djgjkdkhg</li>
<li>odeg,agh</li>
<li>some more example data</li>
</ul>
</body>
</html>
 

New posts New threads Active threads

Back
Top Bottom