(1) The below solution works but it makes 2 of the columns disappear for mobile and tablet. Is there a fix for this at all please? You can view the link ive shared to see the issue
/* vertical line between columns desktop only*/ .column-divider { border-right: 1px solid #d6d6d6; }
@media only screen and (max-width: 1000px) { .column-divider { display: none !important; } }
(2) Lastly, what is the easiest way to then have horizontal dividers/seperators when the layout is viewed on mobile and tablet?
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
This task related to adding a border to the right of a column which has been successfully achieved but the border still shows up on mobile and tablet which is an error, and thats what Im looking for CSS to fix because the ;last provided CSS caused the columns to disappear when the following code was added.
@media only screen and (max-width: 1000px) { .column-divider { display: none !important; } }
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
@media only screen and (max-width: 1000px) {
.column-divider {
border: none !important;
}
}
Hi,
This is in reference to another thread https://themenectar.ticksy.com/ticket/225781 where I am looking for a CSS solution to add a keyline column seperator between columns.
(1) The below solution works but it makes 2 of the columns disappear for mobile and tablet. Is there a fix for this at all please? You can view the link ive shared to see the issue
/* vertical line between columns desktop only*/
.column-divider {
border-right: 1px solid #d6d6d6;
}
@media only screen and (max-width: 1000px) {
.column-divider {
display: none !important;
}
}
(2) Lastly, what is the easiest way to then have horizontal dividers/seperators when the layout is viewed on mobile and tablet?
Thanks
Damien
Hey,
Please provide the page url so that i can write up the custom css for whats possible.
Thanks
ThemeNectar Support Team
this is the URL
https://gateonedev1.staging.wpengine.com/retail-rework/
Hey Again,
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
Thanks
ThemeNectar Support Team
Hi Tahir,
This code adds a column border for the footer.
This task related to adding a border to the right of a column which has been successfully achieved but the border still shows up on mobile and tablet which is an error, and thats what Im looking for CSS to fix because the ;last provided CSS caused the columns to disappear when the following code was added.
@media only screen and (max-width: 1000px) {
.column-divider {
display: none !important;
}
}
Thanks
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
Thanks
ThemeNectar Support Team
perfect, thankyou for your help