Can't save & publish the changes I'm making to CSS
-
I’m trying to customize my site using the Chrome developer tools, but when I make the changes that I like, the customizer doesn’t allow me to save and publish those changes. Any thoughts?
The blog I need help with is: (visible only to logged in users)
-
The site presets seem to be making my images darker by fiddling with the opacity and I want to change that.
-
The site presets seem to be making my images darker by fiddling with the opacity and I want to change that.
-
-
Looks to be up to date. Says Version 61.0.3163.100. I’m on a mac if that makes a difference.
-
Thanks for that information. I do not provide CSS editing help but don’t despair as Staff automatically assist with CSS editing threads as soon as they can.
-
-
-
Hi try adding this to your blog.
This will remove the opacity from the images.
0 means no opacity,
1 means 100% darker.
So choose the number as per your need..has-background-cover .overlay {
opacity: 0;
} -
Thanks for the help! That did the trick. If you’ve got time for another, I’ve also been trying to get the “entry titles” to be left justified rather than over on the right. I can’t figure out where to find that in the coding.
-
Hi @joshtobiessen, I’m seeing your post and page titles left aligned. Can you point me to where this is happening?
-
-
hi @joshtobiessen try adding this CSS. Add this to the end of your CSS file.
#primary-header .entry-title{
width:100%;
text-align:right;
} -
@joshtobiessen, I use the web inspector built into my browser to find the relevant CSS. If you are not familiar with the web inspector in your browser, take a look at our support page on How to Find Your Theme’s CSS where you will find some brief screencasts to get you started with it. I find it an invaluable tool when working with CSS.
-
-
- The topic ‘Can't save & publish the changes I'm making to CSS’ is closed to new replies.