Jump to content

[SOLVED] some css problems


big-dog1965

Recommended Posts

Can someone show me the problems in this stuff

Warning: Expected ':' but found '.'.  Declaration dropped.

Source File: /style.css

Line: 139 Line 139 is a.visited {color:rgb(45,90,255)

.TableLink
{
    font-family:verdana,arial,tahoma,serif;
    font-size:75%;
    color:black;
    background-color:#EEEEEB;
a.link {color:rgb(0,60,255)
a.visited {color:rgb(45,90,255)
a.hover {color:rgb(255,255,255)
a.active {color:rgb(255,0,0)
}

 

Warning: Unexpected end of file while searching for closing } of declaration block.

Source File: /style.css

Line: 154 Line 154 is }

 

.TableFooter
{
    font-family:verdana,arial,tahoma,serif;
    font-weight: normal;
    font-size:75%;
    text-align: center;
    background-color:#D5D3CC;
    height: 20px;

}

Link to comment
https://forums.phpfreaks.com/topic/161314-solved-some-css-problems/
Share on other sites

change your first bit of code to this;

 

.TableLink {
    font-family:verdana,arial,tahoma,serif;
    font-size:75%;
    color:black;
    background-color:#EEEEEB;
}
.TableLink a.link {color:rgb(0,60,255);}
.TableLink a.visited {color:rgb(45,90,255);}
.TableLink a.hover {color:rgb(255,255,255);}
.TableLink a.active {color:rgb(255,0,0);}

 

This should also solve the second problem

Found another Then I think the css will check fine

Warning: Unknown property 'background-position-y'.  Declaration dropped.

Source File: /index.htm

Line: 0 Line ]<!DOCTYPE html PUBLIC

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.