Thread Starter
cfp72
(@cfp72)
Been editing your theme? 🙂
Have a look at your single.php or page.php file. Then remove (or fix) this weird line:
<h1><a href="http://digitalpopuli.com</a></h1>
Thread Starter
cfp72
(@cfp72)
Yes…but nothing too ambitious, lol.
Can’t find that exact line in either single.php or page.php.
Only thing close (href) is in the single.php file:
// Both Comments and Pings are open ?>
You can leave a response, or ” rel=”trackback”>trackback from your own site.
and
// Only Pings are Open ?>
Responses are currently closed, but you can ” rel=”trackback”>trackback from your own site.
Check line #26 of your header.php and see if you’re missing a “>”.
Thread Starter
cfp72
(@cfp72)
Line 26 (first one below) looks fine. The lines below it look like it may be missing the “>” – where in the code line does it belong? (already tried the clumsy add to the end with no result)
<div id="page">
<div id="header">
<h1><a href="<?php echo get_option('home'); ?></a></h1>
<div class="description"></div>
This is the line I refered to above:
<h1><a href="<?php echo get_option('home'); ?></a></h1>
Either remove it, or make it work – something like:
<h1><a href="<?php echo get_option('home'); ?>">Some text here</a></h1>
Thread Starter
cfp72
(@cfp72)
Worked like a charm. Thanks so much Alism!