MyBB Community Forums

Full Version: Image Help.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I go about adding an image to the left of the header welcomeblock_guest?

Picture:

[Image: howpicture.png]

Thanks in advance.
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Header Templates > header.

2. Find:

<div id="panel">

3. Before that, add:

<img src="images/example.gif" alt="" style="margin-top: -75px; margin-left: 700px;">

4. Adjust the -75px and 700px values until your image looks how you want it.
I want it to show only for guests.
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Header Templates > header_welcomeblock_guest.

2. Find:

<script type="text/javascript">

3. Before that, add:

<img src="images/example.gif" alt="" style="position: fixed; margin-left: -130px">

4. Adjust the -130px value until your image looks how you want it.
Thanks so much!