• Closed
  • Totte Brohäll
    Spectator
    January 27, 2015 at 11:39 pm #14587

    Hello
    I’m working on project using the evolvo plus theme. I have 2 issues
    and hope to get your help.

    > I’d like to make the “page area” white (the area where page content
    goes) not #f9f9f9 as default. How can i do this? (custom css is not a
    problem)
    > I´d like to remove shadows and borders around widgets. How can i do
    this? (custom css is not a problem)

    Thanx for you help.

    Alok Maheshwari
    Spectator
    Posts: 303
    January 28, 2015 at 8:57 am #14589

    Start with following css and adjust them as per your need.

    .content
    {
    background:white;
    }

    .widget:after {
    background:none;
    }

    .widget-content
    {
    border:none;
    }

    Totte Brohäll
    Spectator
    Posts: 2
    January 29, 2015 at 11:01 am #14606

    Thank you. But it still doesn’t remove the shadows. You can look at the the page here: http://www.ostersjobat.se/

    How do I remove the gray shadows?

    Alok Maheshwari
    Spectator
    Posts: 303
    January 29, 2015 at 11:27 am #14607

    Please upload a screenshot of the shadow area at imgur.com so that I am sure about the section you are talking about.

    Totte Brohäll
    Spectator
    Posts: 2
    January 29, 2015 at 12:07 pm #14608

    Hello agin
    Thanx for the quick response. http://imgur.com/gXK6Bts (my screenshot)

    The table to the right has some borders but thats not the problem. See the shadowns around the text area and the table? Can i get rid of those?

    Alok Maheshwari
    Spectator
    Posts: 303
    January 29, 2015 at 3:47 pm #14609

    The following css should take care of table shadows.

    table:before
    {
    background:none;
    }