View Full Version : How to make cell boxes?


miso
07-13-2005, 06:06 AM
I don't know what they are called, but what do I type in my css to get these cell boxes to appear on my page like this page (http://az.pinkinki.net). See on the right hand side, where the navigation is, there is a box which says "Site." etc, how do I get one of those boxes?

MaGiCSuN
07-13-2005, 06:42 AM
<html>
<head>
<style type="text/css">
<!--

.boxtitle { border: 1px solid orange; background-color: #000000; }
.boxbox { color: #000000; }

-->
</style>

</head>
<body>

<div class="boxtitle">Site</div>
<div class="boxbox"> the whole story i here bla bla bla bla </div>

</body>
</html>

repeat the two divs together for each box ... seperate them with an "<p>"

Love,
Mirna

miso
07-13-2005, 09:06 AM
<html>
<head>
<style type="text/css">
<!--

.boxtitle { border: 1px solid orange; background-color: #000000; }
.boxbox { color: #000000; }

-->
</style>

</head>
<body>

<div class="boxtitle">Site</div>
<div class="boxbox"> the whole story i here bla bla bla bla </div>

</body>
</html>

repeat the two divs together for each box ... seperate them with an "<p>"

Love,
Mirna

thanks :D

MaGiCSuN
07-13-2005, 01:35 PM
No problem :)

Love,
Mirna