• Resolved normda

    (@normda)


    I’m using the coraline theme and have a sticky. But I can’t change the background color. I am editing style.css and the .sticky class, but no matter what color I change the background color to, it stays black. I can change the border width using that class, but not the border color. Suggestions?

    bevinsequipment.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • no suggestions without seeing your site.

    try to refresh your browser cache, by pressing the ‘reload’ button; or by pressing ‘CTRL’ and ‘F5’ simultanously.

    Thread Starter normda

    (@normda)

    Thanks for the quick reply. I have tried refresh and different browser.

    bevinsequipment.com

    the .sticky color is defined in /themes/coraline/colors/dark.css, which is called after style.css and therefore overwrites the styles in style.css.

    you probably need to force your edited styles:

    .sticky {
    	background: white!important;
    	border-bottom: 1px solid #D9D4A3!important;
    	padding: 1.7em!important;
    	border-top: 3px solid #bd4e15!important;
    color: #333;
    }
    .sticky a { color: green!important; }

    and add new font colors.

    Thread Starter normda

    (@normda)

    Thanks! I should have known that….

    Your quick help is much appreciated!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sticky Post Background Color won't change’ is closed to new replies.