2011-02-16, 03:25 PM
Hello;
First, I want to thank the programmers for this wonderful software program.
I am running the 1.6.1 version of the MyBB forum software. I need to do two things:
a). align the logo image to the center; and
b). insert a larger image in the header with my own logo.
I think that I see how to do the above but before I tinker with any of the code I need to get a bit of input.
If I click the following sequence of links:
Admin CP --> Templates --> Default Templates --> Header Templates --> header
I get to a page where it says "Edit Template"
(for clarity purposes only the relevant part of the code is shown below)
I think that all I need to do is add align center to the <div class="logo"> tag:
<div class="logo" style="text-align:center">
My questions are:
1). Is the above the only place where I make a change so that the header logo is centered?
2). Do I need to change the image height and width parameter attributes in the <img> tag for the logo if I use a larger header image? If so, at what places do I change the <img> height and width attributes?
Thanks.
First, I want to thank the programmers for this wonderful software program.
I am running the 1.6.1 version of the MyBB forum software. I need to do two things:
a). align the logo image to the center; and
b). insert a larger image in the header with my own logo.
I think that I see how to do the above but before I tinker with any of the code I need to get a bit of input.
If I click the following sequence of links:
Admin CP --> Templates --> Default Templates --> Header Templates --> header
I get to a page where it says "Edit Template"
(for clarity purposes only the relevant part of the code is shown below)
<div id="header">
<div class="logo"> (php and html code here) </div>
</div>
</div>
I think that all I need to do is add align center to the <div class="logo"> tag:
<div class="logo" style="text-align:center">
My questions are:
1). Is the above the only place where I make a change so that the header logo is centered?
2). Do I need to change the image height and width parameter attributes in the <img> tag for the logo if I use a larger header image? If so, at what places do I change the <img> height and width attributes?
Thanks.