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 #1543550
Posts: Change the size of the Title
Closed

Comments

  •  1
    showsarg started the conversation

    Hi,

    How can I change the size of the title according to the style of posting?

  •  2,699
    PenciDesign replied

    Hi,

    Do you mean change font size for posts title inside single post page? If so, please check option for it via Customize > Single Posts Options.


    Best Regards,

    PenciDesign

  •  1
    showsarg replied

    Nop, in "Post template layout" 

    I want style 5 to have the title bigger than style 2

  •  2,699
    PenciDesign replied

    Hi,

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

    @media only screen and (min-width: 769px){
    .penci-page-style-5 .penci-active-thumb .penci-entry-title, .penci-single-style-5 .penci-active-thumb .penci-entry-title{ font-size: 40px;  }
    }

    Change number 40 to value you want.


    Best Regards,

    PenciDesign

  •  1
    showsarg replied

    Does this code help me for the other styles?

  •  1
    showsarg replied

    I just discovered that it does not change the size of the title in Customize --> Single Post Op ---> Single template -->Custom font size Title

    I changed it and it does not change the size

  •  2,699
    PenciDesign replied

    Hi,

    1/ It doesn't work because you added a custom css to override it here

    2/ You can use this code to another style and change the number '5' to the post style you want to change:

    @media only screen and (min-width: 769px){
    .penci-page-style-5 .penci-active-thumb .penci-entry-title, .penci-single-style-5 .penci-active-thumb .penci-entry-title{ font-size: 40px;  }
    }

    Example for change it for style 6, use:

    @media only screen and (min-width: 769px){
    .penci-page-style-6 .penci-active-thumb .penci-entry-title, .penci-single-style-6 .penci-active-thumb .penci-entry-title{ font-size: 40px;  }
    }


    Best Regards,

    PenciDesign

  •  1
    showsarg replied

    Perfect!  thnx