Remove Slider Text, but keep button and left justify it

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by richarbran, Jun 16, 2015.

  1. richarbran

    richarbran Member

    Joined:
    Aug 12, 2013
    Messages:
    58
    Likes Received:
    0
    Could you provide me with the Custom CSS code to remove the slider text, but keep the button and left justify it? Thanks in advance.
     
  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 {
      display: none !important;
    }
    Thanks,
    Praveen
     
  3. richarbran

    richarbran Member

    Joined:
    Aug 12, 2013
    Messages:
    58
    Likes Received:
    0
    Thanks for the info. The text is now removed, but the button did not move. Can you provide the custom CSS to justify it to the right and bottom? Thanks in advance.
     
  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:
    .sl-slide-inner {
      bottom: 10%;
      left: 35%;
    }
    @media only screen and (max-width: 960px) and (min-width: 767px){
    .sl-slide-inner {
      bottom: 10% !important;
      left: 25% !important;
    }
    }
    Thanks,
    Praveen
     

Share This Page