Hi All, Check this page http://www.bhallibrothers.com/surgical.php?id=1 I want when i click any category. it turns to bold. and then i click on any other category. the first link is go to their normal position and new link which i clicked is bold. This is my css code for links <style type="text/css"> <!-- a:link { text-decoration: none; color: #000000; } a:visited { text-decoration: none; color: #000000; } a:hover { text-decoration: underline; color: #000000; font-weight: bold } a:active { text-decoration: none; color: #000000; } .style1 {color: #000000} .style26 {FONT-SIZE: 12px; FONT-FAMILY: Arial, Helvetica, sans-serif } .style30 {color: #000000} --> </style> Code (markup): Sorry for my english Thanks
Dear. i want when some one click any subcategory. it look bold. and then click on other category. it will be normal and new category which user click. look bold
Maybe it's as simple as, s/he wants the word in the menu to be bold so long as the user is on that page? If so, that would be great, because right now if I click on something, I get very little feedback as to which page I'm on (note though that I don't have JS or Flash, possibly either of those are supposed to be telling me that I'm on a certain page, which is BAD Usability!). If that's the case (that if I click Products that the word in the menu "Products" is bold), then CSS can do it, but the method to do it depends on how the menu is made. If it's being generated by PHP then you'll need one method; if each page is hand-crafted then an easier method can be used. By the way, Yazo: you are writing too much code for your anchors. a { text-decoration: none; color: #000000; } a:hover, a:focus { text-decoration: underline; font-weight: bold; } Code (markup): will do the same as the very long set of anchor code you posted above. You will have to tell us if PHP is adding your menu to each page (using PHP includes) or if you can make the menu have different HTML on each page (because then you can add a class to the correct menu item to make it bold).