Question

I have added schema markup to my website, and I have placed it at the bottom on my page in the footer. On my CSS it says

#copyright {
    float:left;
    margin:13px 10px 0 23;
    width:380px
}

But when I browse it through Firebug it doesn't show the margin, only the float and width. It was showing it before, and all I changed was the first and last numbers of the margin trying to get the schema markup exactly where I wanted it.

Was it helpful?

Solution

One thing I see is that the 23 in your margin list does have 'px' on it. Could that be the issue? Try updating it to:

margin:13px 10px 0 23px;

OTHER TIPS

You have syntax errors:

This:

#copyright {
    float:left;
    margin:13px 10px 0 23;
    width:380px
}

Should Be:

#copyright {
    float:left;
    margin:13px 10px 0 23px;
    width:380px;
}

Notice the missing semicolon after width. This could cause the previous styles from being read. Also the left margin won't be read because you didn't define a unit.

This should work:

#copyright {
    float:left;
    margin:13px 10px 0 23px;
    width:380px;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top