Chadook Seasoned Veteran Joined Jan 30, 2011 Messages 4,331 Reaction score 10 FP$ 909 Jul 11, 2013 #1 How to center the logo in prosilver style?
Z Zerum Familiar Face Joined Jul 6, 2013 Messages 86 Reaction score 0 FP$ 256 Jul 11, 2013 #2 They suggest this in phpbb forums, but others complain about how it puts some menus under the logo. Make sure you backup first before editing. Spoiler In common.css, change: Code: #logo { float: left; width: auto; padding: 10px 13px 0 10px; } to: Code: #logo { float: left; width: 100%; padding: 10px 13px 0 10px; text-align: center; } and: Code: #site-description { float: left; width: 70%; } to: Code: #site-description { float: left; width: 100%; } If the above doesn't work, try this. I just did this quickly using firebug on your forums: Spoiler In common.css, change: Code: #logo { float: left; width: auto; padding: 10px 13px 0 10px; } to: Code: #logo { float: right; width: auto; padding: 10px 13px 0 10px; } and: Code: #site-description { float: left; width: 70%; } to: Code: #site-description { float: left; width: 84%; }
They suggest this in phpbb forums, but others complain about how it puts some menus under the logo. Make sure you backup first before editing. Spoiler In common.css, change: Code: #logo { float: left; width: auto; padding: 10px 13px 0 10px; } to: Code: #logo { float: left; width: 100%; padding: 10px 13px 0 10px; text-align: center; } and: Code: #site-description { float: left; width: 70%; } to: Code: #site-description { float: left; width: 100%; } If the above doesn't work, try this. I just did this quickly using firebug on your forums: Spoiler In common.css, change: Code: #logo { float: left; width: auto; padding: 10px 13px 0 10px; } to: Code: #logo { float: right; width: auto; padding: 10px 13px 0 10px; } and: Code: #site-description { float: left; width: 70%; } to: Code: #site-description { float: left; width: 84%; }
Chadook Seasoned Veteran Joined Jan 30, 2011 Messages 4,331 Reaction score 10 FP$ 909 Jul 11, 2013 #3 it worked Thanks.