Cannot find what is limiting the size of my banner

Hello I am teaching myself php at the moment.

I cannot figure why my banner on my website:

http://omnigame.tv/forums/

Is having so many issues. I worked to get everything else closer to how I liked it and everything. This has just been a thorn in my side

.logo {
background-image: url("./styles/darkfx/theme/images/logo.png");
width: 351px;
height: 117px;
margin-top: 1px;
}

Is the code. I know its linked to style.php somehow. But there is no .logo anywhere in that code.

How do I change its width? I already changed it in most of the CSS I found with a .logo in them.

Thank you

It should be just to change .logo to this

.logo { background-color: #000000; background-image: url("./styles/darkfx/theme/images/logo.png"); height: 117px; margin-top: 1px; width: 840px; }

Have you cleared the style/css cache? It seems like phpBB use some kinda caching system. Note the file name on the css file (shown in image)


The file should be located at /forum/styles/darkfx/theme/stylesheet.css

Then make the change @JImL said.

The stylesheet just links to a bunch of different css

/* phpBB3 Style Sheet
--------------------------------------------------------------
Style name: DarkFX
Based on style: prosilver (the default phpBB 3.0.x style)
Original author: Tom Beddard ( http://www.subblue.com/ )
Modified by: Abhishek Srivastava ( http://www.boardreloaded.com/ )
--------------------------------------------------------------
*/

@import url(“darkfx.css”);
@import url(“common.css”);
@import url(“links.css”);
@import url(“content.css”);
@import url(“buttons.css”);
@import url(“cp.css”);
@import url(“forms.css”);
@import url(“tweaks.css”);
@import url(“colours.css”);

And here is the common.css, where the only place I found any .logo or .logo-bg
http://pastebin.com/vXVHi2Ac

It’s in darkfx.css

[php].logo-bg {
background-image: url("{T_THEME_PATH}/images/logo-bg.png");
width: 523px;
height: 117px;
margin-top: 1px;
}

.logo {
background-image: url("{T_THEME_PATH}/images/logo.png");
width: 351px;
height: 117px;
margin-top: 1px;
display: inline-block;
}[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service