Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #671840

    on this page: http://www.directionscounseling.com/specialties/substance-abuse-addictions/alcohol-drug-assessments/

    I have a blog shortcode placed in the right 1/3 of the page to load a specific blog category to the page. Is there a way to make the text smaller on the blog so that its more like the size of the text on the rest of the page?

    #671844

    it depends on what to get smaller only the text in the p tags or the headings too etc. pp

    if you only want to get this result on that specific page :

    .page-id-185 .av_one_third .entry-content-wrapper * {
        font-size: 13px;
    }

    so everything following the .entry-content-wrapper will be effected.

    if you want to have the h2 of the 1/3 column stay big you have to go deeper down: f.e:

    .page-id-185 .av_one_third .entry-content * {
        font-size: 13px;
    }

    in this code the h2 aren’t effected.

    #671913

    Hi!

    Please refer to @guenni007’s post above

    @guenni007
    Thanks :)

    Best regards,
    Yigit

    #672165

    Thanks this is a good solution. Can we also change the spacing between lines to match the mail text lines?

    #672257

    i think normal line-height in enfold (if standard font-size is set to 13px) 1.65em:

    .page-id-185 .av_one_third .entry-content-wrapper * {
        font-size: 13px;
        line-height: 1.65em;
    }
    #672526

    Hi,

    Thanks for the suggestion @Guenni007, did that work out for you @satucker?

    Thanks,,
    Rikard

    #672527

    yes

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘blog post text size’ is closed to new replies.