dyomainer
Member
Posted 1 year ago #
Hello,
I have been editing my WP arcade's CSS style sheet but now I have just noticed that the footer is misaligned. Can someone check for me and tell me what is the problem?
If you would like to see the css style sheet code, let me know to post it here.
Thanks
admin
yvd.com
Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of specific help.
In style.css around 540 look or this code
#footer {
color:#FFFFFF;
}
add margin:auto;
so you should have
#footer {
color:#FFFFFF;
margin:auto;
}
dyomainer
Member
Posted 1 year ago #
@govpatel, thanks for your reply. Problem solved.