paulruescher
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: can't get rid of hyphen after site titleCheck within the
<title />tags. It’ll most likely have something like <?php bloginfo(‘name’) – bloginfo(‘description’); ?>. Remove what you feel is necessary.Paul
Forum: Fixing WordPress
In reply to: No menu drag and drop in 3.4.1Check and see if there is a JavaScript error. What browser are you using?
Forum: Fixing WordPress
In reply to: Adding Extra Wide Images to PostLine 588 of style.css you have max-width: 100%, so the largest your images will be is the size of the parent that has a set width.
Paul
Forum: Fixing WordPress
In reply to: get backend functionality to front end with tinymceForum: Fixing WordPress
In reply to: White Screen after updating Codewere you editing the theme in Appearance > Editor?
Forum: Fixing WordPress
In reply to: wide page content in twenty-elevenassign a percentage-width to the #page div. Post a URL just so we can double check.
Forum: Fixing WordPress
In reply to: Missing Text in IE9this should help http://blog.ninanet.com/2011/04/29/cufon-and-ie9
Forum: Fixing WordPress
In reply to: Add image to Login pageForum: Fixing WordPress
In reply to: Adjusting Content AreaLine 108 of your style.css file. You’ll have to shrink your #main.col-left div (line 106)
Forum: Fixing WordPress
In reply to: Remove Page Title from Static Front Page<?php if(!is_home() || is_front_page()) { ?> <h2><?php the_title(); ?></h2> <?php } ?>Would be better. That way if you change your homepage, you won’t have to go and manually change the display: none; declaration
Forum: Fixing WordPress
In reply to: Is it possible to have a sticky post at the top of a categorythis would be a start
http://wordpress.org/support/topic/custom-sticky-post-for-each-category?replies=7
Forum: Fixing WordPress
In reply to: How to submit only my home page to search engine…try something like
<?php if(!is_home() || !is_front_page()) { echo '<meta name="robots" content="noindex,nofollow"/>'; } ?>Forum: Fixing WordPress
In reply to: Categories Not WorkingI think your problem is that you have only one post in the ‘Benefits of Seaweed/Kelp’ category.
http://www.eseaweednutrition.com/category/benefits-of-seaweed-kelp/ is your category page, which lists every post in the ‘Benefits of Seaweed/Kelp’ category. This will use category.php (most likely).
http://www.eseaweednutrition.com/2011/11/10/seaweed-nutrition-lose-weight/ is a single post and will most likely use single.php
The category template is using cufon font replacement to replace an H2, and on the single template, there is no cufon.
Forum: Fixing WordPress
In reply to: YouTube Video Covering Dropdown Navigation Menuhttp://www.scorchsoft.com/news/youtube-z-index-embed-iframe-fix
Try that and set z-index on the elements in question and you should be good as gold
Forum: Fixing WordPress
In reply to: Control date formatAre you using a plugin or a widget or something called Custom Popular Posts?