Hi all I have a problem with images on the iPad version (they display too small in articles) I would like to specify witdh of 100% where I must add this line? Where is the CSS for iPad located?
Hi Mauri Gomez.
I get a message when go to your administrator:
"Forbidden
You don't have permission to access /administrator/ on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request."
You can fixed it below:
Please go to template/custom code/Before </head> and insert line code below:
<style>
@media (max-width: 1200px) and (min-width: 768px){
#k2Container .itemBody .itemFullText img {
width: auto !important;
}
}
</style>
If you still don't done. Please check your administrator I will fix it for you.
Hi Huyem sorry it was a problem with the admin section, I added the code you wrote and it works perfectly thanks! Its possible to add it in a .css file so the code its cleaner?