Daniele De Santis
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Add Custom CSS] Css only apply in incognito mode but not normal chromeThis doesn’t seems to be a plugin issue, I suppose it has to do with your browser cache.
Could you please provide a link to the page where the issue is occurring?Forum: Plugins
In reply to: [WP Add Custom CSS] Bullet fix for all Posts and FAQHi,
something, this should work:.post .single-post-content ul li,
.post .single-post-content ol li,
.faq .single-post-content ul li,
.faq .single-post-content ol li {
margin-left: 39px;
}It doesn’t affect widgets but only the post/faq content
Daniele
Forum: Plugins
In reply to: [WP Add Custom CSS] Scroll on page adminHello,
I can’t replicate your issue.
The scroll of my pages and custom post types (such as courses and lessons) is not affected.Could you list the plugins you are using?
Forum: Plugins
In reply to: [WP Add Custom CSS] CSS Get’s Crossed out on my pagesHi,
all I can see in your page specific css isheader.headerheader--brand{border-color:#0ba} .wpb_animate_when_almost_visible{opacity:1}and it is being applied correctly
Forum: Plugins
In reply to: [WP Add Custom CSS] How to add CSS to all single posts?Hi,
thank you 🙂You can use the main custom css stylesheet (from the plugin’s settings page) and target posts using the
.post
class.You can learn more about post class here:
https://codex.wordpress.org/Function_Reference/post_classBest,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Site wide or main css not working for me.Hi Dave,
no problem, this is the path:/?display_custom_css=css
Best,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Site wide or main css not working for me.Hi Dave,
I believe it has to do with the caching plugin you are using and the query string the plugin main css file is using (see http://docs.wp-rocket.me/article/56-remove-query-string-from-static-resources)You should exclude the main custom css file from the Async CSS option:
http://docs.wp-rocket.me/article/977-exclude-files-from-async-cssBest,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Custom stylesheet not loading?Hi,
css added using the metabox on post/page/custom-post-type is not applied using a stylesheet, but a<style> .. your css yere </style>block in the <head> of the document.
The stylesheet with id “wp-add-custom-css-css” is used only for css rules added in the plugin settings page.
In your screenshot I can’t see the full content of your <head>, could you provide one where all the content is visible?
Thanks,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Deleted Custom CSSHi,
I’m sorry, but just like other metaboxes, page/post custom css is saved only when you update your post.Forum: Plugins
In reply to: [WP Add Custom CSS] Custom stylesheet not loading?Hello,
have you checked your page source to see if there’s a <style> block with your css rules your document head?Forum: Plugins
In reply to: [Manage TinyMCE Editor] Not showing in a new lineHello,
the current plugin version lets you add button to the first bar only – TinyMCE Editor can have up to 4 bars.
In the next update you’ll be able to add a button to a specific bar.Best,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] CSS Overwritten – flashed brieflyHello,
I can’t find that css in your page source, it seems that you’ve removed it.
I can only assume that your theme or another plugin were overriding your custom css rules, in that case a more specific css rule may help, something like:body.page-id-112 { background-image: url("http://006.6c2.myftpupload.com/wp-content/uploads/2017/07/cropped-mbadam.jpg"); background-color: #cccccc; }If this still gets overridden you could try this:
body.page-id-112 { background-image: url("http://006.6c2.myftpupload.com/wp-content/uploads/2017/07/cropped-mbadam.jpg") !important; background-color: #cccccc !important; }Best,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Migration from Page Specific Stylesheets pluginYou could try to install WP Add Custom CSS, run a query in your db replacing the previous meta key “pss_style” with the new one “_single_add_custom_css”, then you could remove the old plugin.
Please not that this has not been tested, so backup everything and try it in a test environment first!
Best,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Custom CSS is not available for buddypress groupI’ve investigated your issue, you can easily add custom css to a specific BuddyPress group using its body class in the main custom css box.
BuddyPress groups have a
.group-name-of-the-groupclass (you can easily find your group’s classes by inspecting your html code).
Target your group writing something like:
.group-name-of-the-group aside { background-color:#fff; }Best,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Nothing changes on my css for a pageNo problem 🙂