• I am looking to take off the page titles… and I put this in the CSS but it did nothing.
    Can you help?

    /*
    Welcome to Custom CSS!
    
    CSS (Cascading Style Sheets) is a kind of code that tells the browser how
    to render a web page. You may delete these comments and get started with
    your customizations.
    
    By default, your stylesheet will be loaded after the theme stylesheets,
    which means that your rules can take precedence and override the theme CSS
    rules. Just write here what you want to change, you don't need to copy all
    your theme's stylesheet content.
    */
    .page .entry-title {
    	display: none;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • Ali

    (@themepoint)

    are you sure .entry-title is the page title element, after seeing the theme it should be:

    .page .head {
    	display: none;
    }

    Thread Starter cherylrae7

    (@cherylrae7)

    Super that did it!!! can you tell me how to remove the post titles then? the blogsite is: publicboarddirector.com

    I want the “latest posts” title gone.

    Also do you know where the full listing for the CSS lives?

    Ali

    (@themepoint)

    this will remove “latest posts”

    .home .head {
     display: none;
    }

    use chrome inspector tool to find your element. right click on the element and click Inspect element.

    your stylesheet are on your theme css folder publicboarddirector.com/wp-content/themes/painter/css/

    Thread Starter cherylrae7

    (@cherylrae7)

    it’s didn’t remove it – that’s the posts page and it worked on all the page heads but not the blog…. not using chrome – use firefox but will download chrome to see that… any other suggestions for the code?

    Thread Starter cherylrae7

    (@cherylrae7)

    it did work thank you so much!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘need to edit the CSS’ is closed to new replies.