lucid_design
Forum Replies Created
-
I may have resolved the problem. If you have IE, would you tell me if the header image is there?
On another note, the body text is displaying at 100% wide. Any idea where that glitch could be hiding?
Here’s the header.php. Thank you.
‘<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” <?php language_attributes(); ?>><head profile=”https://gmpg.org/xfn/11″>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” /><title>Eye of the Shaman – The Shamanic Diary of Luisa Kolker</title>
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<link rel=”alternate” type=”application/rss+xml” title=”<?php printf(__(‘%s RSS Feed’, ‘minimalism’), get_bloginfo(‘name’)); ?>” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”<?php printf(__(‘%s Atom Feed’, ‘minimalism’), get_bloginfo(‘name’)); ?>” href=”<?php bloginfo(‘atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” /><?php wp_head(); ?>
</head>
<body>
<div id=”page”><div id=”header”>
<div id=”headerimg”>
<h1>/”><?php bloginfo(‘name’); ?></h1>
<div class=”description”><?php bloginfo(‘description’); ?></div>
</div>
</div>
<hr />’Forum: Themes and Templates
In reply to: Minimalism theme: no margin around the imageHey, that worked. See here:
.wp-caption {
border: 1px solid #eee;
background-color: #fff;
padding-top: 4px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}Forum: Fixing WordPress
In reply to: Why is my sidebar underneath my post? I’m on a deadline for a clientThe problem has been solved. The second nav link was outside the container div in the single.php file. I think this problem only affects the black-n-white Theme.
Big thanks to Nicolas91, who was a big help and has a great site at freesoftwareworkshop {dot} com
Forum: Fixing WordPress
In reply to: How to track down an unclosed div tagThe problem has been solved. The second nav link was outside the container div in the single.php file. I think this problem only affects the black-n-white Theme.
Big thanks to Nicolas91, who was a big help and has a great site at freesoftwareworkshop {dot} com
Forum: Fixing WordPress
In reply to: How to track down an unclosed div tagThank you Nicolas.
Which file are you referring to? The single.php file has both nav divs inside the container div already. So does page.php, index.php, archives.php.
You must be talking about another file. Which one?
BTW, you’ve got a great looking site Nic. freesoftwareworkshop.com Is that a WordPress site?
Thanks very much for helping.
Forum: Fixing WordPress
In reply to: How to track down an unclosed div tagFound the extra closing div tag and removed it. Problem unresolved.
Nicholas suggested placing the sidebar div in the wrapper div. Which file do I do this in? I don’t see that kind of scripting in the single.php file.
Forum: Fixing WordPress
In reply to: Why is my sidebar underneath my post? I’m on a deadline for a clientCould pictures embedded in a post that are sized too wide be causing this?
Forum: Fixing WordPress
In reply to: Why is my sidebar underneath my post? I’m on a deadline for a clientThis is not a theme issue. I just changed to the default theme and there is still the same problem on individual post pages. In fact on those pages, the sidebar doesn’t show up at all.
In validation, one of these problem pages shows 2 errors:
Error Line 58, Column 10: ID “attachment_65” already defined
Error Line 100, Column 95: Attribute “aria-required” is not a valid attribute
Forum: Fixing WordPress
In reply to: Why is my sidebar underneath my post? I’m on a deadline for a clientI’ve uploaded all the original php files in my theme. The single.php, which I suspected too, has no unclosed div tags.
I can see in my page source code the orphaned </div> tag. It’s at the very bottom under the footer and right above the </body> tag. I’ll paste it in below. Does this help in any way identify where that div tag is?
Thanks everyone for your time with this.
<div id=”footer”>
Copyright © 2008 · Subscribe RSS Feed now
Powered by WordPress · Gray Lines Theme by Zack
</div>
<div class=”cle”></div>
</div>
</body>
</html>Forum: Fixing WordPress
In reply to: Why is my sidebar underneath my post? I’m on a deadline for a clientI did find an unclosed div tag in the footer and removed it. I also removed a widget with the image you mentioned with the unclosed img tag. The page now passes validation, but the problem isn’t resolved.
What would you do at this point?