Image in Navigation responsive
Permalink
hello,
I'd like to replace the company name in the navigation bar with their logo but the image is not scaling / responsive.
cpc-edge.com
Thanks!
I'd like to replace the company name in the navigation bar with their logo but the image is not scaling / responsive.
cpc-edge.com
Thanks!
The logo in the top left of this site appears to be working fine. Is that the logo you are talking about or something else?
..or is this the image EDGE
There is no mobile css on the background image you have the image fixed at 1440 x 900
You will need to add a smaller image and add something like
@media only screen and (max-device-width: 480px) {
.ccm-custom-style-slide1.full-height {
background-image: url('to smaller image');
}
There is no mobile css on the background image you have the image fixed at 1440 x 900
You will need to add a smaller image and add something like
@media only screen and (max-device-width: 480px) {
.ccm-custom-style-slide1.full-height {
background-image: url('to smaller image');
}