Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: All Page Band/Band Text not updatingAre you running a caching plugin on the site? If so it’s that cache you’ll need to clear.
Forum: Fixing WordPress
In reply to: Center main navYou’ve set a min-width on the navigation menu:
ul#main-nav { min-width: 696px; list-style: none; }Forum: Fixing WordPress
In reply to: Center main navLooks centred now? Did you fix it?
Forum: Fixing WordPress
In reply to: WordPress changes take too long to updateCould be a hosting problem. If you’re on a shared hosting package you may have noisy neighbours hogging the resources.
Forum: Fixing WordPress
In reply to: Blurry textLooking at your site the Email us box does indeed look blurry on my iOS simulator. Looks fine In everything else I can throw at it including my Android phone.
Maybe take it up with your commercial theme’s vendors. No-one here has access to your theme. Your paid-for support can be found here:
Forum: Fixing WordPress
In reply to: Recent update messed a few things up?Are you using a membership plugin of some kind?
Forum: Fixing WordPress
In reply to: Cannot align images centered with Manifest themeThere’s no aligncenter class in your theme’s style sheet.
http://codex.wordpress.org/Styling_Images_in_Posts_and_Pages
Forum: Fixing WordPress
In reply to: Cant Disable WP PageIf you simply want to remove the site, speak with Melbourne IT and ask them to do it for you. If they won’t/can’t, ask for FTP/Phpmyadmin access and you’ll be able to do it yourself.
Incidentally, you can’t talk directly to WordPress since such an entity doesn’t exist. When you install WordPress in your own web space, you are the boss.
You now need to remove those update_option lines.
Forum: Fixing WordPress
In reply to: How to make Top Ad Banner responsiveYou need to provide a link to your site and tell us the theme you are using.
Forum: Fixing WordPress
In reply to: Captured 404 URLSs that need to be processedFrom the 404 Redirected plugin description:
404 Redirected records all URLs that users have visited and allows the admin to easily create 301 and 302 redirects to valid pages on their site. Redirects can also be created based on the best possible match for the URL the visitor was most likely trying to reach
So the plugin is reporting 404 errors and invites you to do something about them.
Forum: Fixing WordPress
In reply to: External links are having wrong pathAre you including http:// at the beginning of the external link?
You only need to put the code in the child theme’s functions.php, you shouldn’t really touch the parent’s code at all.
There doesn’t seem to be a space in between
<?phpandupdate_option...on the first line. There should be one. In fact you’re better off with a carriage return. Also make sure you aren’t opening PHP twice in the file, you don’t need a second opening<?phpWhen posting code, use the code button to make sure the code formats correctly.
Forum: Fixing WordPress
In reply to: Adding Spaces between words or to the leftThere has to be an easier way.
There is. Use an unordered list. I just browser edited your page, removed all the spaces and created an unordered list like this:
<ul> <li><strong>Home </strong> – Home Page</li> <li><strong>About Us</strong> – Information about us and Testimonials</li> <li><strong>Communication</strong> – Anything to do with communication</li> <li><strong>Workplace </strong>– Anything to do with the workplace</li> <li><strong>Self-Reflections</strong> – Personal thoughts about self and observations</li> <li><strong>The World</strong> – Items on Sport, Justice, Media, etc. More main topics to come</li> <li><strong>Contact </strong>– Send us information or topics you believe will add value</li> </ul>The result looks like this:
Forum: Fixing WordPress
In reply to: How do I Add Text In The Source Code?Well, you said:
I want to add text in the source code
so to do that, in a text editor, open up the theme template that you want to comment, and enter your text.