Viewing 1 reply thread
You must be logged in to reply to this topic.
Hello!
1) I want to show the login icon button only on mobile version. How can i do that?
2) I want footer section to be centered and not left alignment
3) Can the checkout/thank-you page to be responsive?
Thanks!
Hello,
1. You can do that by adding some custom css code
.header_container > .top_nav {display:none;}
After this you can activate it on responsive:
@media(max-width:768px;){
.header_container > .top_nav{
display:block !important;
}
.header_container.cl-header-topnav-mobile .top_nav.header-row .header-col{margin-top:-53px;}
}
Keep in mind to delete all the other top navigation elements except the login one.
2. You have to add this line into Custom Css:
footer#colophon{text-align:center;}
3. This is fixed in the latest update 1.6.3 version
Best Regards!
You must be logged in to reply to this topic.