MyBB Community Forums

Full Version: help with header..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2014-10-13, 10:01 AM)BaggerHD Wrote: [ -> ]<center> is outdated
use css, text-align: center;

yeah, its already got that though and still not centered...

#header .textbox_upper a{
  	font-size: 300%;
    color: #000;
  	text-shadow: white 0.1em 0.1em 0.2em;
    font-weight: bold;
  	text-decoration: underline;
   	position: relative;
   	text-align: center;
}

#header .textbox_lower a{
  	font-size: 150%;
  	color: #fff;
  	text-shadow: black 0.1em 0.1em 0.2em;
	font-weight: bold;
    position: center;
  	text-align: center;
}
remove the a then in css, and take a look at your spelling,,,
Now there is standing
text-align:center

Should be
text-align: center;
(2014-10-13, 10:24 AM)BaggerHD Wrote: [ -> ]remove the a then in css, and take a look at your spelling,,,
Now there is standing
text-align:center

Should be
text-align: center;

Smile its now centered after removing the "a"

the text has also turned orange (link colour), how do i get it to display with no decoration and as black for textbox_upper and white for textbox_lower? (on all hover, link, active and visited)
Sorry, seems like i'm a bit tired,,,, need some sleep he he

Set the a back in css, and add this to your global.css

.textbox_upper {
text-align: center;
}

.textbox_lower {
text-align: center;
}
(2014-10-13, 11:22 AM)BaggerHD Wrote: [ -> ]Sorry, seems like i'm a bit tired,,,, need some sleep he he

Set the a back in css, and add this to your global.css

.textbox_upper {
text-align: center;
}

.textbox_lower {
text-align: center;
}

BINGO!!

Case solved yet again Smile

You really are a great help Big Grin
Pages: 1 2