rtysmith 1 Report post Posted June 29, 2011 How do I increase the sub-nav width? My titles are too long and getting cut off. Share this post Link to post Share on other sites
catrina 103 Report post Posted June 30, 2011 Which theme are you using? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
rtysmith 1 Report post Posted June 30, 2011 pagelines pro Share this post Link to post Share on other sites
cmunns 16 Report post Posted June 30, 2011 add this custom css `#secondnav li a{padding: 10px 5px; }` Share this post Link to post Share on other sites
rtysmith 1 Report post Posted July 7, 2011 That's not doing it, any other ideas? Share this post Link to post Share on other sites
timlinson 3 Report post Posted July 8, 2011 try adding !important like `#secondnav li a{padding: 10px 5px !important}` if that doesn't work, please post a live site link. Share this post Link to post Share on other sites
rtysmith 1 Report post Posted July 8, 2011 I just don't think that is the right code. It appears the sub menu width is set to a max of 250 or 252, padding just makes the text have less room. You can preview at eosworldwide.net - go to menu training & tools Share this post Link to post Share on other sites
rtysmith 1 Report post Posted July 8, 2011 I did find this at the bottom of supersubs.js, but changing it does not seem to help // expose defaults $.fn.supersubs.defaults = { minWidth : 9, // requires em unit. maxWidth : 25, // requires em unit. extraWidth : 0 // extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values }; Share this post Link to post Share on other sites
kastelic 6 Report post Posted July 8, 2011 Try this: ul.sf-menu ul.sub-menu, ul.sf-menu ul.children { width: 20em !important; } Share this post Link to post Share on other sites