Okay
  Public Ticket #3159679
Remove page title from top of page
Closed

Comments

  • danny_tuite22 started the conversation

    On new pages I have created I can see the text 'home' and whatever page I am currently on in the top left corner. This also creates a white bar that breaks up my transparent header. How do I remove the page titles and white bar?

  •  8,839
    Tahir replied

    Hey Again,

    Those are actually breadcrumbs from Yoast SEO plugin. 

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #breadcrumbs{
        display:none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  1,877
    Judith replied

    Hi There,

    Thanks for keeping in touch.

    Please try this css:

    .main-content > .row > #breadcrumbs.yoast {;
        display: none;
    }

    Thanks