Discussions

Okay well, I was checking out my blog the other day and I noticed that my Google Ad wasn't showing up on the right sidebar. I tried looking at the HTML code on the wordpress editor, but it wasn't much help cause I'm definitely not an expert with HTML.

So instead of putting the Adsense code in the theme template, I put it in a widget on the sidebar. This didn't help, and it aligned the items below the ad to the left.

And then it screwed up even more. The bottom bar on my blog, turned white, making my links not readable.

www.jmnbasource.com In case you don't know what i'm talking about.

If anybody could give me any help, it would be greatly appreciated because I have no idea where I went wrong.

Reply

User Comments

  1. crawfordvj
    Hi jmanguba.
    I had a quick look at your css. To change the footer text to black.
    Open your CSS file and change this

    .footer_sidebar_item a{
    color:#FFFFFF;

    to this

    .footer_sidebar_item a{
    color:#000000;
  2. crawfordvj
    Noticed your link hover is also white - change this

    .footer_sidebar_item a:hover{
    color:#FFFFFF;

    to this
    .footer_sidebar_item a:hover{
    color:#e00505;
    1. jmanguba
      Thank you sooooo much crawfordvj. That fixed up the links. But if you highlight the footer you can notice that the words Sponsored Links and Blogroll are also in white. Would you happen to know how to fix that?
      I hope it's not too much trouble for you :S
  3. crawfordvj
    Hi jmanguba.
    To change that text to black.
    Look for
    footer_ sidebar_item in your CSS.

    After font-size : 12px;

    add this
    color:#000000;


    This is what it will look like now.

    .footer_sidebar_item{
    float:left;
    color:#FFFFFF;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    color:#000000;
    width:285px;
    padding:10px;
    padding-left:20px;
    1. jmanguba
      Thank you once again. You're a life saver.
      But now I feel bad for asking for another favour :S How do you change the background of the footer to red?
  4. crawfordvj
    Hi jmanguba.
    You're welcome.

    I see that you are getting braver and having a go at changing things yourself. That's good. Just make a copy of your original CSS file and keep it somewhere safe. If you change something and screw up somewhere you can always go back to the original file and line for reference.

    If you change the footer_sidebar_item to red, the links will disappear when you put your mouse over them - they are red also.

Add Your Comment

Login to leave a message.