- Posts: 50
- Thank you received: 1
Home Page Main Menu Above rest of Page
-
russellmoran
Inactive member -
Topic Author
- Member
-
Less
More
13 years 10 months ago #8376
by russellmoran
Replied by russellmoran on topic Re: Home Page Main Menu Above rest of Page
I tried it with the .column_left and .column_wrap and .column_right at the bottom. No help. Then I removed the .column_left and it was only .column_wrap and .column_right.
It was still no good.
Same exact issue. It works on home page, but every other page is off?
It was still no good.

Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 10 months ago #8380
by ivan.milic
Replied by ivan.milic on topic Re: Home Page Main Menu Above rest of Page
Hi,
remove all of that so i could find other solution.
remove all of that so i could find other solution.
Please Log in to join the conversation.
-
russellmoran
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 50
- Thank you received: 1
13 years 10 months ago #8383
by russellmoran
Replied by russellmoran on topic Re: Home Page Main Menu Above rest of Page
It's removed
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 10 months ago #8391
by ivan.milic
Replied by ivan.milic on topic Re: Home Page Main Menu Above rest of Page
Hi,
create new Custom HTML module, and place it some bottom module position . Assign module only to show on home page.
When you create that module you will switch WYSIWYG editor to HTML view and you will enter this:
<script type="text/css">
jQuery(document).ready(function(){
jQuery('.content_wrap, .column_right').css('marginTop','-35px');
});
</script>
create new Custom HTML module, and place it some bottom module position . Assign module only to show on home page.
When you create that module you will switch WYSIWYG editor to HTML view and you will enter this:
<script type="text/css">
jQuery(document).ready(function(){
jQuery('.content_wrap, .column_right').css('marginTop','-35px');
});
</script>
Please Log in to join the conversation.
-
russellmoran
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 50
- Thank you received: 1
13 years 10 months ago #8396
by russellmoran
Replied by russellmoran on topic Re: Home Page Main Menu Above rest of Page
I did it...but still not working. Let me know

Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 10 months ago #8412
by ivan.milic
Replied by ivan.milic on topic Re: Home Page Main Menu Above rest of Page
Ok,
try this instead:
<script type="text/css">
window.onload = function(){
jQuery('.column_right').css('marginTop','-35px');
jQuery('.content_wrap').css('marginTop','-35px');
};
</script>
try this instead:
<script type="text/css">
window.onload = function(){
jQuery('.column_right').css('marginTop','-35px');
jQuery('.content_wrap').css('marginTop','-35px');
};
</script>
Please Log in to join the conversation.
Time to create page: 0.108 seconds