justravis Posted November 6, 2008 Share Posted November 6, 2008 http://able2work.org/about.pwr In FireFox 3, Text-Decoration is not working properly on the menu bar while the hover color change does not work in IE. Are there any workarounds for these issues? Thank You. Quote Link to comment https://forums.phpfreaks.com/topic/131563-css-text-decoration-ahover-diferences-in-ff-ie/ Share on other sites More sharing options...
dropfaith Posted November 6, 2008 Share Posted November 6, 2008 text decoration should work fine in all browsers but your code not validating might effect this Quote Link to comment https://forums.phpfreaks.com/topic/131563-css-text-decoration-ahover-diferences-in-ff-ie/#findComment-683466 Share on other sites More sharing options...
justravis Posted November 6, 2008 Author Share Posted November 6, 2008 good point - which validator did u use? Quote Link to comment https://forums.phpfreaks.com/topic/131563-css-text-decoration-ahover-diferences-in-ff-ie/#findComment-683777 Share on other sites More sharing options...
dropfaith Posted November 6, 2008 Share Posted November 6, 2008 http://jigsaw.w3.org/css-validator/ http://validator.w3.org/ i always use both css and html Quote Link to comment https://forums.phpfreaks.com/topic/131563-css-text-decoration-ahover-diferences-in-ff-ie/#findComment-683939 Share on other sites More sharing options...
ifubad Posted November 6, 2008 Share Posted November 6, 2008 IE has a bug with the a hover, you need to find a trigger point to get it to work, and it differs depending on what other css you are also using. From what I remember, you have to set the trigger directly in a:hover, not a:hover .classname. You can assign a class to the a tag and set it like so a.classname:hover a.classname:hover { font-size: 100%; } If the font-size property does not work, you can try one of the following properties, and if they do not work, then you'll have to try other properties until you find one that does work. Google "ie hover css" for more info color: #any color hex float:none border:none Quote Link to comment https://forums.phpfreaks.com/topic/131563-css-text-decoration-ahover-diferences-in-ff-ie/#findComment-683947 Share on other sites More sharing options...
ifubad Posted November 6, 2008 Share Posted November 6, 2008 why are you using table to create your whole layout? table should only be used for tabular data, bot layout. Quote Link to comment https://forums.phpfreaks.com/topic/131563-css-text-decoration-ahover-diferences-in-ff-ie/#findComment-683958 Share on other sites More sharing options...
justravis Posted November 6, 2008 Author Share Posted November 6, 2008 table layout is temporary. Quote Link to comment https://forums.phpfreaks.com/topic/131563-css-text-decoration-ahover-diferences-in-ff-ie/#findComment-683990 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.