MyBB Community Forums

Full Version: Help! Once again!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Snake means on the theme, not whether what you have entered should. What do you have in the header section of your template?
Idk, would you like to check? Pm me for info.
Moved to Themes and Templates.
Ok, thanks. But that doest solve or help me... is anyone willing to help?
In the header template find:
<div id="header">
	<div id="logo">
		<h1>RSTOTAL</h1>
		<h2>THE NEXT GENERATION IN CHEATING</h2>
	</div>

Change: div id="logo"

To: div align="left"

That will fix it. Smile

I suspect that "h1" and "h2" has a class attribute and so does "logo". I'm also using view-source, so it will not look exactly like what you see in the code. But it will give you the same as in the picture, and if you want to change that, you'll have adjust the .css, or maybe drop the h1 and h2 anchors and write some table data and /or put the whole original "logo-class" strings back with the url's and anchors" and make a logo-graphic to replace h1 and h2. Toungue

Easy, isn't it ?? Wink
Ok, thanks. Also, can I add a image link to it instead of the words?

Like...

<div id="header">
    <div id="logo">
        <h1>[insert Image Url]</h1>
        <h2>[insert Image Url]</h2>
    </div>

Am I able to do that?

This is my site, see how its all in lowercase? How would I change that? http://sith717.ax3.net/index.php
You missed the point of removing the "logo" class.

Try replacing the code above with this and create an image called logo.gif and place it in the /images folder
<div id="header">
			<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>
So instead of:

<div id="header">
    <div id="logo">
        <h1>[insert Image Url]</h1>
        <h2>[insert Image Url]</h2>
    </div>
Instead of useing this--^

I delete that whole
part and use this?--v
<div id="header">
            <div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>
Now you're getting the idea!

Yes you do. Toungue
Thanks man!

I want to rep you but I cant. Sad
Pages: 1 2 3