So, the voices are obnoxious. They constantly badger me about what I’m doing wrong in life, and I don’t know how to handle it. So many voices doing what they do best, annoy me. To no end. They argue with each other. The constant nagging can be annoying at times. I don’t know what to do about any of this. Damn voices always doing whatever they want to do! I end up suffering from it all. Damn voices. If I didn’t have voices going off in my head? I think I would be better off. So many thoughts come and go in my head at times, I can’t tell where they’re coming from. Is it the devil that’s talking to me? Is it God? I doubt God would want to be messing with me like this…but he did create me the way I am? So I’m not sure about any of that. When the voices tell me to do things? Things I don’t want to do? Yeah, that’s when they tend to come in fighting. I don’t have a way of making them stop. I don’t have a way of making them go away. Maybe I need more medication? I wish I had an answer to al...
Here's a fun little css stylesheet that one can use for menus.
The CSS for the menu is:
#menu {
padding:0px;
width:120px;
}
#menu a {
text-decoration:none;
color:#000;
display:block;
border:1px solid #fff;
padding-left:3px;
}
#menu a:hover {
border:1px solid #000;
}
Which you can use with the following html:
<ul id="menu">
<li><a href="#">Link One</a></li>
<li><a href="#">Link Two</a></li>
<li><a href="#">Link Three</a></li>
</ul>
This will producde a simple menu that when hovered over will display a black box around the menu item.
Of course you can change the background color, or the font etc. to whatever you need it to be. Ah the simplicity that is CSS.
Comments
Post a Comment