This topic has 2 replies, 2 voices, and was last updated 6 years, 7 months ago ago by Rose Tyler
Dear Support,
I would like to know if there is a way to take advantage of the full width for the homepage. At the moment the Legenda theme structure, implemented in my website, center the text and the menus leaving spaces on the right and left side. Is there a way to remove the lateral side spaces, enlarging or using the full width screen.
The question is related primarly to desktops views with wide screens. Currently, my website does not use the full width making images and text relatively small.
Thanks in advance.
F.
Hello,
Please try to add this code in custom.css file:
.home .container {
width: 100%;
}
.home .container > * {
padding: 0 15px;
}
.home .container .table-row {
max-width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.home .shopping-cart-widget {
margin-right: 30px;
}
.home .top-bar .top-links {
margin-right: 60px;
}
.home .side-area-icon {
margin-left: 0;
right: 20px;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up