• [ Moderator note: moved to Fixing WordPress. Please do not use Developing With WordPress for these topics. ]

    Hi! I’m an extreme beginner at coding (meaning little to no knowledge) and I have a couple things I can’t quite figure out. My site is https://cheesyfantasycomic.com/ . Right under the header I have a menu, with the title MENU. I was wondering if there was a way to remove the menus title? I was also wondering if there was a way to make the names of the pages larger, as right now they’re pretty tiny. Thanks!

    Cam

Viewing 1 replies (of 1 total)
  • Hello @splarflord

    You can hide the title ‘Menu’ by applying following CSS code.

    h2.widgettitle {
        visibility: hidden;
    }

    For changing the size of the page name use CSS code

    .post-info {
        font-size: 18px;
    }

    Change font-size if you needed.

    Hope this will help.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Menu title and change font size?’ is closed to new replies.