Need help with Joomla main menu position**all messed up**

abhi1

Power Member
Joined
Feb 12, 2009
Messages
698
Reaction score
359
Hey guys,
So I've been trying artisteer for Joomla 1.5.X templates. I installed one of it on a test site and this is the problem I'm facing with module position User3.

User3 is the module position for main menu but the main menu is going out of the body. Same result on IE6, IE7, IE8, FF3.5.2 and Opera.

303idly.png


Any help would be appreciated
 
Last edited:
if your positioning your modules using css it looks like your positioning is incorrect

i can take a look at it but need to view the source code and your css

thanks

ukescuba

PS sorry didnt realize you had attached the template will look shortly for you

UPDATE

its the CSS...

Login into the backend administrator of your joomla site and do the following:

1) From the top menu Goto Extensions -> Template Manger
2) Select the twitter menu and edit
3) Click edit css button
4) Edit template.css
5) Find this entry:

Code:
ul.art-menu
{
	position:relative;
	float:left; 
	left:50%;
}
6) Change it to this:
Code:
ul.art-menu
{
	position:relative;
	float:left; 
	left:50%;
        margin-left: -440px;
}
7) Save
8) View your website front page the menu should now be positioned on the left side of the template space now

HTH

Thanks,

Ukescuba

PS nice template but source code looks a little bloated ;)
 
Last edited:
I knew you would post! :D Thanks a million bud..u rock
 
Back
Top