Getting rid Blog/Page icon
-
Hey there,
You can use this CSS:
.format-icon:before { content:none; }There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.wordpress.org/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://wordpress.org/plugins/custom-css-manager-plugin/screenshots/
http://wordpress.org/plugins/my-custom-css/screenshots/
http://wordpress.org/plugins/pc-custom-css/
http://wordpress.org/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Yes, Customizr has a Custom CSS field in Appearance > Customize.
Awesome, then you can use this CSS within that CSS field which makes things super easy.
Thanks for letting me know. 🙂
Hi Guys, thanks for the tips.
I pasted this in the custom css window and saved and refreshed but the icons are still there:.format-icon:before {
content:none;
}Kind of a newbie.
Problem solved after reaching out to a developer friend of mine. Entered this code in the custom css window in the customize section:
article.page .format-icon:before {
content: none;
}Just an FYI…your solution does not work on all browsers…take a look at your site with Chrome to see what I mean…try this instead:
.page #main-wrapper h1.format-icon:before { content: none; }Thanks, Deputy05! You are absolutely correct. That worked!
It was also still showing up on my devices with the icons, now it’s fixed!
The topic ‘Getting rid Blog/Page icon’ is closed to new replies.
