[Support request] How to add line below every heading of H2 level

Home Forums Support [Support request] How to add line below every heading of H2 level

Home Forums Support How to add line below every heading of H2 level

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #885351
    BILAL

    How to add line below heading H3 level
    like shown in this website
    https://randomnerdtutorials.com/micropython-esp32-esp8266-dht11-dht22-web-server/

    #885366
    David
    Staff
    Customer Support

    Hi there,

    try this CSS – not sure if you wanted H2 or H3

    .entry-content h2:before {
        content: '';
        width: 100%;
        height: 3px;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f5f5f5;
    }
    .entry-content h2:after {
        content: '';
        width: 10%;
        height: 3px;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #2f4468;
    }
    #885370
    BILAL

    I want to add line after every heading except main heading of blog

    #885373
    BILAL

    its not working

    #885377
    BILAL

    I want line like this
    image

    #885379
    BILAL

    image

    #885380
    David
    Staff
    Customer Support

    Can you provide me a link to your site.
    You can edit your original topic and use the Site URL field to share it privately.

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.