Would like to change the slider settings text to pop-up

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
    I would like to change the slider settings sales details to the following:

    I would like the slider description only and the buy now button only to show. I would also like the background of the description to be transparent and description text color to be black. The "buy now" button I would like to be the light pink color which matches footer, etc and this color is: rgb(176, 122, 131 (I think).

    I would like the slider description and buy now button to not show all the time, but only when the person hovers over the slider, then the description and buy now will pop up.

    Thank you for your help. Your support is the most amazing support I have seen yet. It is greatly appreciated.
     
  2. praveen

    praveen Support Staff

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

    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;
    }
    .salesdetails p {
    background: rgba(144, 129, 129, 0.42);
    color:black;
    }
    .salesdetails .salesbutton {
    background: #e43750;
    border-radius: 5px;
    }
    .salesdetails p {
    display: none !important;
    }
    .salesdetails .salesbutton {
    display: none !important;
    }
    .sl-slides-wrapper:hover .salesdetails p , .sl-slides-wrapper:hover .salesdetails .salesbutton  {
    display:block !important;
    }
    Thanks,
    Praveen
     
  3. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    That works wonderfully except the product description text block is too long. It doesn't adjust according to the size of the text and the text is not centered within that space. Can you help with that? Thank you.
     
  4. praveen

    praveen Support Staff

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

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

    Code:
    .salesdetails p {
    text-align: center !important;
    }
    Thanks,
    Praveen
     

Share This Page