Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

[Help] Change text box position

Hello everyone, I am new to create character sheets and I'm finding problems the next, need to change the position of a text box on the form and do not know what syntax to use it, could anyone help? HTML CODE: &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Ficha Bairro zumbi&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;input type="text" name="nome"&gt; &lt;img src=<a href="http://i1109.photobucket.com/albums/h426/trodurizen/slot_zpst91ggkhp.png&gt;&lt;/img" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/slot_zpst91ggkhp.png&gt;&lt;/img</a>&gt; &lt;/body&gt; &lt;/html&gt; CSS CODE: .charsheet { background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png</a>"); width: 640px; height: 480px; }
1474185497

Edited 1474185594
vÍnce
Pro
Sheet Author
Welcome to sheet building Thiago. &nbsp;Make sure to read over&nbsp; Character Sheet Building Roll20 has some restrictions and requirements as pointed out on the wiki. &nbsp; You don't need to include &lt;!DOCTYPE&gt;, &lt;!DOCTYPE&gt;, &lt;html&gt;,&nbsp;&lt;head&gt;,&nbsp;&lt;title&gt;,&nbsp;&lt;body&gt;, etc. in your character sheet html since roll20 will "wrap" your code within theirs. Attribute names need to include " attr_ " &nbsp;ie name="attr_nome"&nbsp; You should create classes in your css and they need to be named starting with ".sheet-" &nbsp;ie .sheet-input-small {width:10%;} &nbsp;Roll20 will add .sheet to any classes used in your html, but it's also a good idea to include them. &nbsp;ie &nbsp;&lt;input class=".sheet-text-small" type="text" name="attr_nome" /&gt; Use parent, child, and sibling elements and classes (or inline css ) to control &nbsp;your sheet's layout. &nbsp;ie &lt;!--HTML example--&gt; &lt;div class="sheet-background"&gt; &nbsp; &nbsp; &nbsp;&lt;input class="sheet-input-name" type="text" name="attr_nome" /&gt;&lt;/div&gt; &lt;/div&gt; &lt;!--CSS example--&gt; .sheet-input-name { position: relative; top: 46px; margin-left: 27px; height: 38px; width: 218px; border-width: 10px; border-image:url( <a href="http://i1109.photobucket.com/albums/h426/trodurizen/slot_zpst91ggkhp.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/slot_zpst91ggkhp.png</a> ) 30 repeat; } .sheet-background { background-image: url(" <a href="http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png</a> "); width: 640px; height: 480px; } Hopefully that should get you started. Wasn't sure what you wanted to do with the border image. &nbsp;Post back if you need more help. Cheers
Hello Vince, your comment helped me a lot and now only missing a few things to complete my file, would you please continue to help me? I need the following: 1 - I have some icons on the plug, need a command by clicking on the icon (icon-on) it is replaced by another (icon off). Another question still is whether this term by clicking the icon again (icon off) he returns to the original (icon-on). 2 - I need a command that allows the player to include an image of your character on the card, can be an external web link or own pc player, whatever. 3 - I have an icon representing a box made equipment, would, by clicking this icon was made an dropdow menu with pictures of the equipment available for the player to select. If I can do this I conclude my file and I can play very happy with my son!
1474244802

