Hi,
I am using the magazine with a large image at the site of the small thumbnails.
but… since my site is in Hebrew, I need the side image to be on the right (currently it is on the left)
I need your help in changing the image and the text to the right (mirror to what it is now)
Thanks
Tal
Shalom!
Please add following code to Quick CSS
.rtl .av-magazine-thumbnail {
float: right;
margin-right: 0;
margin-left: 15px;
}
Regards,
Yigit
Hi Yigit,
it does not change any thing…
thanks
Tal
Hey!
Try adding this code to the Quick CSS:
.rtl .av-magazine-hero {float: right !important;}
.rtl .av-magazine .av-magazine-sideshow.av_one_half { margin-left: 0; }
Cheers!
Josue
Thanks Josue, it moves the large image to the right
I have added the following to move the title as well.
.av-magazine-hero-left .av-magazine-top-bar {
margin-bottom: 0px;
float: right;
}
.av-magazine-hero-top .av-magazine-top-bar {
margin-bottom: 0px;
border: none;
float: right;
}
Great support!
Tal
Hi,
Don’t forget to add rtl
too:
.rtl .av-magazine-hero-left .av-magazine-top-bar {
margin-bottom: 0px;
float: right;
}
.rtl .av-magazine-hero-top .av-magazine-top-bar {
margin-bottom: 0px;
border: none;
float: right;
}
So it only applies to RTL sites.
Great, thanks!