It's really weird that » shows on FireFox and Opera browsers but it doesn't show on IE browser. I'm using three kubrick theme and want to remove it. Could someone helps please?
It's really weird that » shows on FireFox and Opera browsers but it doesn't show on IE browser. I'm using three kubrick theme and want to remove it. Could someone helps please?
I am assuming you are trying to remove it from the title of the page?
Go into the /wp-content/themes/default/header.php and the fine the » in that file. This is the html symbol for that sign. Remove this or replace it with something else like -
Also, find wp_title(); shortly after that. Replace it with wp_title(''); or if you want to add something else: wp_title(' - ');
Hope this helps!
opps i was given missing info. I meant the » shows on sidebar like under Categories items (see below)
» category 1
» category 2
just check out this in your style.css
.entry ul li:before, #sidebar ul ul li:before {
content: "0BB 020";
}
I've found that string code and what should I do next? Please advice
Thanks
just remove that code.
.entry ul li:before, #sidebar ul ul li:before {
content: "";
}
thanks a lot ghanshyamgadhiya :-)
You are always welcome. :-)
This topic has been closed to new replies.