View Single Post
Old 2018-01-13, 12:15 AM   #11
lezinterracial
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:
Originally Posted by Greenguy View Post
Don't get me wrong, because I'm not trying to knock your work, but while the new version does look a lot better than that (obviously lol) 1995 version, in the end, couldn't you just use a table where the width is a % instead of a fixed number?

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;
}
lezinterracial is offline   Reply With Quote