Removing blog icon not working

Hi guys,

I am trying to remove the blog icon before the title. I have added the following CSS to the global settings, however it is still showing. Can you please let me know what else I may need to do.

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

I am using pro with stack renew - blog post here: http://scarboroughchiro.naomipearce.com/ease-inflammation-with-these-5-foods/

Many thanks in advance! Naomi :slight_smile:

Sorry just to add also… I have added the css

.entry-thumb:before{display: none;
}

To remove the link icon on the blog page however the link icon is still there too.

Looking forward to hearing from you soon.

Hi There,

You forgot to add the curly bracket(}) in your custom CSS. Please find this custom CSS:

@media (max-width: 979px) {
                .single-recipe .x-main.full {
                    margin-left:0px;
                    margin-right: 0px;
                }

                .entry-thumb:before {
                    display: none;
                }

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

And change to this:

@media (max-width: 979px) {
    .single-recipe .x-main.full {
        margin-left:0px;
        margin-right: 0px;
    }
}
.entry-thumb:before {
    display: none;
}

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

Hope it helps :slight_smile:

1 Like

ahhhhhhhhhhhhhhhhhhh… haha!!! So simply!

Thank you so much!!! You’re awesome!

Naomi

Glad we were able to help :slight_smile:

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