Viewing 21 posts - 1 through 21 (of 21 total)
  • Author
    Posts
  • #1127911

    I have theme default font set to 13px. When I increase it none of the content on the pages changes.
    I see that I can change it for specific content items but since they are all set to Default Size I figured it would change.
    How is this meant to function?
    Thanks
    Dizasta

    #1127960

    Hey Dizasta,

    Please provide a link to the site/page in question so we can look into this further. Also, are you running any custom css?

    Best regards,
    Jordan Shannon

    #1127967

    ok

    #1127968

    Font size set to 25px to demonstrate.

    #1128143

    Hi,

    That setting should apply to all your content which doesn’t have any other font size setting added to it, and it looks to be working on this content for instance:

    Keeping your website running smoothly and looking great amidst a world of software, device or browser updates.

    Best regards,
    Rikard

    #1144987

    1. I would like to reduce the size of the font for the blog posts inserted into the homepage – how can I perform this?
    1b. I would also like to remove the category for the blog posts shown on the homepage – also the date – can that be removed?
    1c. Is it possible to change the font in the footer for the blog posts so that they are consistent with the rest of the site?
    2. I would like to add padding around the logo in the header for both the normal logo and the transparency logo.
    3. I have a testimonial slider on the main page – how can I make it a fixed height so that a small testimonial doesn’t force the section to shrink and grow as it loads testimonials of various lengths?

    #1145207

    Hi,

    Please post a link to where we can see the elements in question. In the future then please stick to one question at a time.

    Best regards,
    Rikard

    #1145212

    link attached.

    #1145474

    Hi,
    Thank you for the link and screenshots, please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field and then clear your browser cache and any cache plugin, and check.
    The css is in the order of your questions and is specific for your homepage so it will not interfere with other pages, except the logo & footer css. Also feel free to adjust to suit.

    
    #top.home .avia-content-slider-inner .slide-entry-excerpt {
    	font-size: 12px !important; 
    }
    
    #top.home .avia-content-slider-inner .blog-categories.minor-meta,#top.home .avia-content-slider-inner .slide-meta {
    	display: none !important;
    }
    #footer #recent-posts-3 a {
    	font-family:'quicksand'!important; 
    	font-size: 16px !important;
    	font-style:normal !important; 
    	font-weight:400 !important; 
    }
    .logo img,.logo a img {
        padding: 5px 0 !important; 
    }
    
    #top.home #av_section_4 > div.container > div > div > div > div.avia-testimonial-wrapper.avia-slider-testimonials {
    	min-height: 201px !important; 
    }

    For your logo padding after scroll the header container has a max-height of 58px which skews the logo after adding the padding, I assume that you have set a custom height at: Enfold Theme Options > Header > Header Layout > Header Size please adjust this to allow for your new padding.

    Best regards,
    Mike

    #1146167

    Thanks Mike,
    How would I adjust the font size of the blog post heading rather than the text?

    #1146959

    Hi,

    Over the slider or over the main post?

    Best regards,
    Basilis

    #1146980

    The blog element inserted into the homepage as shown in the screens attached.
    Thanks

    #1147330

    Hi,

    Thanks for the screenshots, please post login details in private so that we can access your site in order to give you accurate CSS.

    Best regards,
    Rikard

    #1147335

    as requested

    #1147504

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    .home h3.entry-title a {
      font-size: 18px !important;
    }

    Best regards,
    Rikard

    #1148787

    Thank you that worked – but I now have additional formatting issues. See attached URL
    I would like to decrease the space between lines in the heading and the space between the heading and the body of the blog post.

    Thanks

    #1149385

    Hi,
    Sorry for the late reply, please replace the previous css with this and adjust the padding and margin first number to suit, leave the second number as zero.

    #top .avia-content-slider h3.slide-entry-title {
        font-size: 18px !important; 
        padding: 1px 0px !important;
        margin: 1px 0px !important;
    }

    Best regards,
    Mike

    #1149449

    Thanks Mike.

    Is there any way to change the length of the excerpt shown for the blog posts??

    #1149515

    Hi,
    To change the excerpt length Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_excerpt_length( $length ) {
        return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    and adjust “20” to suit.

    Best regards,
    Mike

    #1149674

    Mike, that doesnt seem to truncate the length of the excerpt….any ideas why?
    Thanks
    SB

    #1149764

    Hi Dizasta,

    Please try the code from this thread instead

    https://kriesi.at/support/topic/enfold-post-slider-excerpt-length/#post-132552

    Best regards,
    Victoria

Viewing 21 posts - 1 through 21 (of 21 total)
  • You must be logged in to reply to this topic.