-
AuthorPosts
-
kallan Friend
kallan
- Join date:
- August 2006
- Posts:
- 349
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 22
- Thanked:
- 35 times in 1 posts
August 12, 2007 at 9:45 pm #121983Hi,
I want to switch the menu from starting at the left hand side to starting at the right hand side.
All my attempts thus far have just created menu items that run full width of screen :-*If someone could give me some pointers on how to achieve this I would be very greatfull.
Kiwidesign
Menalto FriendMenalto
- Join date:
- May 2007
- Posts:
- 4736
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 2
- Thanked:
- 531 times in 361 posts
August 12, 2007 at 10:00 pm #226927First i wanna know which menu you use and an url to your site?
kallan Friendkallan
- Join date:
- August 2006
- Posts:
- 349
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 22
- Thanked:
- 35 times in 1 posts
August 12, 2007 at 10:09 pm #226929Hi Menalto,
I have PM’d you the url I am using transmenu but don’t mind which one i use if one of the others is better suited to change then thats fine.
Thanks
KateMenalto FriendMenalto
- Join date:
- May 2007
- Posts:
- 4736
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 2
- Thanked:
- 531 times in 361 posts
August 13, 2007 at 10:27 am #226952Can you set up the site with a few more menu items?And set it to the dropline menu?
kallan Friendkallan
- Join date:
- August 2006
- Posts:
- 349
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 22
- Thanked:
- 35 times in 1 posts
August 13, 2007 at 9:00 pm #227000Have done that.
kallan Friendkallan
- Join date:
- August 2006
- Posts:
- 349
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 22
- Thanked:
- 35 times in 1 posts
August 15, 2007 at 11:42 pm #227156I have tried floating #jasdl-mainnav a and #jasdl-mainnav a span to the right and it does move it to the right but it also messes everything up :confused:
Is this the right starting point? Do I just work at fixing it from there?
Appreciate your help,
KiwidesignMenalto FriendMenalto
- Join date:
- May 2007
- Posts:
- 4736
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 2
- Thanked:
- 531 times in 361 posts
August 16, 2007 at 7:47 am #227185Can you give me admin access? I maybe can fix it from there
kallan Friendkallan
- Join date:
- August 2006
- Posts:
- 349
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 22
- Thanked:
- 35 times in 1 posts
August 16, 2007 at 9:00 pm #227238Have PM’d you with the details.
Thanks alot for the assisstance.
Kiwidesign
kallan Friendkallan
- Join date:
- August 2006
- Posts:
- 349
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 22
- Thanked:
- 35 times in 1 posts
September 14, 2007 at 12:28 am #229410Well,
I have got so far on this change but am now quite stumped.
I can get it all looking good apart from the end menu image which appears on the left of the actual menu instead of the right.This css
#jasdl-mainnav {
float:right;
}
if I change to
#jasdl-mainnav {
float:left;
}
It puts the main section of the menu back to the left and the end image now sits in the correct place at the far right. – I have tried having the end image output in different locations but can’t seem to find a combination that outputs correctly.
Can anyone give me any other suggestions to try.
The website is menuwebsite
swemmel Friendswemmel
- Join date:
- February 2006
- Posts:
- 794
- Downloads:
- 34
- Uploads:
- 53
- Thanks:
- 36
- Thanked:
- 64 times in 1 posts
September 14, 2007 at 4:32 am #229420kallan;27525Well,
I have got so far on this change but am now quite stumped.
I can get it all looking good apart from the end menu image which appears on the left of the actual menu instead of the right.This css
#jasdl-mainnav {
float:right;
}
if I change to
#jasdl-mainnav {
float:left;
}
It puts the main section of the menu back to the left and the end image now sits in the correct place at the far right. – I have tried having the end image output in different locations but can’t seem to find a combination that outputs correctly.Can anyone give me any other suggestions to try.
The website is menuwebsite
Hi Kallan,
Open you template’s CSS-file and search for the following code:
.ja-menu-right-active {
float: left;
display: block;
height: 28px;
width: 32px;
background: url(../images/mainnav-active-lr.png) no-repeat bottom right;
}.ja-menu-right {
float: left;
display: block;
height: 28px;
width: 32px;
background: url(../images/mainnav-right.png) no-repeat bottom right;
}
Now change this code as follows:
.ja-menu-right-active {
float: right;
display: block;
height: 28px;
width: 32px;
background: url(../images/mainnav-active-lr.png) no-repeat bottom right;
}.ja-menu-right {
float: right;
display: block;
height: 28px;
width: 32px;
background: url(../images/mainnav-right.png) no-repeat bottom right;
}
Hope this helps.
Kind Regards,
Peter
kallan Friendkallan
- Join date:
- August 2006
- Posts:
- 349
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 22
- Thanked:
- 35 times in 1 posts
September 14, 2007 at 4:46 am #229422Hi Swemmel,
Thanks for the suggestion – unfortnuately I have already done this – if i move the main section back to the left the right hand end displays in the desired place to the far right.
Cheers
KiwidesignMenalto FriendMenalto
- Join date:
- May 2007
- Posts:
- 4736
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 2
- Thanked:
- 531 times in 361 posts
September 14, 2007 at 7:40 am #229436Find line 873 in the css file and add
margin-right: -440px;
Its the .ja-menu-right div…….
For me it looks like you havent placed everything as it should be, but if you add the code above you see that the image goes in place.
kallan Friendkallan
- Join date:
- August 2006
- Posts:
- 349
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 22
- Thanked:
- 35 times in 1 posts
September 17, 2007 at 3:04 am #229547Thanks a million Menalto,
Seems to work on the home link but not the others, and doesn’t seem to work in ie.
Would you be able to check on your browsers just in case its a cache issue here.Thanks
😀
Kiwidesign
-
AuthorPosts
This topic contains 13 replies, has 3 voices, and was last updated by kallan 17 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum