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 #2869475
Font
Closed

Comments

  • mswmsw started the conversation

    I just cannot find the options to change:

    1. Font size of title within article view for mobile (there its too small, on desktop its fine)

    2. Make latest post headlines on startpage not in capital letters.

    Best,

    Matthias

  •  2,492
    PenciDesign replied

    Hi,

    1. Please go to Appearance → Customize → Single Posts → Font Size, click the mobile icon, then enter font size for mobile-only:

    image.png

    2. Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .archive-box span, .archive-box h1 {
        text-transform: capitalize;
    }

    Regards,
    PenciDesign.


  • mswmsw replied

    Great, 1. is working already. For 2 I don‘t want to have to in capital letters. I want to have normal letters. That‘s not working with this code.

  •  2,492
    PenciDesign replied

    Hi,

    Please modify the CSS code:

    .archive-box span, .archive-box h1 {
        text-transform: initial;
    }

    Regards,
    PenciDesign.