How to Revise CSS to Delete Read More Button on Blog entries?

  • Unknown's avatar

    Hi WordPress community,

    I need help using CSS. I want to edit my page so that the blog entry on my homepage, “Welcome to my Writing Portfolio” doesn’t display my name, the date, the folder, and the read more button.

    I don’t have any experience with css or revising any text.

    If someone could tell me how to save css revisions and also the code I need I would great appreciate it.

    Thanks

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi Michael,

    If you have a premium plan upgrade, you could try the wp-admin control panel > appearance > customize and enter the css that belongs to each part (eg. you can find out the proper classes you’re looking for, for an example .entry-title).

    To make them disappear you tag the properties you need in the custom css space like:

    .entry-title{display:none;}
    .entry-date{display:none;}

    and so on.

    Hope this helps.

  • Unknown's avatar

    hey, you got me more than halfway there and I couldn’t have done it without you.

    all i had to do was inspect the element, copy the css path for the portion i wanted deleted, enter it into the css board and then type in {display:none;}.

    I really appreciate the help.

  • The topic ‘How to Revise CSS to Delete Read More Button on Blog entries?’ is closed to new replies.