• Resolved gravelpit

    (@gravelpit)


    Hello! I am trying to remove the page titles from my website which is made with the help of simple catch theme. I didn’t edit it a lot (styles.php). Minor changes, like size of logo. I am not web-designer or smth, however I do have some basic understanding of HTML and scripts. When creating a page, one enter page title. However, I really don’t want page title to be displayed when I am on this page, page title can be written manually when you create the content for the page. Besides, I can choose different fonts, sizes for content (and page title of course). Thank you in advance!

    http://wordpress.org/extend/themes/simple-catch/

Viewing 15 replies - 1 through 15 (of 34 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You can hide it when CSS.
    Does the dashboard have a Custom CSS area?

    Theme Author Catch Themes

    (@catchthemes)

    Yes there is Custom CSS box in Theme Option when you can add in the css to hide it.

    Thread Starter gravelpit

    (@gravelpit)

    Thanks for replies. However, I don’t know how to do it for simple catch. I have seen some solutions, several of them actually, but they are not applicable for this theme. I have also tried to use them, edited my styles.css file- no result. Obviously I was editing the wrong part. Could you tell what part of styles.css to change?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You need not edit any theme files.

    Enter CSS in the Custom CSS section in Theme Option.

    Thread Starter gravelpit

    (@gravelpit)

    Hi Andrew. Did that. What should I do next? Sorry, I am ding all by myself and not webdesigner… πŸ™‚

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You probably want something like;

    .page h2 {
     display: none;
    }

    Thread Starter gravelpit

    (@gravelpit)

    I inspected element and found the right part of .css file. My case WAS:

    Line 83: h2 {
    font-size: 28px;

    CHANGED TO:
    h2 {
    display: none;
    font-size: 28px;

    It all worked!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Just make sure you don’t update your theme.

    Theme Author Catch Themes

    (@catchthemes)

    @andrew, It’s not good to stop update. It is highly recommended to update the theme.

    Theme Author Catch Themes

    (@catchthemes)

    Hi gravelpit,

    Please add the changes in css to “Custom CSS” box in Theme Options under Appearance Tab in WordPress Dashboard.

    We highly recommend not to change any core theme files and css manually as it will be overwritten when you update your theme.

    Theme update is necessary as we fix issues and add functionality in each updates.

    Regards,
    Sakin

    Hi Sakin – how do you add multiple “Cusom CSS” directions into this box under Theme Options? I already have Custom CSS for color options, but also want to remove the page title from my home page (“Home”). I do want to keep “Home” as a tab in my navigation, however.

    Here is the current custom CSS I have written into this box:

    #header {
    background: none;
    background-color: #ffffff;
    }
    body {
    background-color: #ffffff;
    }
    (WHAT DO I ADD / WHERE DO I ADD CODE TO REMOVE PAGE TITLE FROM JUST “HOME” PAGE? – FYI I tried entering the recommended code from gravelpit immediately below the previous bracket, but this did not work)

    Thanks for any help!

    Theme Author Catch Themes

    (@catchthemes)

    @rebecca-g: can you send me your site URL and then I will send you the custom css to add it in your Theme Options page.

    zipdom.com – thank you!

    Theme Author Catch Themes

    (@catchthemes)

    @rebecca-g: You can just add the following css below your current css in Theme Options.

    .home .entry-title {
    	display: none;
    }

    Thank you!!! That finally worked!

Viewing 15 replies - 1 through 15 (of 34 total)
  • The topic ‘[Theme: Simple Catch] How to remove page title?’ is closed to new replies.