Edited 1474250542
vÍnce
Pro
Sheet Author
Thiago R. said: 1 - I have some icons on the plug, need a command by clicking on the icon (icon-on) it is replaced by another (icon off). Another question still is whether this term by clicking the icon again (icon off) he returns to the original (icon-on). You should be able to use something like; (substitute your own image url's) &lt;!--HTML--&gt; &nbsp;&lt;div class="sheet-checkbox-wrapper"&gt; &nbsp; &lt;input class="sheet-toggle-something" type="checkbox" name="attr_toggle-something" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp;&lt;/div&gt; &lt;!--CSS--&gt; .sheet-checkbox-wrapper{ &nbsp; &nbsp; position: relative; height: 128px; &nbsp; &nbsp; width: 128px; } input[type="checkbox"].sheet-toggle-something { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 128px; &nbsp; &nbsp; width: 128px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; top: 0; &nbsp; &nbsp; left: 0; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-toggle-something + span{ &nbsp; &nbsp; background-image: url(" <a href="http://www.uidownload.com/files/927/874/424/button-turn-off-icon.png" rel="nofollow">http://www.uidownload.com/files/927/874/424/button-turn-off-icon.png</a> "); &nbsp; &nbsp; height: 128px; &nbsp; &nbsp; width: 128px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; top: 0; &nbsp; &nbsp; left: 0; &nbsp; &nbsp; z-index: 1; } input[type="checkbox"].sheet-toggle-something:checked + span{ background-image: url(" <a href="http://www.uidownload.com/files/508/723/822/button-turn-on-icon.png" rel="nofollow">http://www.uidownload.com/files/508/723/822/button-turn-on-icon.png</a> "); &nbsp; &nbsp; height: 128px; &nbsp; &nbsp; width: 128px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; } 2 - I need a command that allows the player to include an image of your character on the card, can be an external web link or own pc player, whatever. AFAIK there isn't a way to allow user input to modify the html of a sheet, only attribute data. &nbsp;Maybe someone else can offer a method? 3 - I have an icon representing a box made equipment, would, by clicking this icon was made an dropdow menu with pictures of the equipment available for the player to select. This is another one that I'm not sure can be done.(adding images to &lt;option&gt;) &nbsp;I'll have to ask. &nbsp;Maybe Brian knows. &nbsp;He's definitely our local sheet guru. &nbsp; UPDATE: There is a method of styling radio buttons where you would select from a list of text and it would change the image to the item you selected. &nbsp;Have a look at the Firefly sheet(hover over the dice)&nbsp; <a href="https://ramblurr.github.io/roll20-character-sheets/" rel="nofollow">https://ramblurr.github.io/roll20-character-sheets/</a> Not sure if this would work for your needs... Here's code that will hide/show a &lt;select&gt; element when clicked. &nbsp;Then you would use &lt;option&gt; for each "option" on your dropdown. &nbsp;Uses code similar to the above example. &lt;!--HTML--&gt; &nbsp;&lt;div class="sheet-checkbox-wrapper"&gt; &nbsp; &nbsp;&lt;input class="sheet-toggle-something" type="checkbox" name="attr_toggle-something" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp;&lt;select name="attr_select-something" type="text"&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;option value="item1"&gt;1&lt;/option&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;option value="item2"&gt;2&lt;/option&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;option value="item3"&gt;3&lt;/option&gt; &nbsp; &nbsp;&lt;/select&gt; &nbsp; &nbsp;&lt;/div&gt; &lt;!--CSS--&gt; .sheet-checkbox-wrapper{ &nbsp; &nbsp; position: relative; &nbsp; &nbsp; height: 128px; &nbsp; &nbsp; width: 128px; } input[type="checkbox"].sheet-toggle-something { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 128px; &nbsp; &nbsp; width: 128px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; top: 0; &nbsp; &nbsp; left: 0; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-toggle-something + span{ &nbsp; &nbsp; background-image: url(" <a href="http://www.uidownload.com/files/927/874/424/button-turn-off-icon.png" rel="nofollow">http://www.uidownload.com/files/927/874/424/button-turn-off-icon.png</a> "); &nbsp; &nbsp; height: 128px; &nbsp; &nbsp; width: 128px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; top: 0; &nbsp; &nbsp; left: 0; &nbsp; &nbsp; z-index: 1; } input[type="checkbox"].sheet-toggle-something:checked + span{ background-image: url(" <a href="http://www.uidownload.com/files/508/723/822/button-turn-on-icon.png" rel="nofollow">http://www.uidownload.com/files/508/723/822/button-turn-on-icon.png</a> "); &nbsp; &nbsp; height: 128px; &nbsp; &nbsp; width: 128px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; } input[type="checkbox"].sheet-toggle-something ~ select { &nbsp; display:none; } input[type="checkbox"].sheet-toggle-something:checked ~ select { &nbsp; display:inline-block; &nbsp; margin:64px 0 0 140px; }
Hello Vince, thanks for the help! It worked very well, I'm not able to do now is change the position of icons, already changed position: relative and values on top and left but they remain in the same place, what can I be doing wrong?
1474702444
vÍnce
Pro
Sheet Author
Thiago R. said: Hello Vince, thanks for the help! It worked very well, I'm not able to do now is change the position of icons, already changed position: relative and values on top and left but they remain in the same place, what can I be doing wrong? You should post your code with a short explanation of the exact problem you want to solve.
HTML: &lt;div&gt; &lt;input type="text" name="attr_nome"/&gt;&lt;/div&gt; &lt;/div&gt; &lt;div&gt; &lt;input type="checkbox" name="attr_toggle-something" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &lt;/div&gt; CSS: .sheet-background { background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png</a>"); width: 640px; height: 480px; } .sheet-input-name { position: relative; top: 48px; margin-left: 26px; height: 560px; width: 218px; border-width: 1px; text-align: center; font-family: verdana; font-size: 20px; font-weight: bold; color: white; background-color:rgba(255,255,255,0.0); border-color:rgba(255,255,255,0.0); text-transform: uppercase; } .sheet-checkbox-wrapper{ position: absolute; height: 128px; width: 128px; top: -80; left: 50; } input[type="checkbox"].sheet-toggle-something { opacity:0; height: 128px; width: 128px; position: absolute; top: 48; left: 50; z-index: 2; } input[type="checkbox"].sheet-toggle-something + span{ background-image: url("<a href="http://www.uidownload.com/files/927/874/424/button-turn-off-icon.png" rel="nofollow">http://www.uidownload.com/files/927/874/424/button-turn-off-icon.png</a>"); height: 128px; width: 128px; display:inline-block; padding: 0 0 0 0px; position: absolute; top: 48; left: 50; z-index: 1; } input[type="checkbox"].sheet-toggle-something:checked + span{ background-image: url("<a href="http://www.uidownload.com/files/508/723/822/button-turn-on-icon.png" rel="nofollow">http://www.uidownload.com/files/508/723/822/button-turn-on-icon.png</a>"); height: 128px; width: 128px; display:inline-block; padding: 0 0 0 0px; } Image:
1474847718
vÍnce
Pro
Sheet Author
Truthfully, you would probably be better off not using background image and just use html/css to create the same look. &nbsp;You can create a green background-color, use text-shadow on your text. &nbsp;You can even use images for your borders if necessary. &nbsp;Just a suggestion. &nbsp;;-) Use position:absolute on your layout elements since you are using a fixed background image. &nbsp;The button is placed in a "wrapper" element so that you can move it's position around using top and left. &nbsp;I changed the size of the button to 64px and gave it's element background-size:100%; so that it will "stretch", not clip. Also, make sure you use px, em, rem, etc. in your css that are calling size increments, otherwise the css doesn't know exactly what type of measurement you want. &lt;!--HTML--&gt; &lt;div class="sheet-background"&gt; &nbsp; &nbsp; &lt;input class="sheet-input-name" type="text" name="attr_nome" /&gt;&lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-toggle-something" type="checkbox" name="attr_toggle-something" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &lt;/div&gt; &lt;!--CSS--&gt; .sheet-background { &nbsp; &nbsp; background-image: url(" <a href="http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png</a> "); &nbsp; &nbsp; width: 640px; &nbsp; &nbsp; height: 480px; } .sheet-input-name { &nbsp; &nbsp; &nbsp; position: relative; &nbsp; &nbsp; top: 48px; &nbsp; &nbsp; margin-left: 26px; &nbsp; &nbsp; height: 560px; &nbsp; &nbsp; width: 218px; &nbsp; &nbsp; border-width: 1px; &nbsp; &nbsp; text-align: center; &nbsp; &nbsp; font-family: verdana; &nbsp; &nbsp; font-size: 20px; &nbsp; &nbsp; font-weight: bold; &nbsp; &nbsp; color: white; &nbsp; &nbsp; background-color:rgba(255,255,255,0.0); &nbsp; &nbsp; border-color:rgba(255,255,255,0.0); &nbsp; &nbsp; text-transform: uppercase; } .sheet-checkbox-wrapper{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 140px; &nbsp; &nbsp; left: 320px; } input[type="checkbox"].sheet-toggle-something { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-toggle-something + span{ &nbsp; &nbsp; background-image: url(" <a href="http://www.uidownload.com/files/927/874/424/button-turn-off-icon.png" rel="nofollow">http://www.uidownload.com/files/927/874/424/button-turn-off-icon.png</a> "); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-toggle-something:checked + span{ background-image: url(" <a href="http://www.uidownload.com/files/508/723/822/button-turn-on-icon.png" rel="nofollow">http://www.uidownload.com/files/508/723/822/button-turn-on-icon.png</a> "); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } Cheers
It worked! Thank you very much!!
1476032636

Edited 1476035181
ThiagoR
Sheet Author
Hello Vince, I came back with another question, what can I be doing wrong in this code that the icons of ammunition are not aligned correctly? &lt;div class="sheet-background"&gt; &nbsp; &nbsp; &lt;input class="sheet-input-name" type="text" name="attr_nome" /&gt;&lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper1"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-vida1" type="checkbox" name="attr_vida1" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &nbsp;&lt;div class="sheet-checkbox-wrapper2"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-vida2" type="checkbox" name="attr_vida2" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper3"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-vida3" type="checkbox" name="attr_vida3" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper4"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-vida4" type="checkbox" name="attr_vida4" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper5"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-movimento1" type="checkbox" name="attr_movimento1" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &nbsp;&lt;div class="sheet-checkbox-wrapper6"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-movimento2" type="checkbox" name="attr_movimento2" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper7"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-movimento3" type="checkbox" name="attr_movimento3" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper8"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-movimento4" type="checkbox" name="attr_movimento4" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &nbsp;&lt;div class="sheet-checkbox-wrapper9"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-munition1" type="checkbox" name="attr_munition1" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper10"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-munition2" type="checkbox" name="attr_munition2" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &nbsp;&lt;div class="sheet-checkbox-wrapper11"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheetmunition3" type="checkbox" name="attr_munition3" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper12"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-munition4" type="checkbox" name="attr_munition4" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper13"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-munition5" type="checkbox" name="attr_munition5" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper14"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-munition6" type="checkbox" name="attr_munition6" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &nbsp;&lt;div class="sheet-checkbox-wrapper15"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheetmunition7" type="checkbox" name="attr_munition7" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &nbsp; &nbsp; &lt;div class="sheet-checkbox-wrapper16"&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input class="sheet-munition8" type="checkbox" name="attr_munition8" value="1" /&gt;&lt;span&gt;&lt;/span&gt; &nbsp; &nbsp; &lt;/div&gt; &lt;/div&gt; .sheet-background { &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/fundo-b-zumbi_zps0nqhxmdm.png</a>"); &nbsp; &nbsp; width: 640px; &nbsp; &nbsp; height: 480px; } .sheet-input-name { &nbsp; &nbsp; &nbsp; position: relative; &nbsp; &nbsp; top: 48px; &nbsp; &nbsp; margin-left: 26px; &nbsp; &nbsp; height: 560px; &nbsp; &nbsp; width: 218px; &nbsp; &nbsp; border-width: 1px; &nbsp; &nbsp; text-align: center; &nbsp; &nbsp; font-family: verdana; &nbsp; &nbsp; font-size: 20px; &nbsp; &nbsp; font-weight: bold; &nbsp; &nbsp; color: white; &nbsp; &nbsp; background-color:rgba(255,255,255,0.0); &nbsp; &nbsp; border-color:rgba(255,255,255,0.0); &nbsp; &nbsp; text-transform: uppercase; } .sheet-checkbox-wrapper1{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 140px; &nbsp; &nbsp; left: 320px; } input[type="checkbox"].sheet-vida1 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-vida1 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo-off_zpsqicobkos.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo-off_zpsqicobkos.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-vida1:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo_zpstocaux2y.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo_zpstocaux2y.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper2{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 140px; &nbsp; &nbsp; left: 400px; } input[type="checkbox"].sheet-vida2 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-vida2 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo-off_zpsqicobkos.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo-off_zpsqicobkos.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-vida2:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo_zpstocaux2y.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo_zpstocaux2y.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper3{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 140px; &nbsp; &nbsp; left: 480px; } input[type="checkbox"].sheet-vida3 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-vida3 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo-off_zpsqicobkos.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo-off_zpsqicobkos.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-vida3:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo_zpstocaux2y.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo_zpstocaux2y.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper4{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 140px; &nbsp; &nbsp; left: 560px; } input[type="checkbox"].sheet-vida4 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-vida4 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo-off_zpsqicobkos.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo-off_zpsqicobkos.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-vida4:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo_zpstocaux2y.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/coraccedilatildeo_zpstocaux2y.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper5{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 235px; &nbsp; &nbsp; left: 320px; } input[type="checkbox"].sheet-movimento1 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-movimento1 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/movimento-off_zpsx5ajfvoq.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/movimento-off_zpsx5ajfvoq.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-movimento1:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/movimento-on_zpsxiwzmhfz.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/movimento-on_zpsxiwzmhfz.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper6{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 235px; &nbsp; &nbsp; left: 400px; } input[type="checkbox"].sheet-movimento2 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-movimento2 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/movimento-off_zpsx5ajfvoq.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/movimento-off_zpsx5ajfvoq.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-movimento2:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/movimento-on_zpsxiwzmhfz.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/movimento-on_zpsxiwzmhfz.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; }.sheet-checkbox-wrapper7{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 235px; &nbsp; &nbsp; left: 480px; } input[type="checkbox"].sheet-movimento3 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-movimento3 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/movimento-off_zpsx5ajfvoq.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/movimento-off_zpsx5ajfvoq.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-movimento3:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/movimento-on_zpsxiwzmhfz.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/movimento-on_zpsxiwzmhfz.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper8{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 235px; &nbsp; &nbsp; left: 560px; } input[type="checkbox"].sheet-movimento4 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-movimento4 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/movimento-off_zpsx5ajfvoq.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/movimento-off_zpsx5ajfvoq.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-movimento4:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/movimento-on_zpsxiwzmhfz.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/movimento-on_zpsxiwzmhfz.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper9{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 330px; &nbsp; &nbsp; left: 300px; } input[type="checkbox"].sheet-munition1 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-munition1 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-munition1:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper10{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 330px; &nbsp; &nbsp; left: 340px; } input[type="checkbox"].sheet-munition2 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-munition2 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-munition2:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper11{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 330px; &nbsp; &nbsp; left: 380px; } input[type="checkbox"].sheet-munition3 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-munition3 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-munition3:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper12{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 330px; &nbsp; &nbsp; left: 420px; } input[type="checkbox"].sheet-munition4 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-munition4 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-munition4:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper13{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 330px; &nbsp; &nbsp; left: 460px; } input[type="checkbox"].sheet-munition5 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-munition5 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-munition5:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper14{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 330px; &nbsp; &nbsp; left: 500px; } input[type="checkbox"].sheet-munition6 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-munition6 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-munition6:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper15{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 330px; &nbsp; &nbsp; left: 540px; } input[type="checkbox"].sheet-munition7 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-munition7 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-munition7:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; } .sheet-checkbox-wrapper16{ &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; top: 330px; &nbsp; &nbsp; left: 580px; } input[type="checkbox"].sheet-munition8 { &nbsp; &nbsp; opacity:0; &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 2; } input[type="checkbox"].sheet-munition8 + span{ &nbsp; &nbsp; background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-off_zpsyarpbdyy.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; position: absolute; &nbsp; &nbsp; z-index: 1; &nbsp; &nbsp; background-size:100%; } input[type="checkbox"].sheet-munition8:checked + span{ background-image: url("<a href="http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png" rel="nofollow">http://i1109.photobucket.com/albums/h426/trodurizen/munition-on_zps2jmaalns.png</a>"); &nbsp; &nbsp; height: 64px; &nbsp; &nbsp; width: 64px; &nbsp; &nbsp; display:inline-block; &nbsp; &nbsp; padding: 0 0 0 0px; &nbsp; &nbsp; background-size:100%; }
1476054316

