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

    how can i change background to green and dont show “alt text” at images.

    #500939

    Hi wiwaldi79!

    1- Please add following code to Quick CSS

    .av-masonry-sort.main_color {
        background-color: #91c34a;
    }
    .av-sort-by-term * {
        color: white!important;
    }

    2- Please add following code to Functions.php file in Appearance > Editor

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    Best regards,
    Yigit

    #501299

    Thank you Yigit. Looks really amazing. There is still one thing i do not get rid of. Can you please take a look here.

    #501719

    Hi!

    use this code:

    .avia-image-container.av-styling-circle.avia-builder-el-18.avia-builder-el-no-sibling.blog_portrait-class.custom-image_blog_round.avia-align-center {
    top: 40px;
    left: 20px;
    }
    

    Cheers!
    Andy

    #501884

    Thanks Andy. Will this code work with all future blog posts? i have a preset http://i.imgur.com/cdWRmr3.jpg

    #502638

    Hi!

    You can give custom CSS class to your blog element and then change the code to following one and it should work fine

    .your-custom-class .avia-image-container.av-styling-circle { 
    top: 40px;
    left: 20px;
    }

    Best regards,
    Yigit

    #503016

    Hi Yigit. Than it looks like this: http://imgur.com/H1o3ZCP

    i changed the custom css class. http://imgur.com/12sCL4h

    #503156

    Hey!

    I’m sorry but I’m not sure I understand your inquiry. I think you’re talking about a different issue based on the screenshots. Can you please elaborate? For further modifications, please visit codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

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