Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #919032

    Hello, I need that the graphics of the inner navigation of my blog doesn’t displayed in round shapes.
    Please, have a closer look into the private content section.

    Thank you for your time and service.

    Best regards
    John

    #919058

    Hey John,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .avia-image-container-inner, .avia_image, .av-image-caption-overlay {
        border-radius: 0;
    }
    

    Best regards,
    Yigit

    #919826

    Hey Yigit,
    thank you for your fast response. The solution you suggested didn’t make it.
    Please have a closer look into the private section (again).
    Best regards,
    John

    #920096

    Hi,

    Thanks for the screenshot. Please try this instead:

    .avia-post-prev, .avia-post-next {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    Best regards,
    Rikard

    #922172

    Hey, Rikard,
    thank you for your fast response. Your solution also didn’t work for me.
    The original graphic is a square. The round-setting of blog-style Enfold creates,
    isn’t good, because its cuts off textelements.

    Any chance Enfold can cope with this?

    Best regards,
    John

    #922244

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .avia-post-nav .entry-image img {
        border-radius: 0;
    }
    

    If that too does not help, please post temporary admin logins here privately so we can look into it.

    Best regards,
    Yigit

    #950552

    Hey, Yigit, that finally worked! Thank you so much!
    Recently I was ill. So I wasn’t able to test it out until yesterday, you know.

    The only thing I need now, is to scale the size with the title text or so.
    Because the title text of the events is often chopped off.
    May have a look into the private section.

    Best regards,
    John

    #951381

    Hi,

    Glad it worked. For the title, try this css code.

    .avia-post-nav .entry-info span {
        font-size: 11px;
    }

    Please note that the post nav limits the title to 75 characters. You can find that limitation in the functions-enfold.php file, line 544.

    $the_title 	= isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
    

    Best regards,
    Ismael

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