|
|
|
|
|
|
|
|
|
#11 | |
|
Well you know boys, a nuclear reactor is a lot like women. You just have to read the manual and press the right button
Join Date: Dec 2012
Posts: 152
|
Quote:
No offense taken. I did not think of that. That would have looked better. My original intention was just to have buttons across the top for navigation. I used some css styling, I found somewhere on the net. It was pretty much just a class with border around the text. Code:
<div id="header2"> <a href="http://www.bestfreecamgirls.com" class="currentbutton">Home</a> <a href="http://www.bestfreecamgirls.com/black.php" class="button">Ebony Girls</a> <a href="http://www.bestfreecamgirls.com/asian.php" class="button">Asian Girls</a> <a href="http://www.bestfreecamgirls.com/video.htm" class="button">Video</a> </div> Code:
.button {
background-color: #868686; /* whitish */
border: 2px solid black;
color: black;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
float: center;
}
.button:visited {
background-color: #5d747e; /* whitish */
border: 2px solid black;
color: black;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
float: center;
}
.button:active {
background-color: #fff; /* whitish */
border: 2px solid black;
color: black;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
float: center;
}
.currentbutton {
background-color: #fdd4c1; /* pink */
border: 2px solid black;
color: black;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
float: center;
}
|
|
|
|
|
|
|