Okay
  Public Ticket #2131846
Title sizes on specific posts
Closed

Comments

  • richardsquires started the conversation

    I want to make the titles on the writing category posts a smaller font, 18px - see link for the example page title - and although I have been able to change the paragraph font size in the Typography section for different pages, when I try to add these titles to the custom font editor it doesn't alter the sizes. Is there a bit of custom code that can do this job please!

    Thanks!

    http://lmfyffproductions.com/doozy-the-triumph-of-failure-benedict-morrison

  • [deleted] replied

    Hi Richard,

    To change the post title size you just need to add this selector:

    .single-post .post .entry-header .post-title
    in the Typography area > your font > Selectors.

    Have a nice day!

  • richardsquires replied

    Hi Ylli

    I have one ohter question. Is there some CSS I can add to the 'Custom CSS' page that will reduce the size of the left and right margins across the site? 


    Many thanks

    Richard

  • [deleted] replied

    Hi Richard,

    If you want to make your container bigger than you can add a code as you can see below to your Custom CSS area:

    /* Body: Large Screens bigger containers */
    @media (min-width: 1400px) {
        .container, .content-area {
            width: 1370px;
            max-width: 1370px;
        }
        
        .vc-container .vc-parent-row.row-stretch_row>.vc_row,
        .vc-container .vc-parent-row.row-default {
            width: 1370px;
            max-width: 1370px;
        }
    }
    /* Body: Large Screens */
    @media (min-width: 1600px) {
        .container, .content-area {
            width: 1570px;
            max-width: 1570px;
        }
        .vc-container .vc-parent-row.row-stretch_row>.vc_row,
        .vc-container .vc-parent-row.row-default {
            width: 1570px;
            max-width: 1570px;
        }
    }

    Then if you want you can modify it based on your preferences.

    Have a nice day!