ttttalya
Member
Posted 2 years ago #
problems -
1.first of all, the title of my site wont show up at the top left of the browser window, even though its typed in under options.
2.second, the same title is showing as text above my content, INSTEAD of just in my browser window, and i don't want it there.
what am i doing wrong?
http://www.poolcovering.com
1. You're not using a title tag in your template (probably in header.php): http://www.w3schools.com/tags/tag_title.asp
2. I don't understand what you are asking... Are you referring to the text in the image?
deanhatescoffee
Member
Posted 2 years ago #
I checked your page source - it doesn't look like you have the <title> tag on your page. You'll want to add this right after your <head> tag in the header.php file of your template:
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
You can actually add it anywhere between <head> and </head> but it's easier to keep track of when it's right after <head>.
ttttalya
Member
Posted 2 years ago #
thanks! actually answered my question just fine