Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error message re: php file when typing in urlHave you got a link to post for this domain?
Forum: Fixing WordPress
In reply to: Header File Hover Text ChangeYeah, Cufon does that. You can underline text on hover with Cufon, just not change the colors.
Have you looked at Google Web fonts instead of Cufon? You can get really nice custom fonts that ARE affected by CSS (colors, font-sizes etc). Have a look. It’s also a LOT easier to install than Cufon. 🙂
Forum: Fixing WordPress
In reply to: Anchors Don't Work1. Turn all plugins off
2. Check site for anchor links working?If working, then turn each plugin back on and check site after each one to help eliminate which plugin causes the issue.
If you turn all plugins off and still doesn’t work, try changing theme to default in order to rule out any theme-specific interferance.
Forum: Fixing WordPress
In reply to: AdSense ads not showing upIf you just opened an Adsense account and pasted code straight away – it can sometimes take a while for Google Ads to appear (I find the same issue as you). Give it a little time and ads should start appearing (as long as correct code has been implemented).
Forum: Fixing WordPress
In reply to: FontIn style.css:
.someclass { font-size: 12px; }You can change 12px to anything you want.
Forum: Fixing WordPress
In reply to: How does WP default to www or non-www?Check your ‘General’ in settings for the WordPress URL and the site URL settings.
Forum: Fixing WordPress
In reply to: Error message re: php file when typing in urlOpen up your index.php in your ROOT WordPress install:
eg, http://www.yourdomain.com/index.php
Make sure to ensure it is EXACTLY like this:
<?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define('WP_USE_THEMES', true); /** Loads the WordPress Environment and Template */ require('./wp-blog-header.php'); ?>Not having the <?php at the start for example can really mess everything up.
Hope this helps.
Phil
Forum: Fixing WordPress
In reply to: Header File Hover Text ChangeI take it you fixed this as it increases font size and color when hovering now?
Forum: Fixing WordPress
In reply to: Anchors Don't WorkOh ok.
This is weird. Never seen this before. Are you using any plugins that could interfere with links?
Forum: Fixing WordPress
In reply to: NextGen Gallery not loadingThe loading symbol has no class (which is why is appears at the top left):
<img alt="" src="http://www.officersfield.com/wp-content/plugins/nextgen-gallery/images/loader.gif">You can locate this in the files for NextGen somewhere, and personally, I would wrap it in it’s own div and give it some CSS:
<div class="loadingicon"><img alt="" src="http://www.officersfield.com/wp-content/plugins/nextgen-gallery/images/loader.gif"></div>then:
.loadingicon { margin: 50px auto 0 auto; height: 66px; width: 66px; }That’s what I’d do anyways. 🙂
Forum: Fixing WordPress
In reply to: NextGen Gallery not loading@theoadamson. Let me check…
To add links to other pages, in the ppost or page editor, there is a ‘link’ button from the editing tools.
Clicking this opens a menu but to link to another page, click:
‘link to another page’, then choose the page you want to link to.Forum: Fixing WordPress
In reply to: Anchors Don't WorkRemove the break codes once you’ve tested it – it’s for testing purposes only.
Ideally need to see the source from the WordPress version to diagnose the issue. Maybe pastebin that if poss?
Forum: Fixing WordPress
In reply to: Removing Date and Author from Post.The icons are hardcoded in the pages:
<div class="postdate"> <img src="http://samplesite.wirelessnewsplus.com/wp-content/themes/CarsMania/images/date.png"> September 12th, 2011 <img src="http://samplesite.wirelessnewsplus.com/wp-content/themes/CarsMania/images/user.png"> Hawkins </div>Use something like Notepad++ to ‘find in files’ date.png and user.png.
Forum: Fixing WordPress
In reply to: Anchors Don't WorkIt seems ok. It works on my end.
The only thing I could suggest is to add huge spaces between each secion in the code with
tags like this:You can see that it is not possible to definitively state how long the concrete should cure before tiling. <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <a name="although"></a><strong>Although it may not be possible to say for sure, what is a typical period for the concrete to cure?</strong> <br/> Many people suggest a minimum cure of 28 days under normal conditions - although, most thinset manufacturers say you may get away with 14 days using a premium latex modified thinset. There are risks though to tiling too soon - as the slab continues to cure, it will continue to shrink as it hydrates and the excess moisture evaporates. This places the tile and thinset under compressive stress. A premium thinset can better accommodate this stress and compressive force. <br/>Doing this seperates the content so that the browser window scrolls down and it’s easier to tell if it’s working or not. When I first checked your code in a html doc it looked like it was broken, however when I added the spacing in, I could easily tell it worked.
eg, anchor links in 1 paragraph is hard to test as there’s not huge amounts of content to scroll past. Does this make sense?