Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem: HTML is stripped outIf you can post normally to WordPress and the problem only arises when you use Chimp Rewriter, I think it’s safe to assume it’s Chimp that’s the cause of the problem, despite what the tech support says.
Forum: Fixing WordPress
In reply to: There are no sidebarsYou need to include as much information as possible. It’s difficult to answer your question otherwise.
Forum: Fixing WordPress
In reply to: Problem: HTML is stripped outNo but when you say you’re importing from it, what does that?
Forum: Fixing WordPress
In reply to: Problem: HTML is stripped outHow does the import happen. What’s the bridge between Chimp and WordPress?
Forum: Fixing WordPress
In reply to: screen full of gibberishThere should be a menu in your WordPress Dashboard. Lots of details on the W3 total Cache page:
Forum: Fixing WordPress
In reply to: Removing unwanted image bordersIf you want to remove the default border from more than one image, you may be better off creating a new class and then applying it to those images you want to be borderless.
So, in that plugin:
.no-border { border: none; }Then when you add images, simply add the class:
<img src="yourimage.jpg" class="no-border">Forum: Fixing WordPress
In reply to: Removing unwanted image bordersThis is what I think you should do. Install a plugin like this:
https://wordpress.org/plugins/simple-custom-css/
You can then add CSS rules in there that won’t be overwritten on theme updates. Install the snippet of CSS I posted that way.
Forum: Fixing WordPress
In reply to: Removing unwanted image bordersIdeally you should be doing this in a child theme. However, if you place that rule I posted at the end of your main stylesheet, it will override the rule above it.
Forum: Fixing WordPress
In reply to: Use posts as productsI think the majority of WordPress eCommerce plugins use custom post types for products. Most of them also have the ability to use multiple payment options.
Lots listed here:
Forum: Fixing WordPress
In reply to: Removing unwanted image bordersThe CSS rules you’ve posted are from the main stylesheet, but they’re being replaced by those in colors/dark.css I referred to above.
If you want to remove the border around that one image, use this:
.wp-image-738 { border: none; }Forum: Fixing WordPress
In reply to: screen full of gibberishI think the problem may be W3 Total cache misbehaving. From your site:
Page Caching using disk: enhanced Database Caching 11/590 queries in 0.184 seconds using disk: basic Object Caching 3155/4721 objects using disk: basicDoes W3 Total cache also need upgrading, or maybe re-configuring?
Forum: Fixing WordPress
In reply to: Problem: HTML is stripped outCan you post an example of what comes out of Chimp Rewriter? Maybe post it at pastebin.com then put the link in here.
Forum: Fixing WordPress
In reply to: Removing unwanted image bordersI’m not sure what you’re trying to say. Putting a 0px border around paragraphs has nothing to do with the OP’s original query.
A 0px border will have a height of 0px. So that’s the same as not having a border.
Forum: Fixing WordPress
In reply to: Removing unwanted image bordersThat CSS would create a red border around every paragraph on the site, except since it’s 0px, no-one would see it? What did you expect it to do?
The CSS you need to look at is this:
/* Images */ .wp-caption { background: #2c2c2c; } .wp-caption .wp-caption-text { color: #999; } .wp-caption .wp-caption-text:before { color: #999; } /* Image borders */ img[class*="wp-image-"], #content .gallery .gallery-icon img { border-color: #2c2c2c; } .wp-caption img { border-color: #2c2c2c; } a:focus img[class*="wp-image-"], a:hover img[class*="wp-image-"], a:active img[class*="wp-image-"] { background: #2c2c2c; border-color: #444; } .wp-caption a:focus img, .wp-caption a:active img, .wp-caption a:hover img { background: #0f0f0f; border-color: #2c2c2c; }It’s from your theme’s colors/dark.css file.
Forum: Fixing WordPress
In reply to: Image PreloadingWP displays full images reduced in size in galleries instead of true thumbs.
Do you mean your theme is using the full image sizes as thumbnails, relying on browser scaling to display them thumbnail size? If that’s the case, that’s not right. WordPress should create a number of reduced sized images from your original upload to display them where appropriate, such as gallery thumbnails.
What’s your site URL so we can see the thumbnails?