Changes aren't saving
-
Hi there – I’ve been making appearance changes in my site by opening up the site page through the inspection tab. I can see my changes being made on my site instantly, however they are lost after I publish. I don’t know how to copy my site’s script/code onto my CSS page after I modify the element code. I’m thinking this may be why my changes aren’t being saved? Thanks for your help! I’ve cleared my cache and nothing is changing.
The blog I need help with is: (visible only to logged in users)
-
Hi talesfromthevineblog,
I am certain the problem is not with the clearing of your cache as the changes you made through the website inspect element did not change the CSS code in your theme.
I will suggest you access the CSS editor, first launch your site customizer then click on the CSS tab to access the CSS editor.
https://en.support.wordpress.com/custom-design/editing-css/
I hope this works.
-
@talesfromthevineblog, if you make changes in the web inspector, those will not save to your site. What you have to do is to enter the changes you make in the web inspector into the CSS editor, which is at Customize > CSS. You can copy out changes you make in the web inspector and paste them in there.
-
I added the change to CSS and still no change. I’ve added a box to my header, however I’m not able to make any other changes. I’ve pasted color changes to CSS and no changes.
-
Hi there, hex color codes are 6 digits, and the one you have for .entry-title is only 5.
Also, there are two cases for entry titles, and you also need to include the “a” (link) CSS selector as well, like this. You can edit the color code I used.
.entry-title, .entry-title a { color: #cc0000; }If you can post the other things that are not saving, we can take a look at it. It might be the selector, or it may be something else.
-
Thanks so much for your help! I was able to change everything except the color of my site title. I’m still having issues with it. My title code is the correct digits so it appears I’m maybe missing a wrong entry title?
-
For your site title, use the following. The first rule is the normal, non-hover state, and the second is the hover state.
.site-branding .site-title a { color: #cc0000; } .site-branding .site-title a:focus, .site-branding .site-title a:hover { color: #33cc33; } -
-
- The topic ‘Changes aren't saving’ is closed to new replies.