Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Whassahappening?NOt sure, but try:
1. Reuploading wp-includes folder.
2. Change theme to TwentyEleven and try again.
Forum: Fixing WordPress
In reply to: Inserting a static Image under the menu barGlad I could help.
Forum: Fixing WordPress
In reply to: How can I switch header with navigation?Sure, change:
#logo { position: absolute; right: 0; top: 115px; }and
#topSocial { left: 0; position: absolute; top: 120px; }in style.css.
Forum: Fixing WordPress
In reply to: Can't access my blog from google;seems blockedServer is down. Contact your host.
Forum: Fixing WordPress
In reply to: Inserting a static Image under the menu barTry this:
1. Backup style.css
2. Paste this as ‘body’ in style.css:
body { background: url("images/Bottom_texture.jpg") no-repeat scroll -102px top #fff; color: #262626; margin: 0; min-width: 1000px; padding: 0; }Granted this is not the best way of doing it, but looks ok through my Firefox this way.
Ideally, you don’t want to be doing this as a body background image (you want it adding in HTML after the menu and styled in place). To do this, you need to trim the image as there is a lot of whitespace and you need to cut the image out to do it the right way. It’s the only way to guarantee cross-browser consistency.
Phil
We need a link to your site to find a solution. It doesn’t do this on my sites using CF7.
Forum: Fixing WordPress
In reply to: Can't make a welcome page!Once you have created a new page, go to ‘Settings’ -> ‘Reading’, choose ‘static page’, select the new page you created from drop-down and then save.
Forum: Fixing WordPress
In reply to: Can't figure out why my 'Home' link has a capital H!!!Glad I could help. 🙂
Forum: Fixing WordPress
In reply to: full-width header and footerThe image in there will be 960px wide because that’s how big the image is. What you’ve done today is made the width flexible, so a background image isn’t going to look good now as the header will alter based on the size of the screen, but the image won’t.
If you change the image to a colour, it should look better.
Forum: Fixing WordPress
In reply to: Display menu on home page onlyAdd this to header.php:
<?php if (is_home()) { ?> Place menu code in here. <?php } ?>Forum: Fixing WordPress
In reply to: full-width header and footerDid you change:
#logo {
width: 100%;
}as this is the container holding the logo image. By default, it is 960px so you need to change this as well.
Forum: Fixing WordPress
In reply to: WordPress mangling htaccess file (500 server error)How bizarre…
Try adding your working one back in there and locking it down so it can’t be changed, ie, chmod 644.
Worth a go.
Forum: Fixing WordPress
In reply to: WordPress mangling htaccess file (500 server error)Sure. Do not underestimate the power of htaccess – it can destroy worlds. 😉
Forum: Fixing WordPress
In reply to: Landing Page is the Post page in responsive cant sort outWhy don’t you paste what you put in the post into a new Page and then change the setting to use that as a static page?
Forum: Fixing WordPress
In reply to: WordPress mangling htaccess file (500 server error)Make sure anything you’ve custom-added to the the htaccess file is OUTSIDE of:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressAnything inside this can be overwritten by WordPress