Tenyque

msg:1210548 | 7:16 pm on Oct 1, 2003 (gmt 0) |
You could try adding display: inline; to your hover: Works for me during a quick test. May have to get rid of display:block completely if this doesn't work out.
|
Reflection

msg:1210549 | 8:40 pm on Oct 1, 2003 (gmt 0) |
Yup you need to get rid of the display:block; unless there is a specific reason you want your anchors to be block elements.
|
Eric in Tennessee

msg:1210550 | 9:46 pm on Oct 1, 2003 (gmt 0) |
Tenyque & Reflection: First off: | div#content a:hover {display: inline; background-color: black; color: #FC6;} |
| The added display: inline; did the trick. Secondly: The reason that I have the display: block; is because there is a list of links in the content area that I want listed. QUESTION: Should I wrap those links in another div like this: <div id="contentmenu"></div> and then use the above list and change the name from: div#content a {} div#content a:visited {} div#content a:hover {} to: div#contentmenu a {} div#contentmenu:visited {} etc.. I will give that a try and see what happens. Does it look like I am heading in the right direction? Thanks again guys (or gals; whichever is appropriate) eTN
|
Reflection

msg:1210551 | 11:16 pm on Oct 1, 2003 (gmt 0) |
| Secondly: The reason that I have the display: block; is because there is a list of links in the content area that I want listed. |
| So basically you want them on seperate lines? Either use the <br> tag or go with the list(thats what theyre for :)). I would use the list method. Also <a> are inline elements so you dont need display:inline; in your style sheet unless you are cancelling out some inheritence.
|
conjurer

msg:1210552 | 2:24 am on Oct 2, 2003 (gmt 0) |
List-o-Matic [accessify.com] is an online tool for creating navigation using lists and is based on Listamtic [maxdesign.com.au]. I found both to be very helpful.
|
Eric in Tennessee

msg:1210553 | 3:02 am on Oct 2, 2003 (gmt 0) |
You guys are all great! Thank you so much. I don't believe anything that 4eyes says about ya'all. :) I have a bunch of reading to do. Thanks again. eTN <added>Listomatic - right on!</added>
|
|