Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2198871
Category Header
Closed

Comments

  • m28006 started the conversation

    How can I align the category title to the left and avoid the capital letters? Thanks in advance.

  •  2,699
    PenciDesign replied

    Hi,

    Please add more this code to Customize > Custom CSS to do that:

    body.category .archive-box h1{ text-transform: none; }
    body.category .archive-box{ text-align: left; }
    

    Best Regards,

    PenciDesign

  • m28006 replied

    Thank you. Any idea why the h1 title appears with the same size as the h2 sub headings ?

  •  2,699
    PenciDesign replied

    Hi,

    Because you want to avoid the capital letters, so you look it smaller when do that.

    You can add more this code to Customize > Custom CSS to change the size for that title if you want:

    @media only screen and (min-width: 769px) {
    body.category .archive-box h1{ font-size: 30px; }
    }

    Best Regards,

    PenciDesign

  • m28006 replied

    In mobile view the main header is still smaller than H2 subheadings. How can I make the main header bigger?

  •  2,699
    PenciDesign replied

    Hi,

    Please add more this code to Customize > Custom CSS to do that:

    @media only screen and (max-width: 768px) {
    body.category .archive-box h1{ font-size: 28px; }
    }

    Best Regards,

    PenciDesign