change the body color

Discussion in 'Dzonia WordPress Theme' started by deveshd, Jul 11, 2013.

Thread Status:
Not open for further replies.
  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .body_wrapper {
    background: lightblue;
    }
    .top_cornor {
    background: lightblue;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    }
    .footer_wrapper {
    background: none;
    }
    .footer_wrapper .footer_bottom {
    background: none;
    }
    .bottom_cornor {
    background: lightblue;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 998px;
    }
    Inplace of "lightblue" you can put your color or color code.
    This will solve your issue.
     
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Thanks for the prompt response and solutions only 2 points where it is not working - frame under the slider and search box & breadcrumbs on the inside pages, see the screenshots below

    Screen shot 2013-07-11 at 6.40.47 PM.png

    and
    Screen shot 2013-07-11 at 6.32.08 PM.png
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. For the frame issue under slider,
    It is not possible to do that with the css code because it is an image (i.e. slider-pag.png image).
    But you can achieve this by editing the slider-pag.png image with the help of photoshop or any other tool.

    And this slider-pag.png image is present in the image folder ( Theme directory > Image directory > slider-pag.png) of your theme directory.

    Follow the link given below for reference.
    http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/

    2. For the search box & breadcrumbs issues,
    paste this code in Custom CSS

    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page_navi_bg {
    background: lightblue;
    }
    .content_wrapper #searchform #s, .sidebar #searchform #s, .footer #searchform #s {
    background: lightblue;
    }
    This will solve your issue.
     
  5. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Okay thanks! How can I just remove that image then and have a simple square slider only?, I will also need to remove the blank space that removing this image will create. Please help.
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #slides .slider_pag {
    background: none;
    margin-top: 0px;
    }
    #example {
    margin-bottom: 35px;
    }
    You can adjust the values as per your requirement.
    This will solve your issue.
     
  7. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    works thanks!
     
Thread Status:
Not open for further replies.

Share This Page