Can you please share the URL of your site?
Sure! Here is one of my pages. The box appears to the left of music at the top of the page. http://twinchameleon.com/music/
Try adding the following code to custom css-
.single #page .entry-header h1.entry-title:before, .page #page .entry-header h1.entry-title:before {
content: "" !important;
}
This did work! however, after eliminating the box, it did not shift the text left so that it is aligned with the rest of the text in the post. Can I move the title so that it is left justified?
Try adding the following code-
.single #page .entry-header h1.entry-title:before, .page #page .entry-header h1.entry-title:before {
content: none;
}
unfortunately this did not work.
You first need to scrap the earlier code I provided to you.
oh ok. That did work thank you! I have another question if you don’t mind.
If you go to one of my pages – http://twinchameleon.com/music/ – you will see that I added a mailing list in the footer. However, the text appears in a black box. Is there a code I can use to eliminate the box, change font size, and text family? Thank you very much for your help!
Add the following code to custom css-
#footer-sidebar .widget h1.widget-title {
background: none !important;
font-size: 24px;
font-family: "Open Sans", sans-serif;
}
Change the values as per your requirements.
Divjot