Edited 1476054338
vÍnce
Pro
Sheet Author
Check your class names class="sheetmunition3" should be class="sheet-munition3" class="sheet-sheetmunition7" should be class="sheet-munition7"
Hello Vince, worked, that lack of attention to my! One last question with this statement (I promise), instead of making icon-on / off icon-how could I do to get an object by clicking on it swapped for icon1, icon2, and icon3 icon4?
1476072122

Edited 1476072328
vÍnce
Pro
Sheet Author
Here's an example(based off of Brian's&nbsp; Cycling Button example from the css wizardry thread) that should work for you. &nbsp;Obviously you will have to make a wrapper div and position it where you want it and add as many images(my example uses 4 icons) that you need to cycle.&nbsp; <a href="http://jsfiddle.net/6r9h3f4o/12/" rel="nofollow">http://jsfiddle.net/6r9h3f4o/12/</a>
1476284379

Edited 1476284413
ThiagoR
Sheet Author
Very thank you, it was great! This weekend I will play with my son thanks to you! I started to make another record, this time for a real RPG and I'm in doubt, but I'll put on another topic! Hugs!
1476300265
vÍnce
Pro
Sheet Author
Good to hear. &nbsp; Have fun.
Vince, I returned! Have two days I posted this question and no one answered yet, do u help me? <a href="https://app.roll20.net/forum/post/4102791/help-how-to-use-if-slash-endif-to-change-the-options-of-a-list" rel="nofollow">https://app.roll20.net/forum/post/4102791/help-how-to-use-if-slash-endif-to-change-the-options-of-a-list</a>