• Resolved lukemrshll

    (@lukemrshll)


    Hi,
    I’m a few weeks new to wordpress and coding ect. and was wondering how to get rid of the site title on my website instinctsocial.com.au using the stout theme I have tried previous combinations of code suggested in other troubleshoot posts but none of them seem to work. Could somebody please direct me to the right place to be putting in the code to hide the site title.
    Cheers.

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

    You can install and activate the Hide Title plugin for WordPress. After activation, go to the edit screen for the specific post and page. You can do this by simply clicking on the Posts or Pages menu in your WordPress admin and clicking on the item that you want to edit.

    Hope this information will help.

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Please provide a link to a page on your site where we can see this. Thanks.

    Thread Starter lukemrshll

    (@lukemrshll)

    Thanks for the reply chemicloud but thats unfortunately not what I intend on removing, I want to remove the site title that sits under my sites logo. To view the problem I’m having it’s clearly visible in the header of the site.

    The url is instinctsocial.com.au

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    This CSS will move it off the visible page:

    h1.site-title {
        position: absolute;
        left: -999px;
        top: -999px;
    }

    To add CSS:

    • If you are using WordPress 4.7, use the “Additional CSS” option in the customizer.
    • If your theme has a custom CSS option, use that to add the CSS shown above.
    • If not, install the plugin Simple Custom CSS.

    Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.

    Thread Starter lukemrshll

    (@lukemrshll)

    Thanks heaps Steve!
    Appreciate your time.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do I hide the site title on all pages of my site?’ is closed to new replies.