how can i change background to green and dont show “alt text” at images.
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
Thank you Yigit. Looks really amazing. There is still one thing i do not get rid of. Can you please take a look here.
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
Thanks Andy. Will this code work with all future blog posts? i have a preset http://i.imgur.com/cdWRmr3.jpg
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
Hi Yigit. Than it looks like this: http://imgur.com/H1o3ZCP
i changed the custom css class. http://imgur.com/12sCL4h
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