• Hi,

    I would like to remove the line and icon on one single page and for the forum to be directly under the header. Could someone give me some additional custom CSS to solve this issue?

    Thanks

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,

    To remove the icon and border at the URL you linked to, please try adding the CSS below to the customizer in Appearance > Customize > Additional CSS:

    .page-id-3867 .entry-content:before {
        border-top: hidden;
    }
    
    .page-id-3867.is-singular .entry-inner::after {
        background-image: none;
    }

    If the CSS does not have the desired effect, or if you’d like it to apply to other pages too, please let me know ??

    Thread Starter pepijndewit

    (@pepijndewit)

    That worked! Thanks.

    Can you also provide some additional CSS to get rid off the white space between the forum and the header for this specific page?

    Sure, once you’ve added the previous CSS I posted, you can add the rules below to remove some of the white space.

    .page-id-3867 .entry-inner {
        margin-top: 0;
    }
    
    .page-id-3867 .entry-inner .entry-header {
        padding-top: 0;
    }
    Thread Starter pepijndewit

    (@pepijndewit)

    Great. Thanks for the help Gary

    You’re welcome ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Dyad 2] – Remove Icon + line on a single page’ is closed to new replies.