Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #870481

    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

    #870532

    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

    #871727

    Hi Victoria,

    Thank you very much! It works great!

    Best,
    Anton

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove bottom border on a specific grid row’ is closed to new replies.