footer changes

Discussion in 'BizWay WordPress Theme' started by maes39, Nov 9, 2014.

  1. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    i've like to change somethings in the footer and the feature colums.
    Can you help me??

    A) is it possible to delete the text Social media?? (I've no can i change the color)??
    B) is there an way to create an link "read more" in the feature Description??
    C) i've like to change the color in the footer and i want to give the email an link "mail to"
     

    Attached Files:

  2. Pramod

    Pramod Guest

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

    A)
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer-top-inner1 b {
    display: none;
    }

    B)
    You have to use below code to use read more text(In the place of # put link).
    HTML:
    <a href="#" >Read More</a>
    C)

    Use below code and put your email id.
    HTML:
    <a href="mailto:[email protected]">
    Send Mail</a>

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer_bottom {
    background: #b68537;
    }
    Thanks & regards
    Pramod
     
  3. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    Thanks for your help.

    I don't want to change the color of the background of the footer_bottom but i want to change color of the text.
    Can you help me with the code??

    Can you tell what a good counter is for this wordpress website and were is the best place to place the counter??

    Can i change the color of the link "read more"??
     
  4. Pramod

    Pramod Guest

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

    For read more color:
    Code:
    .main-content p a {
    color: green;
    }
    For footer text:
    Code:
    .footer_bottom_content p {
    color: pink;
    }
    Change color according to your requirement.
    You can use any counter plugins but keep please keep in mind the plugin you select will not effect theme functionality.
    You can use it in widget area. may be footer or in side.

    Thanks & regards
    Pramod
     

Share This Page