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 #3480100
Font size of category title
Closed

Comments

  •  1
    Harsh started the conversation

    Hello,

    How can I change the font size of category heading and Post titles for mobile view?

    1678855777.png

    1539513892.png

    Please help!

    Attached files:  Screenshot 2023-09-18 122309.png
      Screenshot 2023-09-18 121603.png

  •  2,541
    PenciDesign replied

    Hi,

    1. Please go to Appearance → Customize → General → Typography → Font Size for Archive Page Title: change the archive page title font size at this option,

    2. Navigate to Single Posts → Font Sizes → Font Size for Post Title: change the post title at this option.

    Please note: click the mobile icon to change for the mobile device only.

    Regards,
    PenciDesign.


  •  1
    Harsh replied

    Hello,

    Please guide me as to how can change the post title font size in category pages itself for mobile and desktop view.

    6637250092.png


  •  2,541
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Posts Layouts → Font Size: change the font size at the following options:

    - Font Size for Post Titles on Layouts: Standard, Classic & Overlay

    - Font Size for Post Titles on Other Layouts

    Regards,
    PenciDesign.


  •  1
    Harsh replied

    Hello,

    How to change the font size of post excerpt separately for desktop and mobile view?

    I want the font size of post excerpt for desktop view to be 16px and font size of 15px for the mobile view.

    Please guide how do I do that?

    3573732812.png

     

  •  2,541
    PenciDesign replied

    Hi,

    Please navigate to Appearance → Customize → Custom CSS, and then insert the following custom CSS code:

    .penci-grid li .item .item-content,
    .penci-masonry .item-masonry .item-content,
    .penci-grid .mixed-detail .item-content {
        font-size: 16px;
    } @media only  screen and (max-width:767px) {
        .penci-grid li .item .item-content,
        .penci-masonry .item-masonry .item-content,
        .penci-grid .mixed-detail .item-content {
            font-size: 13px; /* for mobile devices */
        } }

    Regards,
    PenciDesign.