Remove icons from Post meta

Hi there

I would like to remove the Icons from Post meta Information. I did that with the following Code:

[data-x-icon-s]:before {
content: none;
}

This works well but also removes the arrow Icon in my scroll-top button.

Is there any solution for removing only the post meta Icons?

Thank you very much for your help.

Hey Felix,

Please try:

.p-meta span i {
    display: none;
}

Here are some related links for further reading:

Hope this helps.

Hi Jade

Absolutely fantastic! This works perfect. Thank you very much!

Bv the way - is it possible to remove the hover effect on the Post image on the actual post page? I dont’t mean on the post overview page - there the mouseover makes sense, because it is a link to the actual post. But on the actual post, the mouseover means Nothing…

Thank you very much for your help.

Hi Felix,

To remove the hover, you can add this in Theme Options > CSS

.single-post .entry-thumb img:hover {
    opacity: 1 !important;
}

Hope this helps

Hi Paul

Yes, this works perfect!

Thank you very much for your great help!

You’re most welcome Felix! :slight_smile:

Hi Paul

It would be great if the active main menu “Blog” would be highlighted also with the single post page. At the Moment, when I click on the main menu “Blog” the Post overview page appears and the main menu “Blog” is active highlighted. When I click on a Post, the single post page appears but the main menu “Blog” is not active highlited anymore.

Do you know a solution?

Thank you very much for your help!

Hello Felix,

To resolve your issue, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-navbar .desktop .x-nav > li.current_page_parent > a {
    color: #b7b7b7;   
    box-shadow: inset 0 4px 0 0 rgb(145,7,21);
}

We would loved to know if this has work for you. Thank you.

Hi RueNel

This works perfect! Thank you very much for your great support!

You’re welcome!
Thanks for letting us know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.