charles.murphy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Image and Text Alignment…..NO COOPERATIONDon’t use tables for layout purposes. Use divs, and you can set a vertical align in your css.
Forum: Themes and Templates
In reply to: Blog TitleI could be wrong but, it looks like you don’t have anything set for a blog description. If that’s true, just remove the “|” before the php bloginfo(‘name’); inside the title tags.
Forum: Themes and Templates
In reply to: Tags place under postYou could set up id’s for the two spans. I would change the “categories” class name to “meta”, or whatever you wanted, and then give the two spans a class and id attribute. Just make sure whatever you rename the class isn’t already used. To find the css code, just do a ctrl+f, and search for .categories.
HTML:
<div class="entry-bottom"> <span class="meta" id="tags"><?php the_tags('Relevant tags: ',', '); ?></span> <span class="meta" id="categories"><?php the_category(', '); ?></span> </div>
CSS:
#tags{float:left;} #categories{float: right;}
And just change the .categories to .meta
Forum: Themes and Templates
In reply to: TwentTen OpacityTransparency with IE is sometime tricky, and to have it displayed correctly on all versions requires some “hacks”.
Probably one of the easiest ways to do it is to create a png image, with the transparency that you want, rather than using css to do it.
Forum: Themes and Templates
In reply to: Tags place under postDid you want one box around both, or two boxes total?
Forum: Themes and Templates
In reply to: Tags place under postDid you want one box around both, or two seperate boxes?
Forum: Themes and Templates
In reply to: Bug: Twenty ten and capsPlease post a link to your page.
Forum: Themes and Templates
In reply to: FancyBox loads site instead of imageYou will have to post a link to your site to get help.
Forum: Themes and Templates
In reply to: Tags place under postYou need to create different classes for each span, such as tags and categories. In your css file, you need to assign a float attribute to both, and have your tags class floated to the left, and categories class floated to the right.
HTML:
<div class="entry-bottom"> <span class="tags"><?php the_tags('Relevant tags: ',', '); ?></span> <span class="categories"><?php the_category(', '); ?></span> </div>
CSS:
.tags{float:left;} .categories{float: right;}
Forum: Themes and Templates
In reply to: Header shifted to the right when viewing in IEI usually use the xhtml transitional doctype.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
But if you follow the link to A List Apart, it will explain the different kinds of doctypes, and why they are important. As esmi said, it is recomended to create a child theme so that you don’t lose changes you made during an upgrade.
Forum: Themes and Templates
In reply to: Header shifted to the right when viewing in IELooks fine in IE 8, and compatability mode. You might want to try using a better doctype though, that may be causing the issue on older versions of IE.
Forum: Themes and Templates
In reply to: Removing "No Comment" and "Comment off"Remove the –> after your closing paragraph tag.
Forum: Themes and Templates
In reply to: Parse error: syntax error,If it works fine on your local server, but not on a hosted site, check to make sure you have the correct version of PHP running.
Forum: Themes and Templates
In reply to: Unwanted gap between H1 tag and textUsing this code:
h1{font:normal 16px arial;letter-spacing: 0.8px;height:100px;padding:0px 0px 100px 5px;}
Adds 100px padding below your h1. Try changing it to this:
h1{font:normal 16px arial;letter-spacing: 0.8px;padding:0px 0px 10px 5px;}
Forum: Themes and Templates
In reply to: Image size problemeThis is the code I’m seeing whenever I view your site:
<a href="<img width="185" height="185" src="https://www.nekson.fr/wp-content/uploads/2011/02/eiffel-185x185.jpg" class="attachment-185x185 wp-post-image" alt="Paris" title="Paris" />" class="fancybox"> <img src="<img width="185" height="185" src="https://www.nekson.fr/wp-content/uploads/2011/02/eiffel-185x185.jpg" class="attachment-185x185 wp-post-image" alt="Paris" title="Paris" />" alt="Paris" /> <span class="overlay"></span></a>
It should look like this:
<a href="https://www.nekson.fr/wp-content/uploads/2011/02/eiffel-185x185.jpg" class="fancybox"><img src="https://www.nekson.fr/wp-content/uploads/2011/02/eiffel-185x185.jpg" class="attachment-185x185 wp-post-image" alt="Paris" title="Paris" width="185" height="185" /></a>
I’m not sure how you are entering images into the theme, but hopefully that helps.