Several changes

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by maes39, Nov 21, 2013.

  1. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    *Can you give me the code to change the font size of the navigation??

    * How can i change the background color of the footer, widget area, main area??

    * On the shop in the productpage there is an area to share the products, i want to remove the share buttons. Is this possible??

    * On this message i attached two pictures with marked areas where i want to change the color, can you help me with the code??

    my website is www.peli-horsepoint.com
     

    Attached Files:

  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

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

    1. Put this code to change the font size of navigation, And put the value according to your requirement

    Code:
    #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover, #menu li.current_page_item a {
    color: #AC470E;
    font-size: medium;
    }
    #menu .ddsmoothmenu li a {
    font-size: medium;
    }
     
    #menu .ddsmoothmenu li li a {
    font-size: medium;
    }
    2. Put the following code to change the background color of footer widget area

    Code:
    .footer_wrapper {
    background: #f27232;
    }
    3. Could you please send the screenshot from where do you want to remove the share button.

    4. Put the following code in custom css to change the background color of first image

    Code:
    .content-bar .post .post-social-link-wrapper {
    background: black;
    }
    Put the following code in custom css to change the background color of Second image

    Code:
    .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
    color: black;
    }
    you can choose your color value according to your requirement.
     
  3. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    On every product page you get an share area like the picture attached on this message.
    Is it possible to delete this??
     

    Attached Files:

  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:
    .post-social-link-wrapper {
    display: none;
    }
     

Share This Page