• Resolved columbus12

    (@columbus12)


    HI

    I am trying to delete a white background from the landing page of my webpage babbyair.com
    Im using devtool in chrome browser to achieve this I copy the edited code to my custom css editor in the backend of my theme dashboard and save the new code but changes dontr take effect.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi, @columbus12. What is the exact rule you’re adding to your Custom CSS? I do see this rule in the source of your home page, but since the background property has been commented out, it won’t do anything to override the background color which is already defined in your theme’s main.css file:

    #content {
      /* background: #ffffff; */
      clear: both;
      z-index: 888;
    }

    So if that’s actually the rule you’ve added to your Custom CSS, then you’d want to try uncommenting its background property, and then changing the hex value to whatever color you want it to be instead.

    Thread Starter columbus12

    (@columbus12)

    I uncommented the rule but it still hasn`t override the property I want it so that the white box background disappears

    @columbus12, now I see no background property at all in the Custom CSS, just an empty line where it was before:

    #content {
    
      clear: both;
      z-index: 888;
    }

    If you don’t want any background color at all, then try using this:

    #content {
    	background: none;
    	clear: both;
    	z-index: 888;
    }
    Thread Starter columbus12

    (@columbus12)

    thanks ?? it worked now

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘custom CSS editor don`t work for me?’ is closed to new replies.