Home › Forums › Basel support forum › Footer columns
Footer columns
- This topic has 5 replies, 2 voices, and was last updated 8 years ago by Artem Temos.
-
AuthorPosts
-
December 7, 2016 at 4:23 pm #7696
cgParticipantHi,
I added a custom css to align-center all the footer columns for mobile and tablets (portrait-view), I also hide 3 columns. Even though I centered them, they still don’t look look. My question is:
Is there any way to move one column next to the other one for tablets and mobile devices (portrait view), so it shows each column next to each other? Because showing all columns one under the other one is not very practical, see attachment.
Or, is there any way to center them on tablets-portrait view? see attachment.
.footer-column-1,
.footer-column-2,
.footer-column-3,
.footer-column-4,
.footer-column-5{
text-align: center!important;
}Thanks.
Attachments:
You must be logged in to view attached files.December 7, 2016 at 5:07 pm #7708
Artem TemosKeymasterHello,
It is impossible to make your footer columns be shown in a row since you have hidden a few of them and by doing that break columns grid. You can try to make it centered on tablets by adding this additional CSS code for tablets
.footer-container .footer-column { width:100%!important; }
Regards
December 7, 2016 at 11:26 pm #7716
cgParticipantAwesome. Thanks. Another footer question: When I hover the category links in the shop page, the underline has some effect. How can I add the same effect when I hover on the footer links? see picture attached.
Attachments:
You must be logged in to view attached files.December 8, 2016 at 10:09 am #7725
Artem TemosKeymasterHello,
Try to add the following code snippet to the Custom CSS area in Theme Settings.
.footer-container ul li a { position:relative; text-decoration:none; } .footer-container ul li a:after { content: " "; position: absolute; top:100%; right: 0; height: 1px; width:0; background-color: rgba(0,0,0,.3); -webkit-transition: width .25s ease; -moz-transition: width .25s ease; -o-transition: width .25s ease; transition: width .25s ease; } .footer-container ul li:hover > a:after { width:100%; left:0; }
Kind Regards
XTemos StudioDecember 8, 2016 at 4:28 pm #7751
cgParticipantYou are awesome. Thanks 🙂
December 8, 2016 at 5:54 pm #7763
Artem TemosKeymasterYou are welcome! 🙂
-
AuthorPosts
- You must be logged in to create new topics. Login / Register