- Posts: 12
- Thank you received: 0
Size picture on mobile version different from desktop version
-
info5
Active member - Topic Author
- New Member
Less
More
1 year 2 weeks ago #50931
by info5
Hi,
see for instance www.automation-magazine.be/index.php/nl/...otion-bezoekt-soudal . The size of the picture on the desktop version is the same as on the mobile version. However, it's way too big for the mobile version. Mobile and desktop version seem to use the same custom.css stylesheet. Is there a way to resize the pictures for only the mobile/responsive version?
Thanks,
BC
see for instance www.automation-magazine.be/index.php/nl/...otion-bezoekt-soudal . The size of the picture on the desktop version is the same as on the mobile version. However, it's way too big for the mobile version. Mobile and desktop version seem to use the same custom.css stylesheet. Is there a way to resize the pictures for only the mobile/responsive version?
Thanks,
BC
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6742
- Thank you received: 715
1 year 2 weeks ago #50932
by milos
Replied by milos on topic Size picture on mobile version different from desktop version
Hello,
You set the width of the image explicitly to 1280px. This value is for all devices, it can't be different. Therefore, it's not recommended to set the image size like this.
However, you can edit the file /media/templates/site/newsportal/css/custom.css and change this (around line 419):
to this:
Regards,
Milos
You set the width of the image explicitly to 1280px. This value is for all devices, it can't be different. Therefore, it's not recommended to set the image size like this.
However, you can edit the file /media/templates/site/newsportal/css/custom.css and change this (around line 419):
Code:
.item-image img, .newsflash img {
border-radius: 5px;
}
to this:
Code:
.item-image img, .newsflash img {
border-radius: 5px;
max-width: 100%;
}
Regards,
Milos
Please Log in to join the conversation.
-
info5
Active member - Topic Author
- New Member
Less
More
- Posts: 12
- Thank you received: 0
1 year 2 weeks ago #50933
by info5
Replied by info5 on topic Size picture on mobile version different from desktop version
Hi,
we actually do not explicitly set the image size, the image is just added in the Joomla article editor and that apparently automatically adds the picture's size.:
images/apex.jpeg#joomlaImage://local-images/apex.jpeg?width=640&height=360
I added your CSS code and this seems to work, thanks for that!
BC
we actually do not explicitly set the image size, the image is just added in the Joomla article editor and that apparently automatically adds the picture's size.:
images/apex.jpeg#joomlaImage://local-images/apex.jpeg?width=640&height=360
I added your CSS code and this seems to work, thanks for that!
BC
Please Log in to join the conversation.
Time to create page: 0.254 seconds