CSS Almost Working - styles.post.tpl

I have everything set up properly to use the my_changes, styles.post.tpl method. All styles in my skins//addons/my_changes/styles.css seem to do what they’re supposed to do…EXCEPT…when I move a custom


style I created to the top of the code arrangement. The code below is the way I have it set up now. It all works except for #my_hr. If I move it to the top of the code, it works, but then all the other code below it quits working. Any ideas?


a:active {
color: #014ead;
text-decoraton: none;
}
a, a:link, a:visited {
text-decoration: none;
color: #014ead;
}
a:hover {
color: #014ead;
text-decoration: underline;
}
#category_page_ul {
padding-left:20px;
}
#home_page_ul {
list-style-type:square;
padding-left:20px;
}
#category_closing_statement {
margin-left:25%;
margin-right:25%;
color:green;
}
.logo-image {
padding-bottom: 5px;
}
.logo-image img {
margin-top:5px;
{
#my_hr {
background-color: gray;
height:2px;
}

Typo at the bottom



.logo-image img {

margin-top:5px;

[COLOR=red]{ <------------------------------[/COLOR]

#my_hr {

background-color: gray;

height:2px;

}

Yup…thanks. CsCart support fixed it for me and you are right. That was the problem.