MyBB Community Forums

Full Version: MyBlu Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7
how to move logo to the left side??
In global.css find:
.logo {
	background: #0068b1 url(images/MyBlu/headerbg.png) top left repeat-x;
	text-align: center;
	height: 84px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
}

Replace with:
.logo {
	background: #0068b1 url(images/MyBlu/headerbg.png) top left repeat-x;
	text-align: left;
	height: 84px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
}
Thanks for that,and one more question??can i ad no conflict script in header_include after {$newpmmsg}<script type="text/javascript">jQuery.noConflict();</script>
Please want change quote box in this themes to be more pretty,can you provide codes for that??
Nice theme...

I would like to add about 30 pixel to the thicknesses top blue strip of the . Header where the logo is.

Where would I make those edits?

Thanks.
there is no any support for this theme
(2012-06-17, 07:07 AM)lexy Wrote: [ -> ]Please want change quote box in this themes to be more pretty,can you provide codes for that??

You need to edit blockquote in global.css

(2012-11-30, 04:36 PM)tropicalsuns Wrote: [ -> ]I would like to add about 30 pixel to the thicknesses top blue strip of the . Header where the logo is.

You'll need to edit the header image itself or add padding in global.css?

Can you link to your site because I don't have a copy of the theme running anywhere at present?
Pages: 1 2 3 4 5 6 7