MyBB Community Forums

Full Version: How to make logo go ........
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Id like the logo go all the way to the top and to the sides with no padding.

Thanks
Can you elaborate? An image would be better.
I dont want a padding

[attachment=30231]
Go to ACP>Templates & Styles>Themes>YOUR THEME>Global.css>Simple Mode>.logo

In Extra Attributes, add the following:

margin-top: -21px;
margin-left: -20px;
width: 1303px;
Well i put this values and it works on mine PC:

margin-top: -20px;
margin-left: -20px;
width: 1170px;

But maybe this resolution have to change if your monitor are more or less pixels.

I try with:

margin-top: -20px;
margin-left: -20px;
width: 101%;

Both shows fine, but in my PC the best way are second one, and you have many errors on your global.css

This because you copy and paste text without unformat mode xD.
width: 101%;

I guess you are right. I didn't give it a second thought thus completely forgot about the end user (Different screen resolutions).
I tried this but I donĀ“t have Templates & Styles option.
I have ACP>Templates & Styles>Themes>MyBB Master Style
or ACP>Templates & Styles>Themes>MyBB Default

Any help please..
^ @slumpy, you have to work on ACP > Templates & Styles > Themes > MyBB Default > global.css
Hi M.
To my rescue agian, many thanks. However .logo is not there?
^ .logo is not used in the global.css of your forum. you can add it at the beginning of global.css (Edit Stylesheet: Advanced Mode)
.logo {margin-top: -20px;
margin-left: -20px;
width: 100%;}

hard refresh your browser (eg. press CTRL + F5) on the index page after saving the global.css
Pages: 1 2