Please , can you show me how to set my ad just beside the featured image in Template style 1 like it is done here >> https://www.screencast.com/t/2mQF2rMR
Hi,
You could try this custom code, enter it in Theme panel->Custom code->Advanced Css in the Desktop section – http://screencast.com/t/LoeX0gX72j This will work only in desktop width because the code modifies the responsiveness
.td-post-template-1 .td-featured-image-rec {
width: auto;
}
.td-post-template-1 .td-a-rec-id-post_style_1 {
float: left;
margin-left: 50px;
}
.td-post-template-1 .td-post-featured-image {
float: left;
}
.td-post-template-1 .td-paragraph-padding-1 {
clear: both;
}
Result with code added – http://screencast.com/t/dMGLt66VGY4
Please let me know if this works for you
Thanks
Hi,
Try this code and see if it works for you, enter it in Theme panel->Custom Css
.td-post-template-1 .td-featured-image-rec {
width: 100%!important;
}
.td-post-template-1 .td-post-featured-image {
float: left;
margin-right: 30px;
}
Result – https://www.screencast.com/t/ohrHf7OP6
Thanks