Hi Juggledad,
Do you know where I can delete this button? I searched in a lot of php files but I can’t find the right line.
Or do I insert a CSS code?
Hope you can help
Without knowing what your site is or the theme you are using or if a plugin you are using is putting the button there, I’d suggest you use the FireBug extension of FireFox and look at the element and build a CSS seector and Rule to hide the element.
Sorry if I’m not clear enough.
The theme I use is: ‘The7’ and this is the page: http://new.screenconsultants.com/test-3/
I would like to delete the image on top and the ‘Read more’ button.
The button code is:
<div class=”vc_btn3-container vc_btn3-left”>
Read more
</div>
The image code is:
<div class=”vc_gitem-zone vc_gitem-zone-a vc_gitem-is-link” style=”background-image: url(http://new.screenconsultants.com/wp-content/plugins/js_composer/assets/vc/vc_gitem_image.png) !important;”>
<img class=”vc_gitem-zone-img” alt=”” src=”http://new.screenconsultants.com/wp-content/plugins/js_composer/assets/vc/vc_gitem_image.png”>
<div class=”vc_gitem-zone-mini”> </div>
</div>
Hope you can help!
That theme is a premium theme, You shoud ask the theme author for support.
you could use
.vc_btn3-container {
display: none;
}
to remove the image but i don’t know what file to tell yu to put it in since the theme is a premimum theme I don’t have access to.
I would suggest you cotact the tnme author.
Try this:
.vc_gitem-zone.vc_gitem-zone-a.vc_gitem-is-link,
.vc_gitem-link {
display: none !important;
}
Thanks Juggledad and Gurus, but both codes don’t make a difference.
I contact the theme author
FYI
The button is gone!
The code:
.vc_btn3-container vc_btn3-left,
.vc_btn3-container {
display: none;
}
And the image:
.vc_gitem-zone vc_gitem-zone-a vc_gitem-is-link,
.vc_gitem-is-link {
display: none !important;
}
Thanks for your support!