• clairepeetz

    (@clairepeetz)


    clairepeetz.com/clairesblog/

    under the post excerpt it says “Continue Reading →” I would like to remove it..How can I do so?.. I know this may be a stupid question.

Viewing 3 replies - 1 through 3 (of 3 total)
  • hostknox

    (@hostknox)

    You can do this with a simple modification to the style.css file of your theme.

    Note that it’s not recommended to edit original files of a theme because the changes will be lost when the theme is upgraded. For this purpose it’s better to create and use a child theme of the original theme. For more info: https://codex.www.ads-software.com/Child_Themes

    To remove the “Continue Reading” element from the frontend add the following line of code to the style.css file of the theme:

    .post-more { display: none; }

    One way to edit the file is from the admin panel of your WordPress (Appearance menu>Editor).

    Hope this helps.

    Thread Starter clairepeetz

    (@clairepeetz)

    clairepeetz.com/clairesblog/#

    That worked ! you are saint, if you can help me with my last problem I will leave everyone alone…. all I have to do now is move the “0 – Will you love me?” (likes) down to where the share buttons are… can you help with me that?

    hostknox

    (@hostknox)

    Since I don’t have access to any of the other files one possible solution I can propose is to change the relative position of the element by putting some code in the style.css file of the theme.

    For example, you can try something like this:

    .zilla-likes {
            position: relative;
    	top: 42px;
    	left: 400px;
    }

    You can change the numbers if you want to move the element to a different position.

    Hope this helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Continue Reading → Need to remove’ is closed to new replies.