| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Buttons on This Web Page
Please look at http://www.reynoldsmountain.com/asheville.html and tell me how the buttons were created. I know that the links are CSS. But I don't see any graphic files for the buttons. Do you have any idea what program the buttons may have been developed in>
|
|
#2
|
||||
|
||||
|
those buttons are straight CSS ...
__________________
Come JOIN the party!!! Quote of the Month: Retirement: Because you've given so much of yourself to the company that you don't have anything left we can use. Questions to Ponder: What do you do when you see an endangered animal eating an endangered plant? iif([sarcasm]=true,iif([you have to ask]=true,"didn't work","ha ha ha"),"not sarcasm") copyright© 2008 sbenj69 |
|
#3
|
|||
|
|||
|
Quote:
OK. Do you have any idea how I could add a pop up menu for some of them without having to use graphics? |
|
#4
|
||||
|
||||
|
here's a link to one design ... but just search for drop down menu CSS in google and you will get quite a few of them.
|
|
#5
|
|||
|
|||
|
Truthfully it might be easier to just do it by having:
Code:
<div> <div class="linkitem"><a href="#">Overview</a></div> <div class="linkitem"><a href="#">Location</a></div> <div class="linkitem"><a href="#">Location</a></div> <div class="linkitem"><a href="#">Location</a></div> <div class="linkitem"><a href="#">Location</a></div> <div class="linkitem"><a href="#">Location</a></div> </div> Code:
css file
.linkitem{
float:left;
width:16%;
background-color:#f92999;
}
.linkitem a{
color:#00ffff;
}
.linkitem a:hover{
color:#ff0000;
}
Yes the colors would be way off, but hey who cares you see what I am doing. I am almost positive that would work. |
|
#6
|
||||
|
||||
|
Quote:
It might be 'easier' [personally, I don't think so,] but it is still semantically incorrect. Is there any reason for bringing up month old threads?
__________________
Support requests via PM will be ignored! |
![]() |
| Viewing: ASP Free Forums > Web Design > Web Layout > Buttons on This Web Page |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|