Okay
  Public Ticket #150090
white bg content area on pages and products
Closed

Comments

  • drastic started the conversation
    Hey, what custom CSS can I use to create a white background area on pages and products? Thanks!
  •  1,043
    ThemeNectar replied

    Hey Drastic One!

    Add this into your custom css box:

    body, body .container-wrap, body .home-wrap, body #page-header-wrap {
      background-color: #fff!important;
    }

     

  • drastic replied

    this works, but it makes the whole page white.

    i just want the body of the page, like the content area, to have a white background - just like how my blog posts have a white background.

    is that possible?

  •  1,043
    ThemeNectar replied

    Hey again!

    Try this in that case:

    .woocommerce ul.products li.product {
      background-color: #fff!important;
      padding: 10px!important;
    }