fit the widht
7 years 9 months ago #40021
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic fit the widht
as said
give me your url to check
andthe fullwidth will take the whole with of the menu bar,
you can make it fullwidth of the page with some css adjustment
give me your url to check
Joomlack Webmaster and Developer
Please Log in or Create an account to join the conversation.
7 years 9 months ago #40036
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic fit the widht
add this in a custom css
it will take the whole width of the container #top in the template
as this #top is positioned in absolute, it is used as reference for the submenu width.
unless you make some modifications in your template to give a natural positioning to #top, you will not be able to set the submenu fullwidth in a natural way
Code:
div#maximenuck343 ul.maximenuck {
position: static !important;
}
it will take the whole width of the container #top in the template
as this #top is positioned in absolute, it is used as reference for the submenu width.
unless you make some modifications in your template to give a natural positioning to #top, you will not be able to set the submenu fullwidth in a natural way
Joomlack Webmaster and Developer
Please Log in or Create an account to join the conversation.
7 years 9 months ago #40037
by Dan0Gram
Replied by Dan0Gram on topic fit the widht
That worked great for the submenus, but it did not cover the top level.
I also tried changing:
/* container style */
div#<?php echo $id; ?> ul.maximenuck {
clear:both;
position: relative;
to:
/* container style */
div#<?php echo $id; ?> ul.maximenuck {
clear:both;
position: static !important;
This had the same affect as adding:
div#maximenuck343 ul.maximenuck {
position: static !important;
}
But neither altered the first level.
I also tried changing:
/* container style */
div#<?php echo $id; ?> ul.maximenuck {
clear:both;
position: relative;
to:
/* container style */
div#<?php echo $id; ?> ul.maximenuck {
clear:both;
position: static !important;
This had the same affect as adding:
div#maximenuck343 ul.maximenuck {
position: static !important;
}
But neither altered the first level.
Please Log in or Create an account to join the conversation.
7 years 9 months ago #40038
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic fit the widht
all this has to be managed in your template and is not related to the maximenu module
it float right because of
in
templates/mak/css/template.css
line 792
it float right because of
Code:
#top .moduletable {
float: right;
margin-left: 10px;
}
templates/mak/css/template.css
line 792
Joomlack Webmaster and Developer
The following user(s) said Thank You: Dan0Gram
Please Log in or Create an account to join the conversation.
7 years 9 months ago #40039
by Dan0Gram
Replied by Dan0Gram on topic fit the widht
Thank you for the help. I'm all set now.
Please Log in or Create an account to join the conversation.
Time to create page: 0.212 seconds