• Roel1982

    (@roel1982)


    Hi,

    Is it possible to delete the ‘Read more’ button at blogposts?

    I just want to insert a textbutton in the excerpts.

    Thanks!

Viewing 9 replies - 1 through 9 (of 9 total)
  • juggledad

    (@juggledad)

    yes

    Thread Starter Roel1982

    (@roel1982)

    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

    juggledad

    (@juggledad)

    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.

    Thread Starter Roel1982

    (@roel1982)

    Sorry if I’m not clear enough.

    The theme I use is: ‘The7’ and this is the page: https://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(https://new.screenconsultants.com/wp-content/plugins/js_composer/assets/vc/vc_gitem_image.png) !important;”>

    <img class=”vc_gitem-zone-img” alt=”” src=”https://new.screenconsultants.com/wp-content/plugins/js_composer/assets/vc/vc_gitem_image.png”&gt;
    <div class=”vc_gitem-zone-mini”> </div>
    </div>

    Hope you can help!

    juggledad

    (@juggledad)

    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;
    }
    Thread Starter Roel1982

    (@roel1982)

    Thanks Juggledad and Gurus, but both codes don’t make a difference.

    I contact the theme author

    Thread Starter Roel1982

    (@roel1982)

    FYI
    The button is gone!

    The code:

    .vc_btn3-container vc_btn3-left,
    .vc_btn3-container {
    display: none;
    }

    Thread Starter Roel1982

    (@roel1982)

    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!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Delete 'Read more' button blogposts’ is closed to new replies.