u can email, i can help u to change..
for the logo, just replace the image. is easier. the css style can be configure at the admin panel.
This is a discussion on how do I chane my logo/header with my phpBB forum? within the Graphic Design forums, part of the Web Designing & Development category; Hello I have a forum called Moon Dusters http://moondusters.net/ I need to give it a new theme and change the ...
Hello I have a forum called Moon Dusters http://moondusters.net/
I need to give it a new theme and change the Header...How do I do this?
u can email, i can help u to change..
for the logo, just replace the image. is easier. the css style can be configure at the admin panel.
go to template ....
For that there is following points. I think it will help you.:----
1) To change the width of your board, open up the file called "common.css", make sure it is the file which is in the style folder you wish to edit. Find this part of the code:
Code: Select all #wrap {
padding: 0 20px;
min-width: 650px;
}
Change to something like this:
Code: Select all #wrap {
padding: 0 20px;
width: 850px;
min-width: 650px;
margin: 0 auto;
}
2) If you want a banner like ours, then get the image the same size as your banner area which should be around 850px x 129px or whatever. Place the image inside you styles images folder. The "images" folder that is inside the "theme" folder. Upload the image to your web server ready for use.
Now we need to open up the file called "colours.css" and find this part of the code:
Code: Select all.headerbar {
background-color: #12A3EB;
background-image: url("{T_THEME_PATH}/images/bg_header.gif");
color: #FFFFFF;
}
Change the background-image property to your new image which can be a jpg if you wish. So it would look something like this:
Code: Select all.headerbar {
background-color: #12A3EB;
height: 129px;
background-image: url("{T_THEME_PATH}/images/my_new_image.jpg");
color: #FFFFFF;
}
Save and upload to your web server and that should be you.
One last thing you may want to do is is remove the corners from the bottom of yur header. Open up the file called "overall_header.html" and find this part of the code:
Code: Select all </div>
<!-- ENDIF -->
<span class="corners-bottom"><span></span></span></div>
</div>
Change to this instead:
Code: Select all </div>
<!-- ENDIF -->
</div>
</div>
Ok, I think I have covered it all for you.
Use following code for the changing your logo using PHPBB,
<td><a href="{U_INDEX}"><img src="templates/subSilver/images/your logo name.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
Bookmarks