- Posts: 17
- Thank you received: 0
Top Menu Not Resizing Properly
-
engrspc
Inactive member - Topic Author
- New Member
Less
More
10 years 5 months ago #40470
by engrspc
Top Menu Not Resizing Properly was created by engrspc
The top menu isn't resizing well. For small screens (phone), it just gives a menu icon that will show the menus. On tablet and some computers, there are one or two menu items that are falling off the page and not showing at all.
It also isn't resizing the banner picture that's behind the menu.
Any thoughts?
It also isn't resizing the banner picture that's behind the menu.
Any thoughts?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 5 months ago #40477
by ivan.milic
Replied by ivan.milic on topic Top Menu Not Resizing Properly
Send link
Please Log in to join the conversation.
-
engrspc
Inactive member - Topic Author
- New Member
Less
More
- Posts: 17
- Thank you received: 0
10 years 5 months ago #40483
by engrspc
Replied by engrspc on topic Top Menu Not Resizing Properly
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 5 months ago #40491
by ivan.milic
Replied by ivan.milic on topic Top Menu Not Resizing Properly
It just does not have room. You can tighten up logo position to leave room for menu in layout designer in template options.
Please Log in to join the conversation.
-
engrspc
Inactive member - Topic Author
- New Member
Less
More
- Posts: 17
- Thank you received: 0
10 years 5 months ago #40518
by engrspc
Replied by engrspc on topic Top Menu Not Resizing Properly
You're right. Changed the template and that works better.
What about the top picture. I now have everything sizing, but the top picture on the home page. Is there a setting for that?
What about the top picture. I now have everything sizing, but the top picture on the home page. Is there a setting for that?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 5 months ago #40523
by ivan.milic
Replied by ivan.milic on topic Top Menu Not Resizing Properly
In template_css.css, this rule
img {
max-width: 100%;
}
limits it to be max wide as its container.
Add this rule to bottom of temlate_css.css to force it 100% on mobile devices portrait view:
@media screen and (max-width:468px) {
.toprow .cell{
width:100%!important;
}
}
img {
max-width: 100%;
}
limits it to be max wide as its container.
Add this rule to bottom of temlate_css.css to force it 100% on mobile devices portrait view:
@media screen and (max-width:468px) {
.toprow .cell{
width:100%!important;
}
}
Please Log in to join the conversation.
Time to create page: 0.208 seconds