Ok, so I've been obssessed with css all week. In fact, I've been not sleeping at night and thinking about css. Which is sort of bad because I'm not very good at it. I'm sort of going through the process of rethinking all the things I know about tables and applying them to css. Or converting them. Or something. So I made some xml buttons. Just to see what I could do.
So the css looks like this:
[code]
#xml {
background-color: #000000;
border: 1px solid #444444;
width: 110px;
height:12px;
margin-bottom:5px;
}
#xml_label {
border: 1px solid #ffffff;
float:left;
width: 40px;
background-color:#ff6600;
text-align:center;
text-decoration:none;
color:white;
font-weight:bold;
font-size:10px;
height:10px;
}
#xml_text{
height:11px;
padding-top: 1px;
background-color: #ffffff;
font-weight:bold;
font-size: 10px;
color: #000000;
text-align:center;
}
#xml_text a{text-decoration:none;}
[/code]
and then the actual code is this:
[code]
[/code]


