Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Drop down menus not appearing in IEFor the menu issue, try adding a z-index to the menu as IE sometimes hides content behind other elements. The sub-menus ARE being outputted in the HTML source, it’s just not being seen.
Forum: Fixing WordPress
In reply to: Drop down menus not appearing in IEI notice the paths to images use the IP instead of the domain.
Also, IE seems to shift the whole site to the left instead of centred.
Validate all code and see if problem still persists.
Forum: Fixing WordPress
In reply to: Facebook Like buttonNo problem.
Forum: Fixing WordPress
In reply to: Removing Date and Author from Post.Try looking at single.php in:
‘Appearance’ –> ‘Editor’
And you’ll see the location for date and author in there (as php call).
The date will appear something like:
<?php the_time('d') ?>and the author will be like:<?php the_author(); ?>Deleting these (or the whole containing div) will remove from your posts.
This is dependant on which theme you use.
Forum: Fixing WordPress
In reply to: Anchors Don't WorkNo, the ‘and’ was added by mistake and now corrected.
You can use pastebin: http://wordpress.pastebin.com/ to upload the code for others to check.
Forum: Fixing WordPress
In reply to: Anchors Don't WorkPersonally, I’d make sure your anchor tags are all correct as missing one out will break content from that point onwards.
I’ve used 100+ on a single page before with WordPress and it worked great.
We’d need to see the page with problems in WordPress (not the Dreamweaver example) to check if there are errors in the html before anyone can give advice.
Forum: Fixing WordPress
In reply to: Ads wont appearTry looking in Widgets section.
Forum: Fixing WordPress
In reply to: NextGen Gallery not loadingYou have duplicated code! See below for the html output source (you’ll see all in one SEO appearing twice amongst other things). You probably have wp_head twice somewhere:
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: NextGen Gallery not loadingI notice that if I right click on the black screen with the loading icon, it appears – otherwise it just hangs.
Forum: Fixing WordPress
In reply to: styles for WYSIWYGYou could try editing colors-fresh.css in admin folder, but keep a copy as when you upgrade WP, you will need to restore it back again.
Forum: Fixing WordPress
In reply to: Facebook Like buttonIt depends where you want it:
If you want it on posts: Add to ‘single.php’
If you want it on pages: Add to ‘page.php’
If you want it in the header of every page: Add to ‘header.php’
If you want it in the footer of every page: Add to ‘footer.php’
If you want it in the sidebar: Paste it in a text widgetIt really all depends on where it is. It’s impossible to answer this fully as we cannot see your theme files or website.
All above (except text widget) can be found in :
‘Appearance’ –> ‘Editor’
Forum: Fixing WordPress
In reply to: Image Map in PageGet out of here, this forum is for ‘proper’ WordPress users 😉
Forum: Fixing WordPress
In reply to: Menu Broken: Items disappearing/moving/changing typeYou can’t change suhosin yourself and may need to contact the host. It may not be that causing the issue, but it’s worth a try. 🙂
Forum: Fixing WordPress
In reply to: NextGen Gallery not loadingCheck you have this in all header files (you can delete the comments between the php and wp_head() ).
<?php /* Always have wp_head() just before the closing </head> * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to <head> such * as styles, scripts, and meta tags. */ wp_head(); ?>Forum: Fixing WordPress
In reply to: Absolute Positioning/Sidebar IssueNo problem fella. Looks good now 🙂