j09
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: SSL error for WordPress 4.7.2Your problem is mixed content. Your page loads over a secure connection
httpsbut yourCSSandJSfiles are linked usinghttpconnection.This is flagged by browsers and leads to “insecure” assets being blocked.
That’s why your page is loading with just
htmlwhen you use thehttpsversion of your site – because the other resources are blocked.Solution?
Configure your
SSLproperly and make sure you fix the mixed content issue by linking all of your assets usinghttpsinstead of justhttpForum: Fixing WordPress
In reply to: WordPress only saves when it feels like itGreat! I’m glad you got that sorted out! Thank you for sharing your fix!
Mark this as resolved in case some else runs into the same problem in the future
Forum: Fixing WordPress
In reply to: WordPress only saves when it feels like itYes, that can happen, admin pages can be cached if caching is not configured properly.
Since it’s private, there’s not much I can offer as I would just be guessing.
The only other thing I can think of is to check the response headers to get a hint at what might be responsible for caching.
Forum: Fixing WordPress
In reply to: WordPress only saves when it feels like itShare a link to your website if it’s not private.
Forum: Fixing WordPress
In reply to: WordPress only saves when it feels like itUnderstood, thank you for clarifying.
While you might not be using any caching plugins, some other caching solution may be at work.
A misconfigured Cloudflare account or inappropriate sever cache settings might be the reason.
other than that, I am out of ideas.
Forum: Fixing WordPress
In reply to: WordPress only saves when it feels like it@denravonska Sound like caching.
Purge the cache from any cache plugin you’re using and clear your browser cache too.
Forum: Fixing WordPress
In reply to: Change sizes and colours of site title and taglineForum: Fixing WordPress
In reply to: Change sizes and colours of site title and tagline@tracystone Thank you for providing the link
See if this works
.site-name { font-size: 80px; line-height: 1em; } .site-description { font-size: 30px; color: black; }Go to the theme customizer and look for the
CSSeditor there – if you’re on WordPress 4.7 or higher – then add the code there. If not, use a plugin to add custom CSS.Don’t add/edit CSS under the appearance tab, it will get overwritten with any theme update.
Let me know if you need more help
Forum: Fixing WordPress
In reply to: Images will not display correctly despite resizingHello @genmorris
Go read this: http://www.refreshyourcache.com/en/home/
If the images still have the same problem, then your server is serving cached images. You need to clear the cache of your server. Are you using any caching plugins?
Forum: Fixing WordPress
In reply to: Change sizes and colours of site title and taglineHey @tracystone
Please provide a link to your website.
Forum: Fixing WordPress
In reply to: Feature Photos and Blog Photos not showing upForum: Fixing WordPress
In reply to: Changed Theme – How To Change Image Width?This is most likely caused by the
CSSof the new theme.Yes, there might be a way to process all the images in bulk.
Please post a link to your website.
Forum: Fixing WordPress
In reply to: Blog Font To SmallYou’re welcome!
Forum: Fixing WordPress
In reply to: Blog Font To SmallSince you’re using WordPress 4.7
You can go to the theme customizer and find the
CSSeditor there.Add this code and replace the 12px with a value of your choice – like 14px or 18px etc…
Here’s the code:
body { font-size: 12px; }Forum: Fixing WordPress
In reply to: Blog Font To SmallThe following line is whet’s setting the font-size in you
CSSfont-size: 12pxit’s generally a good idea to stay away from “fixed” sizes and use relative sizes instead.
Anyways 12px is too small for my taste but that’s just personal preference.