Change Theme color from existing choices

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by fullex, Jun 21, 2014.

  1. fullex

    fullex New Member

    Joined:
    Apr 8, 2013
    Messages:
    9
    Likes Received:
    0
    1. My client would like for the color of the theme to match the logo.

    This is the hex code for the logo color #E43750. So how do I change the theme color to match the logo.

    2. How can change the color of the grey portion that is behind the shopping section on the home page. It id doesn't matter if it also changes the rest of the areas on the site that have that color.
    I just want a darker grey like a #948796.

    Thanks
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

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

    Code:
     .top_cartinfo {
    background: #e43750
    }
    .content_wrapper .content {
    background: white;
    }
    .footer_wrapper {
    background: #e34750;
    }
    .footer_bottom{
    background: #e34750;
    }
     
    

    Thanks & Regards
    Gourav Shrivastava
     
  3. fullex

    fullex New Member

    Joined:
    Apr 8, 2013
    Messages:
    9
    Likes Received:
    0
    Thanks it worked.

    Now, how do I change the background color in the shop and the blog to match the color that is in the
    .content_wrapper .content {
    background: white;
    }

    section on the home page?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
     .content_wrapper .page-content {
    background: white;
    }

    Thanks & Regards
    Gourav Shrivastava
     
  5. fullex

    fullex New Member

    Joined:
    Apr 8, 2013
    Messages:
    9
    Likes Received:
    0
    Gourav,
    The client likes the changes. In fact she likes the new color so much she wants the header area where the logo is and the area with the features and blog content on the homepage to be changed as well. Please help!
     
  6. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    div.wrapper_header {
    background: red;
    }
    div.feature_content_wrapper {
    background: red;
    } 
    In place of "red" you can put your color or color code.
    This will solve your issue.
     
  7. fullex

    fullex New Member

    Joined:
    Apr 8, 2013
    Messages:
    9
    Likes Received:
    0
    Thanks,

    Because of the color change my client would like to have all the text on the home page to be black. Just in case how do I change the text in the side widgets also. See attachments for details. Are the codes you have been showing me above applicable to other ink themes as well?
     

    Attached Files:

  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
     .feature_content .feature_content_inner_head h6 {
    color: #000;
    }
    ul.feature_content_inner_box h5 {
    color: #000;
    }
    ul.feature_content_inner_box p {
    color: #000;
    }
    .sidebar ul li a {
    color: #000;
    }
    
    Thanks & Regards
    Gourav Shrivastava
     
  9. fullex

    fullex New Member

    Joined:
    Apr 8, 2013
    Messages:
    9
    Likes Received:
    0
    Can you show me how to remove the drop shadow from the page titles so they can be read more easily, and I will need to change the text on the widgets to white.
    Thanks
     

    Attached Files:

  10. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Do let us know your website link.

    Thanks & Regards
    Gourav Shrivastava
     
  11. fullex

    fullex New Member

    Joined:
    Apr 8, 2013
    Messages:
    9
    Likes Received:
    0
  12. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .sidebar ul li {
    text-shadow: none;
    color: white;
    }
    .sidebar h3 a {
    text-shadow: none;
    color: white;
    }
     

    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  13. fullex

    fullex New Member

    Joined:
    Apr 8, 2013
    Messages:
    9
    Likes Received:
    0
    That took care of the shadows on the sidebar but what about the titles on blog page? See Attachment

    Thanks for your help on this.
    I am keeping the codes you are sending. Will these same custom codes work on other inktheme themes as well?
     

    Attached Files:

  14. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

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

    Code:
     .content-bar .post_title a {
    text-shadow: none;
    }

    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     

Share This Page