http://www.phpbb.com/customise/db/mod/c ... ader_logo/ReffuB wrote:Is it possible to give every forum a specific header?
tany3450 wrote:hello.I have one problem. I Add a Custom Header Image to my site . There is no problem with 1024x768 resolution. But in other resolutions I see my image side by side, 2 times.. HOw can I fix it ? thank u
background-repeat:no-repeat;
this will display the header image only once but if the screen size is bigger blank space will be displayed around header image your best way is to fix your width Fixed width prosilverI tried ''fixed width prosilver'' .. Maybe it can be my last cure for this problem.. How can do this? css''background-repeat:no-repeat; '' . THanks for answerrahber wrote:@ tany3450
you can use cssbackground-repeat:no-repeat;
this will display the header image only once but if the screen size is bigger blank space will be displayed around header image your best way is to fix your width Fixed width prosilver
.headerbar
to this keeping your image name the same as you wanted.
Code: Select all
.headerbar {
background-color: #12A3EB;
background-image: url("{T_THEME_PATH}/images/bg_header.gif");
background-repeat:no-repeat;
color: #FFFFFF;
}
Try this to centre your logo:psmmowers wrote:Hello All.
Can someone tell me how to centre my sit_logo.
Code: Select all
#logo {
float: left;
width: auto;
padding: 10px 13px 0 10px;
}
Code: Select all
#logo {
width: auto;
padding: 0px;
}
Code: Select all
#site-description {
float: left;
width: 70%;
}
Code: Select all
#site-description {
text-align: center;
width: 100%;
}
Code: Select all
<h1>{SITENAME}</h1>
Code: Select all
<h1 style="display: none;">{SITENAME}</h1>
Code: Select all
<p>{SITE_DESCRIPTION}</p>
Code: Select all
<p style="display: none;">{SITE_DESCRIPTION}</p>