• Resolved princedes

    (@princedes)


    I have attempted to remove the word (Testimonials) from page in website.
    I can not locate it to edit or delete it, when I inspect it through Inspect Elements
    this is the result
    – <h1 class=”entry-title” itemprop=”name”>Testimonials</h1>

    I tried to edit/delete this through Custom Css and I get message saying markup is not allowed in CSS.
    Directly under the word Testimonials there is an — edit this post– sign when I click on it – it directs me back to edit page, I have searched through edit page and can not find any post.
    The above word (Testimonials)appears on Testimonials page of my website and also the word (Services provided) appears on the Services provided page.
    I have searched through previous topics but can not see any topics similar to this problem.

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Hello princedes,

    Please add the following css inside the additional css section of your customizer;

    .page-id-10 .textwidget> h3 {
        display: none;
    }
     .page-id-59 .textwidget .entry-header{
    	display: none;
    }

    Let us know.
    Thanks!

    Thread Starter princedes

    (@princedes)

    I copied and pasted the above css to additional css section in customizer and unfortunately it hasn’t changed anything.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Try this then;

    .page-id-10 .textwidget> h3 {
        display: none!important;
    }
     .page-id-59 .textwidget .entry-header{
    	display: none!important;
    }

    Thanks!

    Thread Starter princedes

    (@princedes)

    The above css did not change anything, also I have noted when I go to pages and quick edit and edit the page name (Services provided) the word at bottom of page is also edited.

    Thread Starter princedes

    (@princedes)

    I now realize the above applied code which I inserted to Css did remove the words at the top of both pages, but these are not the words which I wanted removed.

    On services provided page the word which I want removed is Services provided,it sits directly above the CONTENT BOTTOM 2 widget (above the seai image)

    The second word I want to remove in the Testimonials page sits directly above CONTENT BOTTOM 1 widget (above RGI image) I want to remove the word Testimonials

    Apologies for not being more precise at the outset.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Hello princedes,

    Here is the css for a quick fix;

    .page-id-10 .entry-title, .page-id-59 .entry-title {
        display: none;
    }

    Let us know.
    Thanks!

    Thread Starter princedes

    (@princedes)

    Thank you so much,that has worked perfectly.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to remove text//post from front of page’ is closed to new replies.