• Resolved nickytay

    (@nickytay)


    Hi,
    I have two questions please. Firstly, how do I increase the size of my tagline? And secondly, is there a way of deleting the text ‘Home’ at the start of my home page?
    Many thanks in advance,
    Nicky

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @nickytay,

    To increase the size of tagline, try to use:

    .site-description {
        font-size: 15px; /* change this value to anything you'd like. */
        font-size: 1.5rem; /* change this value to anything you'd like. */
    }

    To make it simple, if you like a font-size of 18px, just set rem to 1.8rem.

    The “Home” text is the entry-title of your homepage. Therefore, to set it to no display:

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

    If you want to hide the “Home” text but want to keep the space above your content; try:

    .home .entry-header .entry-title {
        visibility: hidden;
    }
    Thread Starter nickytay

    (@nickytay)

    Thanks for this, it’s worked. I’ve tried the same thing to hide the ‘about’ text on the about page, by substituting home for about, but that hasn’t worked. I’d also like to get rid of ‘contact’ on the contact page too.

    How can I do this please?

    Many thanks,

    Nicky

    To hide or remove the entry-title of specific static page, you need to find the page id number.

    On your Chrome browser, press Ctrl + Shift + C.
    Under Elements tab, scroll up until you find the “body” tag.

    Look for the element with “page-id-somenumber”, which in your About page it is page-id-2.

    So you can try this:

    .page-id-2 .entry-header .entry-title {
        display: none;
    }

    If page is a post content page: you can look for “postid-somenumber”.

    .postid-10 .entry-header .entry-title {
        display: none;  /* replace 10 by the post id */
    }

    Good luck!

    Thread Starter nickytay

    (@nickytay)

    It works – thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘increasing size of tagline font and getting rid of ‘home’ on homepage’ is closed to new replies.