Footer widget area

Discussion in 'BizWay WordPress Theme' started by maes39, Jul 15, 2015.

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

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    Hello,

    on my website www.horsepoint.nl i want to change some thing in de footer widget area.

    A: i want to change the color / font / size of the title in the widgets
    B: i want to change the blue color of links to the different pages

    Can you help me with these questions??

    Kind regards,
    Mark
     

    Attached Files:

  2. praveen

    praveen Support Staff

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

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer_widget h6 {
      color: red !important;
      font-size: 18px !important;
    }
     
    .footer_widget ul li a {
      color: blue !important;
    }
    Thanks,
    Praveen
     
  3. maes39

    maes39 Member

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

    i've got other question about the footer widget area.
    Can i placed in an text widget some text thats linked direct to another website in an new page??

    example:
    horsepoint when clicked on this text its linked to an extern website which opens in an new screen.
    I want also want to choose the color of the text in this box.

    can you help??
     
  4. Sobhagya

    Sobhagya Guest

    Joined:
    May 29, 2015
    Messages:
    414
    Likes Received:
    6
    Hello,

    Greetings from InkThemes,

    Kindly follow the step which mentioned in the below video link.

    http://screenpresso.com/=yrZVb

    Try to use below code in text widget.

    Code:
    <a href="http://horsepoint.nl/" class="wtextlink" target="_blank">some text</a>
    Hope this will resolve your issue.

    Do let me know if you need more assistance,

    I would be glad to assist you further,
     
  5. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    Thanks for the help this solved my question.

    An new question came up when i make the direct links.
    The text color is blue and i want to change that.
    For the first widget i used:
    .footer_widget ul li a {
    color: blue !important;
    }

    Which code do i have to use for the second footer widget??
     

    Attached Files:

  6. Sobhagya

    Sobhagya Guest

    Joined:
    May 29, 2015
    Messages:
    414
    Likes Received:
    6
    Hello,

    Greetings from InkThemes,

    You can resolve it yourself, All you have to do is just go to Dashboard->Appearance->Theme Options->Styling Option->Custom CSS

    field and try to cut paste the given below CSS code there.

    Code:
    a.wtextlink {
    color: #7e183f !important;
    }
    Hope this will resolve your issue.

    Do let me know if you need more assistance,

    I would be glad to assist you further,
     
  7. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    Thanks this make the links i want.
    But in the widget i make for every link one line with the code (see picture: widget.jpg).
    But when you look at the result on the website you can see he put al the text in one line (picture: result-widgets.jpg).

    Is there an way to create separate lines??
     

    Attached Files:

  8. praveen

    praveen Support Staff

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

    Add one "<br/>" tag at the end of each anchor tag ( i.e.</a> ), except the last one.
    e.g : - <a href="xyz.com"> Kingsland </a> <br/>

    Hope it will resolve your issue :)

    Thanks,
    Praveen
     
  9. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    Thanks for the help.
    You can close the thread.
     
Thread Status:
Not open for further replies.

Share This Page