How to show Recent Tweet?

Discussion in 'ColorWay WordPress Theme' started by nexnexy, Apr 3, 2013.

  1. nexnexy

    nexnexy Guest

    Joined:
    Mar 28, 2013
    Messages:
    13
    Likes Received:
    0
    Location:
    Tokyo
    I would like to use the widget "Recent Tweet" in the footer. I already installed and try to show what tweeted in my account. But it just does not work. Is there anyone how can help me on to enable this great feature on my website?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  3. nexnexy

    nexnexy Guest

    Joined:
    Mar 28, 2013
    Messages:
    13
    Likes Received:
    0
    Location:
    Tokyo
    Hi Piyush

    Thank you! It worked. Now how can I remove <li> on the menu list widget display in the footer?

    Naoko
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Do let us know your website link and specify your issue little more with the help of screenshot images that which <li > tag you want to remove, so that we will solve your issue.
     
  5. nexnexy

    nexnexy Guest

    Joined:
    Mar 28, 2013
    Messages:
    13
    Likes Received:
    0
    Location:
    Tokyo
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .footer-container ul.menu li {
    list-style: none;
    }
    This will solve your issue.
     
  7. nexnexy

    nexnexy Guest

    Joined:
    Mar 28, 2013
    Messages:
    13
    Likes Received:
    0
    Location:
    Tokyo
    It worked perfectly.
    Thank you very much!!!

    But now I found the other problem.. how can I change font color of the recent tweet?

    Naoko from Japan
     
  8. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .footer-container .tweet a {
    color: red;
    }
    .tweet-text {
    color: white;
    }
    .footer-container .tweet .tweet-created_at a {
    color: blue;
    }
    you can put your color or color code in place of red, white and blue.
    This will solve your issue.
     

Share This Page