Okay
  Public Ticket #2850684
Blog tags, comments
Closed

Comments

  •  21
    Sanjay started the conversation

    Hi. I'm trying to remove the 'leave a reply' at the bottom of the screen. I've turned off wordpress comments so I don't understand why it's still there.

    The tags buttons I would like to be the colours of the site - working as they do on this other site I own: https://phoenixyogastudios.com.au/ayurveda/getting-through-winter-ayurveda/ You can see with these tags the 'tags' title is gone, and the tags are are faded buttons with a hover colour. I'd like it like this. Link to this page has changed to https://threepillarscounselling.com/psychotherapy/

    Thanks

  •  2,961
    Andrew replied

    Hello Sanjay,

    it appears that your comments are still on hence making the comment section appear. You can use this CSS to remove this section.

    .comments-section {
        display: none;
    }
    

    To remove the title tag and style the tags, use the following CSS.

    .comments-section {
        display: none;
    }
    .post-tags h4 {
        display: none;
    }
    .post-area .content-inner > .post-tags a {
        background-color: #005c2924;
        color: #005c29;
    }
    .post-area .content-inner > .post-tags a:hover {
        background-color: #005c29!important;
        color: white !important;
    }
    

    Regards,

  •  21
    Sanjay replied

    Great thanks so much!

  •  21
    Sanjay replied

    What about the button for the blog element? It's currently black but I'd also like it to be green like all the other buttons on the page. https://threepillarscounselling.com

  •  2,961
    Andrew replied

    Hi Sanjay,

    I am unable to locate any black buttons on your site. Am I missing something?

    Kindly send a screenshot of the element so that I am in a better position to assist.

    Regards,

  •  21
    Sanjay replied

    Apologies, go here: https://threepillarscounselling.com/blog

  •  2,961
    Andrew replied

    Hi Sanjay,

    The following CSS might help.

    .post .more-link span, .blog-recent .more-link span {
        background-color: #005c29;
    }
    .post .more-link span:hover, .blog-recent .more-link span:hover {
        opacity: 0.8;
    }
    

    Regards

  •  21
    Sanjay replied

    It worked. And what about rounded corners?

  •  2,961
    Andrew replied

    Hi Sanjay,

    Use this CSS instead of the one I've previously given.

    .post .more-link span, .blog-recent .more-link span {
        background-color: #005c29;
        border-radius: 200px !important;
    }
    .post .more-link span:hover, .blog-recent .more-link span:hover {
        opacity: 0.8;
    }
    

    Regards,

  •  21
    Sanjay replied

    Perfect thanks!