MyBB Community Forums

Full Version: Edit this navbar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hello how do i edit this navbar, help please Confused
[Image: R2wj9RL.png]
(2014-09-29, 01:06 PM)Vanz Wrote: [ -> ]http://community.mybb.com/thread-160321-...pid1106421

Unhelpful. thats another problem
Can I plz get you url?
Of not, see if your theme is using background on well guess the maker of the theme would call it .alert.guest or .welcome.guest
in global.css. remove the background tag.
(2014-09-30, 06:38 AM)BaggerHD Wrote: [ -> ]Can I plz get you url?
Of not, see if your theme is using background on well guess the maker of the theme would call it .alert.guest or .welcome.guest
in global.css. remove the background tag.

.guest_link {
color: #fff;
font-family: Verdana, Arial, Sans-Serif;
background:#970404;
}


this right?
Try then without the background. like;

.guest_link {
color: #fff;
font-family: Verdana, Arial, Sans-Serif;
}
if want to change the red color just change the background #yourcolorhex

.guest_link {
color: #fff;
font-family: Verdana, Arial, Sans-Serif;
background:#970404;
}
i want to change the background and the font tittle too.
what do you mean by font title ?

to change the font just add the font name like that :
.guest_link {
color: #fff;
font-family: [YOUR-FONT-NAME], Verdana, Arial, Sans-Serif;
background:#970404;
}

or do you want to change the Hello Guest ?
if so goto ACP>>Templates>>[YOUR_THEME]>>Header>>header_welcomeblock_guest

and edit what ever you want
Osborn, what do you mean with title?

If you mean font color, change color: #fff (that is white) to the color you want...ect #000000 is black), but in 1,8 all "color" in css is for the font color
Pages: 1 2