Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Twenty Fourteen – Image IssuesIn your child theme CSS, apply a background color to your slider:
.slider-viewport { background-color: #fff; }Forum: Fixing WordPress
In reply to: Images showing up smaller then they should be…Those images are contained within a
<div>that has a class.entry-content. In your CSS, elements of that class have a max-width of 474px. Images within the class.entry-contentare set to display at width 100%. So 100% of 474px = 474px. So that’s the width at which the images are being displayed.Forum: Fixing WordPress
In reply to: Text Not Aligning Properly around picture on Word WrapYou need to supply a URL to where we can see the problem.
Forum: Fixing WordPress
In reply to: Full Width Slider Images Stopped WorkingSo, if the server has failed to write to disk, the first thing to check is file/ownership permissions on the wp-content/uploads directory tree.
Forum: Fixing WordPress
In reply to: Full Width Slider Images Stopped WorkingWhat happens if you just upload an image into the media library.
Forum: Fixing WordPress
In reply to: Full Width Slider Images Stopped WorkingLooks like images 1 and 3 are zero byte sized. It’s an indication that something went wrong when you uploaded them. I’d suggest checking your file/ownership permissions on the parent directories.
Forum: Fixing WordPress
In reply to: http://wordpress.org/plugins/woocommerce/This blog post seems to be the answer. It’s not a drop in solution, you’ll have to get your hands dirty in a code editor:
http://imdev.in/woocommerce-how-to-get-total-sales-of-all-products-number/
Forum: Fixing WordPress
In reply to: image aligns left when i picked centerYour theme, Manifest, doesn’t include the default WordPress image classes. So, as @respectyoda has pointed out, you need to add some CSS by using either a Custom CSS plugin or a child theme. The custom plugin is probably going to be the easiest route.
You can find your required classes here:
http://codex.wordpress.org/Styling_Images_in_Posts_and_Pages
Add the top block of code to the Custom CSS plugin edit page.
As for your p1 and s1 classes, you don’t seem to have any accompanying rules in your stylesheet, so they’re not doing anything. You may as well remove them.
Forum: Fixing WordPress
In reply to: unwanted references to html tagsLooks like you’re using a modified TwentyFourteen theme. Ideally you should be making changes in a child theme.
On (or around) line 68 of comments.php in your theme you’ll find this:
<?php comment_form(); ?>change it to this:
<?php comment_form(array('comment_notes_after' => '')); ?>Forum: Fixing WordPress
In reply to: How do I adjust the right side of mmy border?Which text in particular?
Forum: Fixing WordPress
In reply to: WordPress changes take too long to updateNo, what I meant was, wherever you host your three sites, if you’re on shared hosting, there may be 100+ other customers all running three sites.
Forum: Fixing WordPress
In reply to: How do I adjust the right side of mmy border?Dashboard -> Appearance -> Customize – > Colors -> Background Color
Set it to whatever you desire.
Forum: Fixing WordPress
In reply to: php issueDid you have PHP short open tags enabled on the old server but not on the new?
Forum: Fixing WordPress
In reply to: php issueReply posted here instead:
http://wordpress.org/support/topic/php-issue-8?replies=3#post-5884344
Forum: Fixing WordPress
In reply to: Center main navIt’s embedded in the header of your site with a collection of other CSS rules. The comment above them all is this:
<!-- Options Panel Custom CSS -->I reckon that’s a Custom CSS plugin.