Shop OBEX P1 Docs P2 Docs Learn Events
Main page footer problem and solution — Parallax Forums

Main page footer problem and solution

SexieWASDSexieWASD Posts: 41
edited 2009-07-24 19:49 in General Discussion
**Using Firefox 3.5.1**

This isn't really forum related, more website related.


On the home page the Footer is correct, but on the store page the text is offset to the left.

solution:

skin.css
/** Footer Row CSS Styles **/
.FooterRow
{
    height:39px;
    width:950px;
    padding:10px 0px 0px 0px;
    background-image:url(images/FooterRow-Background.jpg);
    background-repeat:no-repeat;
    font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size:10px;
    color:#000000;
}



Should be

/** Footer Row CSS Styles **/
.FooterRow
{
    height:39px;
    width:950px;
    padding:10px 0px 0px 0px;
    background-image:url(images/FooterRow-Background.jpg);
    background-repeat:no-repeat;
    font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size:10px;
    color:#000000;
    text-align: center;
}
Sign In or Register to comment.