Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Want to show ad on home page onlyHi,
You can use something like this:
<?php if (is_home()) { ?> Place your HTML or other code here for homepage only. <?php } ?>Forum: Fixing WordPress
In reply to: no comment notificationHave you checked you have correct email settings in wp-admin?
Forum: Fixing WordPress
In reply to: Youtube playlistsGoogle it, that’s what I did.
Forum: Fixing WordPress
In reply to: Youtube playlistsNever tried it but there are a few that pull in videos from channel:
Forum: Fixing WordPress
In reply to: My top slider stops expanding once it reaches around 14 inches (!)Add the CSS into flexslider.css (line 29)
Forum: Fixing WordPress
In reply to: My top slider stops expanding once it reaches around 14 inches (!)‘Appearance’ –> ‘editor’
Style.css. Search for .flexslider .slides img
Forum: Fixing WordPress
In reply to: My top slider stops expanding once it reaches around 14 inches (!)(hell, made me click!)
Actually, that makes me sound gay…
Forum: Fixing WordPress
In reply to: My top slider stops expanding once it reaches around 14 inches (!)Lol @ title (hell, made me click!)
Anyway, your image is only 1535px anyway, so it will only go as big as that.
Saying that, you can use some neat CSS3 to make it bigger (past the max size of the image, it will slightly pixelate), by adding in this:
.flexslider .slides img { display: block; max-width: 100%; width: 100%; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; }Give that a whirl. (Only supported by CSS3 browsers)
Forum: Fixing WordPress
In reply to: Help! Please! I made a new page but it doesent showCheck this:
In ‘Appearance’ -> ‘Menus’
Make sure the top left drop down (Theme Locations) is not empty, if it is, choose your menu and hit save.
Forum: Fixing WordPress
In reply to: How do I change the size of the margins on my website?It is similar, yes.
Forum: Fixing WordPress
In reply to: Changing Header ColorNo Problem, glad I could help.
Forum: Fixing WordPress
In reply to: Trouble with changing fonts!!!Open ‘Appearance’ -> ‘Editor’ in the wordpress admin,
It should automatically open style.css, you need line 25:
#outer { color: #FFFFFF; font-family: Arial,Helvetica,sans-serif; font-size: 12px; margin: 0 auto; width: 968px; }The font-family controls the font for normal text on pages / posts. This is what you want to change.
Forum: Fixing WordPress
In reply to: Changing Header ColorYour site looks like it’s cached through Cloudflare.
You will need to clear the cache for the changes to update.
Forum: Fixing WordPress
In reply to: Several How-To QuestionsFor the latter, have a look via ftp into your themes folder, as all page templates sit in there.
If they ARE in there but still not showing as an option on the page edit screen, switch to the default theme, then switch back and see if that resolves it.
If the contact page template is missing from the theme folder, then you know you need to add it back from a backup / theme zip.
Forum: Fixing WordPress
In reply to: Changing Header ColorOpen style.css.
The part you’re looking for is not too far from the top, you’ll see:
#header { border-bottom: 0 solid #EAEAEA; height: auto; padding-top: 5px; position: relative; }Just change it to:
#header { border-bottom: 0 solid #EAEAEA; height: auto; padding-top: 5px; position: relative; background-color: red; }That should be it!