Tagged: ,

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1340403

    Hi dear Kriesi-Team,

    Is there a way to specifically change the position(to be centered) and the font-size of single category text and heading ( the big left one at the top of the page ), without affecting the other category texts on the right?

    Please check the green square: https://imgur.com/L5H0c4S

    thank you

    Best,
    Veronika

    #1340503

    Hey Veronika,

    Thanks for contacting us!

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #top #wrap_all .left-section div .blog-categories a {
      text-align: center !important;
      color: red;
      display: block;
      font-size: 16px;
    }
    

    Regards,
    Yigit

    #1340702

    Hi Yigit,

    it worked perfectly for the size, unfortunately not for the heading. And somehow are the categories shifted on all my posts https://imgur.com/5h55j6A

    How can I fix this?

    Thank you very much

    Sincerely,
    Veronika

    #1340816

    Hi Veronika,

    Please add this CSS code in Quick CSS:

    #top .avia-content-slider .slide-content .entry-content-header {
        display: flex;
        flex-direction: column-reverse;
    }
    
    #top .avia-content-slider .slide-content .entry-content-header .slide-entry-title {
        padding-top: 0;
    }
    
    #top .avia-content-slider .slide-content .entry-content-header .blog-categories {
        top: 0;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1341082

    Nikko!

    Thank you, it worked absolutely marvelous. Unfortunately I still do not know, how I can change the heading size on the left side, so it does not affect the other headings.

    Thank you so so much,

    All the best, Veronika

    #1341261

    Hi Veronika,

    You’re welcome :)
    Please add this CSS code as well, just change the font-size value:

    #top.home #av-layout-grid-1 .av_one_half.avia-builder-el-first .slide-entry-title {
        font-size: 40px;
    }
    
    #top.home #av-layout-grid-1 .av_one_half.avia-builder-el-first .blog-categories a {
        font-size: 20px;
    }

    Best regards,
    Nikko

    #1341525

    Hi Nikko,

    thank you, it worked perfectly. I tried to make it centered, which is also working. I tried to add a special font-weight to the title but nothing changes. Did I wrote something wrong?

    #top.home #av-layout-grid-1 .av_one_half.avia-builder-el-first .slide-entry-title {
    font-size: 40px;
    text-align: center;
    font-weight: 300px !important;
    }

    Thank you very much

    Best,
    Veronika

    #1341559

    Hi Veronika,

    This is invalid:

    font-weight: 300px !important;

    just change it to:

    font-weight: 300 !important;

    Best regards,
    Nikko

    #1341698

    huh, learned something new today, thank you :)

    you can close this now

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘different category positions’ is closed to new replies.