Future Imperfect

Post Reply
adminvz
Ssr. Bludit
Posts: 17
Joined: Sun Jan 24, 2016 1:06 pm

Future Imperfect
why in the subject at the insertion code
<script type="text/javascript" src="http://n.actionpay.ru/rotator/5153/subaccount"></script>
banner stretches the entire page Shiren ???
Image

if to change the subject to another, all displayed size
User avatar
Edi
Site Admin
Posts: 3116
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 76 times
Been thanked: 117 times
Contact:

You have two possibilities.

1) You can add a div with the width of the rotating images:

Code: Select all

<div style="width: 250px;"><script type="text/javascript" src="http://n.actionpay.ru/rotator/5153/subaccount"></script></div>
2) You can use the plugin Custom CSS and add the following:

Code: Select all

img {
   max-width: 100%;
   width: auto;
}
This overwrites the definition of the CSS of the theme:

Code: Select all

img {
   width: 100%;
}
clickwork.ch, digitale Projekte
Bludit-Tipps, Erklärungen und Anleitungen
adminvz
Ssr. Bludit
Posts: 17
Joined: Sun Jan 24, 2016 1:06 pm

Thanks Edi all options work
Post Reply