Future Imperfect

Post Reply
adminvz
Ssr. Bludit
Posts: 27
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: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 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 - Websites mit Bludit | Planet Bludit - Tipps und Snippets
adminvz
Ssr. Bludit
Posts: 27
Joined: Sun Jan 24, 2016 1:06 pm

Thanks Edi all options work
Post Reply