- Posts: 146
- Thank you received: 2
Ask the community, share ideas, and connect with other LimeSurvey users!
Ben_V wrote: Hello,
You have to edit your template files (make a copy before) using the template editor.
Best places:
Header: in startpage.pstpl file
Footer: in endpage.pstpl
<img src="logo.jpg" class="logo_img" />
.logo_img {width: 100px; height: 100px} @media screen and (max-width:768px){ .logo_img {width: 75px; height: 75px} } @media screen and (max-width:480px){ .logo_img {width: 50px; height: 50px} }
img,video,svg,iframe{max-width: 100%;height: auto; *width:100% }
DenisChenu wrote: Hi,
And for img, always add max-with:100%;height:auto
github.com/Shnoulle/skeletonquest/blob/m...ry-ui-custom.css#L69Then you are sure you image fit the screen.Code:img,video,svg,iframe{max-width: 100%;height: auto; *width:100% }