MyBB Community Forums

Full Version: Can someone please assist in modifying my header image? :)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
HI there all!

I have just started using myBB on my site, and so far its looking great!

There is just one little thing Im trying figure out to do...

if you go to my message board here...
www.vinyldestination.co.za/forum

You will see my above header.
The header itself is a single, one size image. On a large screen, it looks a bit silly cause it doesnt adjust to ones screen resolution.

I have seperated the header into 2 images, a left and right.
And what I basically want to do is 'float' the images on either side of the page, so when the screen size changes, the header 'dynamicaly' adjusts and always fills out to the edges.... if you know what I mean..Smile

I have found the header HTML code, but im just not sure how I would code it...

Could anybody help me with this?Smile

Would appreciate it!

Thanks alot!
Simon
Been sorted.Smile

Seems like nobody here could help me..Sad

Oh well, for future refrence if anybody else is interested, here is the code i used..

Header Template Wrote:<div class="logo">
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left" >
<a href=".../forum/index.php">
<img src="(Left Image Source)" alt="Forums Title" title="Forums Title" />
</a>
</td>
<td align="right">
<img src="(Right Image Source)" />
</td>
</tr>
</table>
</div>

That gives you a dynamic expanding header, which just looks professional.Smile
It would be better to use CSS for that, instead of tables.
well nobody seemed to be able to assist me, so thats the best I could do...Undecided

If somebody could assist with using CSS to achieve the same goal, I am more than happy to use it..