• Resolved bengleason7

    (@bengleason7)


    Hi, few things I am trying to change but don’t know how.

    1. On mobile view, there is a huge gap between the title and menu icon, and the page title. Example: On home page the gap between “Ben Gleason” and the title “Blog” is large. How do I minimize that and decrease that gap?

    2. On the home page it says “Show – Everything” and you can choose what topics to choose. How do you remove that?

    3. On the home page, where it says “Blog”, is it possible to change that word “Blog” to something like “Home” or “Home Page”?

    Thank you!
    Ben

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

Viewing 1 replies (of 1 total)
  • Hey Ben,

    Let’s take them one at a time:

    1. You are right – the header spacing is a bit bigger. This CSS code should do the job:

    @media only screen and (max-width: 560px){
    .c-page-header {
        padding-top: 0;
     } 
    }

    2. As there isn’t a dedicated option for it, you can hide it via a simple CSS code:

    .c-page-header__meta.h7 {
        display: none;
    }

    3. Could you tell me how have you added the Blog title perhaps?

    Warm regards,
    Robert

Viewing 1 replies (of 1 total)
  • The topic ‘Need Help Reformatting’ is closed to new replies.