Difference between revisions of "User:Eabrace/Sandbox"
m (→Experiment #4) |
m (→Experiment #4) |
||
Line 196: | Line 196: | ||
</div> | </div> | ||
{{clr}} | {{clr}} | ||
+ | |||
+ | This might be part of the problem: | ||
+ | <div align="center" style="width:375; height:160;"> | ||
+ | <div align="center" style="float:left; width:160; height:160;"> | ||
+ | http://smg.photobucket.com/albums/v623/cohosi/roster/th_B_Samson.jpg | ||
+ | </div> | ||
+ | <div class="right info" align="center" style="float:right;"> | ||
+ | <FONT SIZE = "+2"> | ||
+ | <B>B. Samson</B> | ||
+ | </FONT> | ||
+ | <BR>DIRECTOR | ||
+ | <BR>[[File:Archetypeicon tanker.png|25px]][[File:Originicon natural.png|25px]][[File:Invulnerability ResToPhysicalDmg.png|25px]][[File:SuperStrength Jab.png|25px]] | ||
+ | <BR>Date of Activation: 2004 DEC 06 | ||
+ | <BR>@B Samson | ||
+ | </div> | ||
+ | </div> | ||
+ | {{clr}} | ||
+ | |||
+ | Those two sections should be bound within a 375 pixel container. Instead, they are being forced to the outer right and left margins. | ||
+ | |||
+ | Floating the entire container to the right: | ||
+ | |||
+ | <div align="center" style="float:right; width:375; height:160;"> | ||
+ | <div align="center" style="float:left; width:160; height:160;"> | ||
+ | http://smg.photobucket.com/albums/v623/cohosi/roster/th_B_Samson.jpg | ||
+ | </div> | ||
+ | <div class="right info" align="center" style="float:right;"> | ||
+ | <FONT SIZE = "+2"> | ||
+ | <B>B. Samson</B> | ||
+ | </FONT> | ||
+ | <BR>DIRECTOR | ||
+ | <BR>[[File:Archetypeicon tanker.png|25px]][[File:Originicon natural.png|25px]][[File:Invulnerability ResToPhysicalDmg.png|25px]][[File:SuperStrength Jab.png|25px]] | ||
+ | <BR>Date of Activation: 2004 DEC 06 | ||
+ | <BR>@B Samson | ||
+ | </div> | ||
+ | </div> | ||
+ | {{clr}} | ||
+ | |||
+ | The left side should be 160 pixels wide with the image centered. The image is 86 pixels wide, which should leave 74 pixels for margin, 37 on each side. Instead, the image is pressing right up against the right side content. | ||
+ | |||
+ | Very frustrating. Time to take a break. |
Revision as of 01:45, 11 June 2009
Contents
Experiments
Experiment #1
Question:
Can a wikitable be created with a background image?
CSS for background images:
background-image:url('<image>')
Test image:
Test table code:
{| style="width:75%; height:200px; background-image:url('http://img.photobucket.com/albums/v623/cohosi/badges/OSI_ID.jpg')" border="1" |- |Test |}
Test table:
Test |
Test table code (without background image specification):
{| style="width:75%; height:200px" border="1" |- |Test |}
Test table:
Test |
Suggestion from Titan forums
<table style="background: url(http://img.photobucket.com/albums/v623/cohosi/badges/OSI_ID.jpg) center center no-repeat transparent;width:450px;height:320px;border: solid 1px #000000;border-collapse: collapse;"> <tr> <td>sd54f6s5df4 s5df4s6d5f4<br /><br /><br /><br />S4d6f5</td> </tr> </table>
sd54f6s5df4
s5df4s6d5f4 S4d6f5 |
Removing background image from code:
<table style=";width:450px;height:320px;border: solid 1px #000000;border-collapse: collapse;"> <tr> <td>sd54f6s5df4 s5df4s6d5f4<br /><br /><br /><br />S4d6f5</td> </tr> </table>
sd54f6s5df4
s5df4s6d5f4 S4d6f5 |
Conclusion:
It would appear that wikitables do not allow background images. Either that or this just isn't the right way to make it work. Based on the loss of size formatting in the first table, it would seem that inserting the background image specification invalidates the entire style spec.
Further reading from outside sources indicates that MediaWiki invalidates style tags with "url" components.
Experiment #2
Using an HTML table with wiki images.
|
||
|
Experiment #3
Line spacing between badge rows using CSS font-size and line-height properties.
Experiment #4
Using Div tags to create an overlay.
This might be part of the problem:
Those two sections should be bound within a 375 pixel container. Instead, they are being forced to the outer right and left margins.
Floating the entire container to the right:
The left side should be 160 pixels wide with the image centered. The image is 86 pixels wide, which should leave 74 pixels for margin, 37 on each side. Instead, the image is pressing right up against the right side content.
Very frustrating. Time to take a break.