Okay
  Public Ticket #2494950
Remove line from under Centered Heading
Closed

Comments

  •  1
    SylviaMacD started the conversation

    Hi

    I've used the Centered Heading element which displays with a line underneath it the full width of the page.    Am I able to remove this line for a specific centered heading or should I be using the Text Box element instead?


    Thanks

  •  2,965
    Andrew replied

    Hi there,

    Use the following custom css to hide the line:

    .row .col.section-title {
        border-bottom: none;
    }
    

    Hope this helps.

  •  1
    SylviaMacD replied

    Thanks Andrew, that does work.   One problem though, it also removes the bottom border from the blog page title which I wanted to keep -  https://sylviamacdonald.com/blog

    Is there a way to remove the bottom border from the centred heading element and keep it for the page titles?

    Thanks

  •  2,965
    Andrew replied

    Hi SylviaMacD,

    Give a row class name to identify the title within a row then use the css as follows: 

    .your-row-name .col.section-title {
        border-bottom: none;
    }
    

    5258619117.png


    Hope this helps.

  •  1
    SylviaMacD replied

    Perfect, thank you :)