mhh so.. ok. so there´s one font size for all.. (responsive design) ?
and if i add your CSS… especially that in the box..
@media screen and (max-width: 1060px) {
/* Add here css for maximum screen size of 1060px */
}
@media screen and (max-width: 960px) {
/* Add here css for maximum screen size of 960px */
}
@media screen and (max-width: 767px) {
/* Add here css for maximum screen size of 767px */
}
@media screen and (max-width: 480px) {
/* Add here css for maximum screen size of 480px */
}
@media screen and (max-width: 320px) {
/* Add here css for maximum screen size of 320px */
}
i still have to add the CSS for every size? or is the box obove all i need to copy and paste?
/* Add here css for maximum screen size of 480px */
is this right or must i add the size?