Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Browser Compatibility issue with Internet ExplorerCreate a new stylesheet for IE and add it’s own styling to get it like the other browsers.
Forum: Fixing WordPress
In reply to: Only allowed few active pluginsAlso, check with your host and get them to add the following:
suhosin.post.max_vars = 5000
suhosin.request.max_vars = 5000It’s WP running out of memory. This can mean limited number of menu items, image resizing not working and number of plugins concurrently.
Forum: Fixing WordPress
In reply to: full-width header and footerYou have to change/add a few widths here (BACKUP style.css first!):
#container { width: 100%; } #primary { width: 535px; } #content { margin-left: auto; margin-right: auto; width: 960px; } #logo { width: 100%; }This will pretty much get you where you want (full width header and footer, rest of site in container). You may need to tweak it (eg, #feedarea dl width etc, Logo image is currently 960px etc), but hopefully this helps you out.
Phil
Forum: Fixing WordPress
In reply to: menu appears twiceheader.php in your theme file / Appearance -> editor
Forum: Fixing WordPress
In reply to: Create a Page that include a templateI’d personally trying doing it like this:
<?php query_posts('category_name=blog2&showposts=10'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a> <?php the_excerpt() ?> </li> <?php endwhile; endif; ?>Showposts can be set to whatever you like.
Although not sure how you are displaying the posts in this template…
Forum: Fixing WordPress
In reply to: Want to show ad on home page onlyNo problemo. 🙂
Forum: Fixing WordPress
In reply to: Site not on Google for two main keywordsThis is the wrong forum to be asking this. SEO is nothing to do with WordPress troubleshooting. Try an SEO forum for more helpful advice.
That said, switching the site to WordPress from HTML will only have affected it if the content/meta/sitemaps/page titles/urls changed.
Forum: Fixing WordPress
In reply to: Blog Content Archive Page displays side-by-sideWell the theme you chose does list them in that style.
Are there any options in the theme options (back-end) to allow this? It can be done, but there are a few CSS changes you would need to make eg, .genesis-grid-even, .genesis-grid-odd (line 787)
Remove: width: 48%;But there are quite a few more changes needed to make them match the top post.
Phil
Forum: Fixing WordPress
In reply to: Front Page is not showing up completelyThe validator is really a guide to work towards – and can help with broken sites/content sometimes eg, unclosed divs.
If you check BBC.co.uk website in the validator – it still shows errors (check). Ideally, you want all your code and CSS to validate, but sometimes you can’t do anything about one or two eg, facebook like box sometimes throws errors.
Forum: Fixing WordPress
In reply to: Front Page is not showing up completelyDeactivate WP-auto-pin and I’m sure the site will look ok again. 🙂
There is conflicting CSS in there for the background color.
Phil
Forum: Fixing WordPress
In reply to: Create a Page that include a template1. You don’t create page templates by creating a page and calling it template.php – you need to create a PHP file called template.php and upload it to the theme folder of your theme.
2. You then create a page in WP admin, and choose the template from the drop-down menu of available templates on the right.
3. You then add the new page to your menu’s etc like a normal page.
If you read the link Esmi mentioned, you will learn how to correctly set up a custom template. Searching on Google also helps as there are lots of examples and tutorials. It’s always better to learn these things instead of people doing them for you – you will learn a lot more doing it this way.
Forum: Fixing WordPress
In reply to: Want to show ad on home page onlyMy guess is that the Woo Ads widget will appear on every page by default.
You have two options:
1. Use the plugin I sent you, replace the Woo Ads widget with it, paste the code I sent you into it and save. That ad will only appear on the homepage.
2. If you want to continue using the Woo Ad widget, use another plugin called widget logic, install it, then in the widgets section where the Woo Ad plugin is (on the right), you’ll see a place to enter text for the widget logic, and add in there:
is_home()Forum: Fixing WordPress
In reply to: Want to show ad on home page onlyThe code I gave you would need to go into a PHP template.
It’s the only way really of doing it as you cannot do this through widgets as they don’t like PHP unless you use a plugin like this
.Forum: Fixing WordPress
In reply to: how do i restore visual mode to pages? aaaaghhhhPersonally, I would re-upload wp-admin and wp-includes folder. Make a backup first just incase.
Failing that, deactivate your plugins and check again…
Forum: Fixing WordPress
In reply to: Can't figure out why my 'Home' link has a capital H!!!Not sure, but if you locate style.css (Appearance -> Editor), find this (it’s on line 159):
#top div.main-nav a
and add in this in:
text-transform: lowercase;So the finished article looks like:
#top div.main-nav a { border-right: 1px dotted #666666; color: #EEEEEE; display: block; line-height: 15px; padding: 0 1em; text-decoration: none; text-transform: lowercase; }That should do the trick!
Phil