1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

CSS CSS Changes Google Links

Discussion in 'Web Development' started by unixanalyst, Oct 7, 2007.

  1. unixanalyst

    unixanalyst New Member

    Hello,

    Google expressly forbids the alteration of the appearance of it's links but I can't seem to stop CSS changing mine. I'm new to CSS but I've messed around and tried what I can think of.

    Would anyone mind being a dear and looking at my site to see if you can suggest a fix?

    http://www.fightphotos.biz/index.htm
    http://www.fightphotos.biz/style.css

    Thanks.
     
  2. student101

    student101 New Member

    The p{ } and a{ } are the problems?

    PHP:
    //NOW
    .para {
     
    margin7px 0px 10px;
     
    text-alignjustify;
     
    line-height12px;
    }
    //WAS 
    {
     
    margin7px 0px 10px;
     
    text-alignjustify;
     
    line-height12px;
    }
     
    //NOW
    .links {
     
    color#fff;
     
    text-decorationnone;
    }
    //WAS
    {
     
    color#fff;
     
    text-decorationnone;
    }
    Just a bit of basic logic - apply it everywhere.