Phil
Forum Replies Created
-
What I do on every one of my wordpress sites is tick ‘hold comment in queue if 1 link is found.
This prevents anything with a link from being auto published and requires approval. Also make sure you have Akismet turned to to help combat spam.
Forum: Fixing WordPress
In reply to: Please help me with the slug problemCheck to make sure that ‘fashion’ doesn’ already exist in trash on one of your pages. Anything in trash for posts or pages is likely to remain until it’s deleted permanently.
Forum: Fixing WordPress
In reply to: No link for dropdown buttonI just answered this here:
http://wordpress.org/support/topic/navigation-issue-2?replies=4Forum: Fixing WordPress
In reply to: Admin bar not showing despite common fixesOf course.
You can remove this via the .htaccess file in the root of your install:
RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]…obviously change the domain to your own.
Hope this helps.
Phil
Forum: Fixing WordPress
In reply to: Twenty Eleven 1.2 Theme and IE not playing nicelyI also notice you have a ton of flexible widths – but the site isn’t a flexible structure.
eg:
.left-sidebar #primary { float: right; margin: 0 0 0 -26.4%; width: 100%; }Personally, I would convert these to pixels for a far more stable design across browsers.
Phil
Forum: Fixing WordPress
In reply to: Twenty Eleven 1.2 Theme and IE not playing nicelyWow. Ok.
Maybe try changing:
#page { margin: 2em auto; max-width: 1000px; }to
#page { margin: 20px auto; width: 1000px; }Forum: Fixing WordPress
In reply to: Twenty Eleven 1.2 Theme and IE not playing nicelyDoes IE ever play nicely??
Forum: Fixing WordPress
In reply to: Admin bar not showing despite common fixesDepending on your server, having a ‘www’ or not before the url makes a difference.
Forum: Fixing WordPress
In reply to: Admin bar not showing despite common fixeswyndom is on the right path. I also had this issue once, and by correcting the wordpress address and site address url’s, you’ll find it should fix the issue.
This happens often when moving a copy of WordPress but it’s an easy fix.
Forum: Fixing WordPress
In reply to: My title in my browser title bar is weirdIf you’re using a static page as the homepage, try removing the page title.
Also, make sure in your header.php:
<title><?php bloginfo('name'); ?> | <?php is_home() ? bloginfo('description') : wp_title(''); ?></title>Forum: Fixing WordPress
In reply to: Navigation IssueI know, I know. 😉
Phil
Forum: Fixing WordPress
In reply to: Navigation Issue1. Try opening ‘Menus’ from admin back-end.
2. Instead of a ‘Page’ or ‘Category’ as the parent link, choose a Custom Link.
3. Make the url a ‘#’
4. Enter the label as the name of the parent. eg, I’m new
5. move the Menu item to your desired point and move all drop downs underneath it.
5. Save.
Forum: Fixing WordPress
In reply to: Problems with themeGlad it’s sorted. 🙂
Forum: Fixing WordPress
In reply to: Cannot Install/Update Plugins Since Upgrade to 3.2I had same problem again. Came here and found I had answered it myself. Lol
Forum: Fixing WordPress
In reply to: Transparent Image BackgroundYour stylesheet can be accessed from:
‘Appearance’ –> ‘Editor’
…and it should open up your stylesheet (style.css).