MyBB Community Forums

Full Version: need help, please!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I'd like to add a 468X60 banner to the right of House Repair Forums, and right under the current date and time. What file would I need to edit?

Thanks!

http://houserepairforums.com
ACP -> Templates -> Modify / Delete -> *Template Set* -> header

Find:
<div id="panel">
				{$welcomeblock}
			</div>
		</div
Add after:
<div style="float:right"><img src="path/to/imagehere" alt="alt text here" /></div>
Christian Wrote:ACP -> Templates -> Modify / Delete -> *Template Set* -> header

Find:
<div id="panel">
				{$welcomeblock}
			</div>
		</div
Add after:
<div style="float:right"><img src="path/to/imagehere" alt="alt text here" /></div>

Christian,
Thanks. I tried that, BUT it puts it right under the divider bar underneath the date and current time. How can I align it exactly in the middle?
Wasn't that what you wanted? Or did I misunderstand your first post?
I might have misunderstood this post as well then. Anyways maybe this.
<div style="text-align: center; margin-top:10px"><img src="path/to/imagehere" alt="alt text here" /></div>
CraKteR Wrote:Wasn't that what you wanted? Or did I misunderstand your first post?
I might have misunderstood this post as well then. Anyways maybe this.
<div style="text-align: center; margin-top:10px"><img src="path/to/imagehere" alt="alt text here" /></div>


Here's what it's doing! I want it to the right like it is, but it's positioned to high![attachment=4557]
Did you even try my code?
CraKteR Wrote:Did you even try my code?


CraKteR,
Here's your code....[attachment=4558]
Ok.. So was that what you wannted?
Christian,
Your code worked and brought the banner over to the right, that's what I want. But it's hugging the top divider and I'd like it to be even with the "House Repair Forums" text on the left. It's not vertically aligning in the center, that's what the problem is.
I thought you said you wanted it center Confused
Anyways, in your header template.
Find:
<navigation>
Change to:
<span style="float: right"><img src="path/to/imagehere" alt="alt text here" /></span><navigation>
Pages: 1 2