Hi,
I would like to remove the bottom border of a grid row. It works with the following CSS:
.container_wrap {
border: none;
}
However, I would like to target only one grid row. I gave the gridrow a custom css class and section ID (Both are called ‘gridrow’). I am using the following Css but nothing changes:
#bottom .gridrow {
border: none;
}
How could I solve this problem?
Thank you in advance!
Best,
Anton
Hey tonydobrevski,
I’m only seeing this section with the id gridrow, the css above is incorrect.
The border, in this case, comes from the element below it.
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#after_submenu {
border-top: none;
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi Victoria,
Thank you very much! It works great!
Best,
Anton