vForums Support > Programming & Coding :: Code Requests & Support :: > CSS Query

CSS Query - Posted By Graham (amusedtodeath) on 12th Oct 08 at 12:49pm
So, i'm trying to control the text size and colour of the menu buttons (plain text), and i couldn't work out if i'd need to alter the nav classes (.a .a visited etc) or if it'd be the welcome_table class? Id've thought that changing the .a class would affect any link, where all i want to do is change the top menu buttons.

Someone put me out of my misery! {Sad}

Re: CSS Query - Posted By VeaZna (veazna) on 12th Oct 08 at 4:05pm
<style type="text/css">
.welcome a {
font-size: 10px;
color: #FFFFFF;
}
</style>

that should work! {Smile}

Re: CSS Query - Posted By Graham (amusedtodeath) on 12th Oct 08 at 4:43pm
Unless i'm doing something wrong, it doesn't {Sad}

Re: CSS Query - Posted By VeaZna (veazna) on 12th Oct 08 at 4:58pm
r u sure? it works fine on my test site.

do u have text menus enabled? and is it in ur global headers?

Re: CSS Query - Posted By Graham (amusedtodeath) on 12th Oct 08 at 11:22pm
 
r u sure? it works fine on my test site.

do u have text menus enabled? and is it in ur global headers?


Yup, in global headers and text menus are enabled. {Sad}

Re: CSS Query - Posted By VeaZna (veazna) on 13th Oct 08 at 1:44am
r u using a premade skin?

Re: CSS Query - Posted By Graham (amusedtodeath) on 13th Oct 08 at 8:36am
Nope, it's a blank canvas.

Re: CSS Query - Posted By Ross (admin) on 13th Oct 08 at 9:59am
Try:

<style type="text/css">
#menu_buttons, menu_buttons a {
font-size: 10px!important;
color: #FFFFFF;
}
</style>

Re: CSS Query - Posted By Graham (amusedtodeath) on 13th Oct 08 at 10:05am
 
Try:

<style type="text/css">
#menu_buttons, menu_buttons a {
font-size: 10px!important;
color: #FFFFFF;
}
</style>


Don't think that worked, either {Unsure}

Take a look: http://sciba.vforums.co.uk/ (it's in MM, but Ross can access it {Tongue Out} )

Re: CSS Query - Posted By Ross (admin) on 13th Oct 08 at 11:58am
Whoops, I missed the second # {Embarassed} It's working on there now {Smile}

Re: CSS Query - Posted By Graham (amusedtodeath) on 13th Oct 08 at 12:11pm
Awesome, cheers {Smile}