• I’m using the Ignis template. When creating new pages, the page title appears in big bold letters with a beige color banner behind it. I want to fully just remove the banner behind and only have the Page Title. Any ideas?

    Here’s an image explanation: https://imgur.com/a/GrcG2

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

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

    Try adding this simple CSS code to Appearance > Customize > Additional CSS from dashboard.

    
    body:not(.home) .ignis-hero-area {
      background-color: transparent;
    } 
    

    Regards,
    Kharis

    Thread Starter venturetheislands

    (@venturetheislands)

    Wow! It worked – but now there is a big gap between the article and top and it looks off. Any clue on how to just get rid of the spacing? It looks like it’s removed but still, the spacing from the box is still there.

    Hello there,

    Try adding this CSS code:

    
    body:not(.home) .ignis-hero-area .header-text { 
      padding-top: 0;
      padding-bottom: 0;
    }  
    

    Regards,
    Kharis

    kenijiro25

    (@kenijiro25)

    Hey guy, I also use this them.
    I already apply above code.

    But the word of title still remain.

    How can I remove all of title.
    I will use completed template from my plug-in.
    Please help

    Hello there,

    Please try this code:

    
    .header-text {
      display: none;
    } 
    

    Regards,
    Kharis

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Requesting Help Removing Banner Behind Page Title’ is closed to new replies.