• Resolved fedde2

    (@fedde2)


    Hello, I’m trying to find a way to remove/hide/reduce-size of the (header) title text starting with “Category :” and followed by the topic like “all-goods” from the category list please see my page (https://madebyfedde.com/category/all/). There are already some topics about similar problems, but som how both SCC codes or php codes that i find don’t seem to work in my theme “For the future” Could someone please point me in the right direction?

    Also but not as pressing to me is the alignment of the post title (mainly on mobile device) now left but ideally I would like it center…

    Sorry if this overlaps other topics and answers, but I couldn’t find one that worked for me yet…
    Thanks so much for your help,

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Justin

    (@click245)

    Hi there,

    If you go into your Customize > Custom CSS, you can paste this code and it will make your header smaller:

    h2 {
        font-size: 24px;
    }

    You can change that number to make the heading bigger or smaller as you see fit. If you want it to centre align the header on mobile this will help you, it will centre align on portrait view tablets and anything smaller. Place it underneath the previous css:

    @media (max-width:780px) {
    h2 {
    text-align:center;
    }
    }

    Hope this helps!

    Thread Starter fedde2

    (@fedde2)

    It sure does, although i find that the @media only works using the h1… Could you please tel me if the size of this text could be made smaler? I tried to insert:

    @media (max-width:780px) {
    h1 {
    text-align:center;
    font-size: 10px;
    }
    }

    but that doesn’t work ??

    Tanks for now….

    Thread Starter fedde2

    (@fedde2)

    It seems that the code works… must be it takes a wile to display.

    Thanks again for your help.

    Justin

    (@click245)

    Sometimes your browser just keeps the old styling cached for a little while. If you are on pc and want to override it you can do a hard refresh with Ctrl + F5 (or I think its shift + R on Mac, something like that), then you will see your changes instantly

    No problem glad to help!

    Thread Starter fedde2

    (@fedde2)

    Yes, I always thought the refresh button in the browser did the same thing.

    Thanks again.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘remove/hide/reduce-size of category title [theme: For the future]’ is closed to new replies.