How do I remove a hyphen that is appearing on my pages?
It's a small mark found in the upper left part of my site. You can see it at http://www.dyerwrites.com.
I'm using iNove.
Thanks for any help you can provide.
How do I remove a hyphen that is appearing on my pages?
It's a small mark found in the upper left part of my site. You can see it at http://www.dyerwrites.com.
I'm using iNove.
Thanks for any help you can provide.
This is a border being applied in your stylesheet to a Div in the theme that you are not using
In /wp-content/themes/{themename}/style.css find this (line 185)
#tagline {
border-top:1px solid #FFFFFF;
color:#FFFFFF;
float:left;
font-size:10px;
padding:0 3px;
text-decoration:none;
}
Remove this line
border-top:1px solid #FFFFFF;
That should remove the hyphen
Great! Thank you!
This topic has been closed to new replies.