Slider Heading, Description and Button - Characteristics

Discussion in 'ButterBelly WordPress Theme' started by rexmanaster, Dec 29, 2014.

  1. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Hi,

    Please can you provide me with the code necessary to adjust the position and other characteristics of the homepage slider heading, description and button.

    Specifically, I'd like to:
    • move the heading, description and button to the bottom left hand corner
    • remove the space between the heading and description (or hide the description)
    • change the text of the button and have it use the same css class as other buttons in the site
    Please see screenshot for further reference.
    Thanks,
    Rex
     

    Attached Files:

  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Could you please share us your website link so that we will provide you some CSS code according to your need and website.

    Thanks & Regards
    Yogesh Bhade
     
  3. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    nowmds.com

    temporary password - pass999!
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .flex-caption-wrapper {
    top: 65%;
    left: 0;
    }
    .flex-caption h1 {
    margin-bottom: 0;
    }
    .flex-caption {
    text-align: left;
    }
    .flex-caption p {
    font-size: 15px;
    margin-bottom: 30px;
    }
    .flex-caption a.slider-readmore {
    background: #54a228;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    margin: 0 10px;
    color: #fff;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  5. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Thanks. Few additional adjustments:
    • How can I remove the slider description?
    • How can I remove the slider button?
    • Alternatively, how can I remove the button's border and make the button's text plan instead of bold?
    Thanks,
    Rex
     
  6. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello !

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

    For removing heading:
    Code:
    .flex-caption h1 {
    display: none;
    }
    For removing Description:
    Code:
    .flex-caption p {
    display: none;
    }
    for removing border and font weight :
    Code:
    .flex-caption a.slider-readmore {
    font-weight: 500;
    border: none;
    }
    For removing slider button:
    Code:
    a.slider-readmore {
    display: none !important;
    }


    Thanks & Regards
    Pramod
     

Share This Page