vForums Support > Programming & Coding :: Code Requests & Support :: > [F] Remove All Menu Spacing
[F] Remove All Menu Spacing - Posted By Amor (amor) on 11th Jan 08 at 6:55pm
Looked through the database.. Didn't find this...
Code for removing all menu spacing, much like the one Chris/CD made for proboards where it removes spacing from inbetween the buttons and from top & bottom.
Anyone up for it?
Re: Remove All Menu Spacing - Posted By Dreg[Bot] (dregondrahl) on 11th Jan 08 at 6:59pm
try this
#welcome_table .menu *{
font-size: 0px;
}
#welcome_table .menu img{
margin-left: 5px;
}
Edit: remove the part in Red if you don't want any space at all.
Re: Remove All Menu Spacing - Posted By Amor (amor) on 11th Jan 08 at 7:00pm
did... nothin'
Re: Remove All Menu Spacing - Posted By Dreg[Bot] (dregondrahl) on 11th Jan 08 at 7:01pm
Did you add it as CSS to the global header top
?
Also read my edit. it will also remove the ::
Re: Remove All Menu Spacing - Posted By Amor (amor) on 11th Jan 08 at 7:04pm
Yes, I added it to the CSS, i'm not a big of a dunce
Alrighty.. Removing wha toyu put in red got rid fo the spacing from inbetween the buttons, but not from above or below.
Re: Remove All Menu Spacing - Posted By Dreg[Bot] (dregondrahl) on 11th Jan 08 at 7:21pm
#welcome_table table {
margin: -5px;
}
#welcome_table .menu *{
font-size: 0px;
}
Re: Remove All Menu Spacing - Posted By Amor (amor) on 11th Jan 08 at 7:24pm
Thank you Dreggie.
Perfect as usual
Re: Remove All Menu Spacing - Posted By Dreg[Bot] (dregondrahl) on 11th Jan 08 at 7:28pm

Re: Remove All Menu Spacing - Posted By Amor (amor) on 11th Jan 08 at 7:29pm
