Add second text area below circle features & remove social icons etc.

Discussion in 'Blackriders WordPress Theme' started by snrgdesign, May 18, 2015.

Thread Status:
Not open for further replies.
  1. snrgdesign

    snrgdesign New Member

    Joined:
    May 12, 2015
    Messages:
    3
    Likes Received:
    0
    Hi

    I would like to know how to add a second text area like the heading and subtext to go underneath the x4 features circles.

    As below:
    --------
    OOOO
    --------

    Also..

    I would also like to centre the footer txt and remove the social icons completely so the text fills the whole width of the page.

    Is this possible?

    Thanks. :)
     
  2. sameerwalkar

    sameerwalkar Guest

    Hello,

    Hope doing good.

    1. To remove the social icon kindly use the below given CSS and paste it in the styling options of your theme option panel in dashboasrd.
    Code:
    .bottom_footer_content .social_logos {
      display: none;
    }
    
    2. If you wish to insert heading and subtext below the x4 features circles then follow the steps mentioned in the image below, that will guide you where to insert your HTML tags for heading and subtext:
    apply following code in area specified:
    Code:
    <div class="custom_text">
                    <h1>Your Heading</h1>
                    <p>Your Sub text</p>
                    </div>
    and CSS for the same:
    Code:
    .custom_text {
      text-align: center;
      border-bottom: 1px dashed #dadada;
    }
    black-rider-subtext.png

    Hope it will solve your issue.
     
  3. snrgdesign

    snrgdesign New Member

    Joined:
    May 12, 2015
    Messages:
    3
    Likes Received:
    0
    Thank you for all of your help! :)
     
Thread Status:
Not open for further replies.

Share This Page