Skip to main content
Inspiring
October 8, 2017
Question

Strange Blocking

  • October 8, 2017
  • 1 reply
  • 622 views

For some reason some of my LINK text has a dark overlay like in the screenshot.  I recently started using a style sheet for all my fonts instead of putting them inside the HTML file so I think I have something wrong.

Thanks

Alan

These are my styles in my CSS

  .stylelinks {

  font-family: Arial;

  color: #983200;

  font-size: 14px;

  font-weight:200;

  background-color:#005100;

}

  a:link {

    color: #983200;

}

  a:hover {

    color: #006600;

}

This topic has been closed for replies.

1 reply

pziecina
Legend
October 8, 2017

Remove the background color from your .stylelinks

Legend
October 8, 2017

pziecina  wrote

Remove the background color from your .stylelinks

Inspiring
October 9, 2017

Doesn't seem to make any difference. And the strange thing is the links are Blue and Green when I hover my cursor over them. They should be red and green. So it seems as if the HTML document is not reading the style sheet correctly.

Alan