MyBB Community Forums

Full Version: theme help needed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hi ive just installed a new theme but the logo is not in the centre and the forums block isnt as wide as the nav bar how do i make it bigger see pic
Try to paste below CSS code in your global.css of your theme & see if it fixes both the issues:

.logo {
text-align: center;
width: auto;
}
no still the same m8

with part of the css does it go in m8
Open header template and find;
<a href="{$mybb->settings['bburl']/index.php}"><img src="http://i1057.photobucket.com/albums/t399/craigvm/koolartv-mbanner.jpg" alt="VAUXHALL MODIFIED" title="VAUXHALL MODIFIED" />
and Change it into;
<div align="center"><a href="{$mybb->settings['bburl']/index.php}"><img src="http://i1057.photobucket.com/albums/t399/craigvm/koolartv-mbanner.jpg" alt="VAUXHALL MODIFIED" title="VAUXHALL MODIFIED" /></div>

Open global.css , and find;
#container {
	background: #FFF;
	width: auto;
	color: #FFF;
	margin: auto auto;
	text-align: left;
.logo {
	text-align: center;
	width: auto;
}
and Change it into;
#container {
	background: #FFF;
	width: auto;
	color: #FFF;
	margin: auto auto;
	text-align: left;
}
no still the same m8 i`m just goin back to the mybb theme but how do i change the color to the same as this theme
What are you doing is not correct. You're adding .logo class inside the #container class.
#container {
	background: #FFF;
	width: auto;
	color: #FFF;
	#container {
	background: #FFF;
	width: auto;
	color: #FFF;
	margin: auto auto;
	text-align: left;
	.logo {
	text-align: center;
	width: auto;
}
.logo class should be after the ending } of the #container class. You have actually messed up your templates and stylesheet.
Yes, what Yaldaram pointed out. .logo should be a whole different class and should be outside of any exisiting } bracket.
ive just got rid of that theme now could some1 tell me how to change some of the default themes colors ive pointed out in the pic witch colors i want to change and where can i get a list of the color codes
[Image: shot.png]
These are .thead and .tcat classes in global.css. Edit their background attribute.
THANKS I`VE SORTED THE COLOR ON THE LOWER 1 (.tcat) BUT WITCH 1 IS IT FOR THE COLOR ABOVE IT IN THE PIC
Pages: 1 2