dimitris Posted October 29, 2010 Report Share Posted October 29, 2010 Hello all coding guru and not only ! Recently i had finish my skinning work for my virtual airline based on phpvms and now I ask your kindly to say me you opinion about it. A link can be found here: http://greeceairwaysva.com/fss/ Also be careful it works completely under Firefox, Safari, Opera etc. except Internet Explorer (due to the drop down menus). If you check my drop-down menus you will notice that at the last menu of every sub menu item there is no the border gray line the css is the following: .dropdown li a { background:none repeat scroll 0 0 #FFFFFF; border:1 none; color:#777777; display:block; height:25px; line-height:25px; margin:0; padding:0 0 0 3px; text-decoration:none; } Hope you like it and you can help me with the border Quote Link to comment Share on other sites More sharing options...
Tom Posted October 29, 2010 Report Share Posted October 29, 2010 I believe it's in fact due to this: Find: .nav ul a { border: 1px solid #cccccc; border-bottom: 0; padding-right: 20px; width: 150px; white-space: nowrap; } Replace: .nav ul a { border: 1px solid #cccccc; padding-right: 20px; width: 150px; white-space: nowrap; } It's a nice design, shame you aren't supporting IE though - it's still got around 46% of users. Quote Link to comment Share on other sites More sharing options...
dimitris Posted October 29, 2010 Author Report Share Posted October 29, 2010 hi Tom ! Thank you for your fast reply! I fix it by changing the: .nav ul a { border: 1px solid #cccccc; border-bottom: 0; padding-right: 20px; width: 150px; white-space: nowrap; } to: .nav ul a { border: 1px solid #cccccc; border-bottom: 1; padding-right: 20px; width: 150px; white-space: nowrap; } it was so simple! Thank you again because you make me to check it again Quote Link to comment 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.