There is following code in style.css of Catch Box Free 3.6.1:
#site-generator .copyright,
#site-generator .powered {
width: 470px;
}
This code does not allow me to change the formatting of the footer.
As a result, my following code is not working properly:
@media screen and (min-width: 1000px) {
#page { width: 1000px; }
#site-generator .copyright { width: 75%; }
#site-generator .powered { width: 25%; }
}
My code was working correctly earlier. Also my code works now if I comment out the code above in style.css, but it's incorrect solution. Please help me solve this problem correctly.
Thanks.