Remove Product Feature Area under slider

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by v4sb, Jan 28, 2015.

  1. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Hi, I found a previous thread where I removed the product listing under the slider:

    .productlisting {
    display: none;}
    .fullwidth .fullwidth_inner h1.page-title {
    display: none;}

    However, there is now a gray block/bar underneath the slider. Can I get rid of that block entirely? Thank you.
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

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

    Code:
    .salesdetails h1 {
    display: none !important;
    }
    Thanks,
    Praveen
     
  3. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    It is still there? I will attach a screenshot. Thank you.[​IMG]
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

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

    Code:
    .content_wrapper {
    display: none !important;
    }
    Thanks,
    Praveen
     
  5. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    When I place this code, it does get rid of this area; however, it also removes the wrapper from all other areas of the content, thereby not showing any other content throughout the rest of the site.
     
  6. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

    Please use this code in custom css.
    Code:
    .content {
    display: none;
    }
    Thanks,
    Praveen
     
  7. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    This has resolved the issue for the desktop; however, when viewed on a mobile device, this space is quite significant. Is there a way to decrease this space for the mobile view?
     
  8. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey !

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

    Code:
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .buyers.widget h6:first-child {
    margin-top: -51px;
    float: left;
    margin-left: 144px;
    }
    .buyers.widget span {
    margin-left: 26px;
    }
    .feature_content_wrapper {
    height: 150px;
    }
    }
    Thanks,
    Praveen
     

Share This Page