MyBB Community Forums

Full Version: Can someone help?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello There, Guest! (Login — Register) anyone know why this statement is not align left on my board. Also where is the text? Here is what the board looks like Myforum
It's located in the header_welcomeblock_guest template. You might want to make sure that you don't have a center command in there. As far as where the actual text is located? That is in your global.lang.php file. You can edit that in the ACP under Language Packs if you want.
i think it has something to do with the little square image with a grape vine leaf on it.

when you open the page in IE it is located in the top right hand corner but when opened in firefox it shows it to the left of the text you mentioned.

Cheers FnT
fishntassie Wrote:i think it has something to do with the little square image with a grape vine leaf on it.

when you open the page in IE it is located in the top right hand corner but when opened in firefox it shows it to the left of the text you mentioned.

Cheers FnT

No that is not the problem. I remove it and the problem still remains.
**just a note: take the border off the google adds, it'll make it blend in more....
ok i had a look at the page code a bit more for you.

i found this tag

<div id="header" align="center">

to be your problem if i remove the align from this tag all displays ok.

now from looking at it this is the code you have used to align your header imager to the center of the page.

by changing the code a little in your header template you should be able to fix this

try this change below in your header template and remove the align setting in the header div tag

	 
<div align="center" class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>

P.S. i love firefox with web developer tools helps alot when hunting for bugs
hope that helps FnT
Thanks! I may never have found that on my own. I have another question. How do I center the menu? I can remember where I went to change it from the right hand corner to the left.
ivey Wrote:Thanks! I may never have found that on my own. I have another question. How do I center the menu? I can remember where I went to change it from the right hand corner to the left.

do pretty much the same as i mentioned above for your logo
if you go down a little further in your header template you will see the div tags for the menu just add the align setting within that tag.

<div class="menu" align="center">

that should do it.

Cheers FnT...
I have tried doing that and it did now make any difference, and so I removed it. Thanks for your efforts. It is not a big deal I can live with it like it is.