Josh Hardman
Forum Replies Created
-
You’re welcome ??
Forum: Themes and Templates
In reply to: Sidebar won't move despite changing CSSIt might be the WordPress install, but more likely it is iPage. I’m assuming it is hosted on a shared server, because in the past I’ve had the exact same problem with WordPress blogs on iPage which have been fine on other servers.
Forum: Themes and Templates
In reply to: Sidebar won't move despite changing CSSYou don’t want to download WP Super Cache until your website is ready to be cached. Otherwise the plugin starts caching things that are not finished.
Forum: Themes and Templates
In reply to: Sidebar won't move despite changing CSSThe holding page is still showing.
Might have something to do with WP Super Cache running.
Forum: Themes and Templates
In reply to: [Leaf] Header Image SizeEither target the img directly or add a class to the image like so:
<img src=”#” class=”headerImage” />
Then in CSS:
.headerImage{
width: 250px;
height: 250px;
}Forum: Themes and Templates
In reply to: Sidebar won't move despite changing CSSI can’t actually view anything except a holding page?
Add this to the .wpp-post-title class:
.wpp-post-title{
width: 138px;
display: block;
float: right;
}Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Changing the width on a pagetextarea{ width: 300px; height: 25px; }
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Box Height Font SizeThe text area are not inputs. These are textareas. You can target global text areas using:
textarea{ }
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] How to change color of send button?Try creating a custom class around the submit in the form generator:
<p class="contact-submit">[submit "SUBMIT"]</p>
Then, add CSS styles as such:
.contact-submit input{ width: 100px; height: 30px; background-color: #000; font-size: 13px; color: #fff; border: 1px solid #fff; border-radius: 5px; }
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Styling the Contact Form1. For rounded corners, simply add border radius to the input field style. For example:
input{ border-radius: 5px }
To edit the submit button, create a class and place it around the submit in the contact form generator, e.g.
<p class="contact-submit">[submit "SUBMIT"]</p>
Then, add some styles in your main stylesheet like:
.contact-submit input{ width: 100px; height: 30px; background-color: #000; font-size: 13px; color: #fff; border: 1px solid #fff; border-radius: 5px; }
2. The text titles inside the fields is called a watermark. This is easily added in the form generator:
[text* your-name watermark "Your name goes here..."]
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Changing the width on a pageIf it is the input fields that you want to change, then you can change the global input element. For example:
input{ width: 300px; height: 25px; }
This will adjust every input field on the site, so beware if you have other forms. If you want to directly change a set of fields, you will have to create classes for them which can be done from the Contact Form 7 admin panel.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Box Height Font SizeIn your main stylesheet you can control any form field height/font by simply using the form input CSS class. For example:
input{ width: 300px; height: 30px; font-size: 15px; font-color: #000; }
Bear in mind though, if you are using forms anywhere else on your website, these will also take the same styles. If you want separate form styles, you will need to create a class for the form fields which can be done in the Contact Form 7 admin menu, and simply add the style to your main stylesheet.
Forum: Themes and Templates
In reply to: Unable to set font size for this pageIt is being set in style.css, line 251 in the p{} element.
Forum: Fixing WordPress
In reply to: Footer Sidebar Encoded – Can't editIf any one could please set me in the right direction, it would be greatly appreciated!