Advertisement
TIM-DM

IMVU Product Page Layout Code

Sep 6th, 2014
964
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.62 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <style type="text/css">
  4.             #layoutWrapper {
  5.                 background-color: #121212;
  6.                 border: 1px solid #666666;             
  7.                 height: 470px;
  8.                 position: relative;
  9.                 width: 900px;
  10.             }  
  11.            
  12.             #productImage, #productTitle, #productDescription, #productNotes, #relatedProducts {
  13.                 position: absolute;
  14.             }  
  15.            
  16.             #productTitle, #productDescription, #productNotes {
  17.                 border-left: 1px dotted #666666;
  18.                 border-bottom: 1px dotted #666666; 
  19.             }
  20.            
  21.             #productImage, #productTitle, #productDescription, #productNotes, span, #relatedProducts {
  22.                 text-align: center;
  23.             }
  24.  
  25.             #productImage {
  26.                 border-bottom: 1px dotted #666666;             
  27.                 height: 350px;
  28.                 width: 500px;
  29.             }
  30.            
  31.             #productImage img {
  32.                 max-height: 350px;
  33.                 max-width: 500px;
  34.             }
  35.  
  36.             #productTitle {
  37.                 color: #7CFF7C;
  38.                 height: 55px;
  39.                 left: 502px;
  40.                 width: 396px;
  41.             }
  42.            
  43.             #productDescription {
  44.                 color: #66AFFF;
  45.                 height: 196px;
  46.                 left: 502px;
  47.                 top: 57px;
  48.                 width: 396px;
  49.             }
  50.            
  51.             #productDescription p {            
  52.                 padding: 0 20px;
  53.             }
  54.            
  55.             #productNotes {
  56.                 color: #B92E2E;
  57.                 height: 96px;
  58.                 left: 502px;
  59.                 top: 254px;
  60.                 width: 396px;                  
  61.             }
  62.            
  63.             span {
  64.                 border-bottom: 1px dotted #666666;
  65.                 color: #FFFFFF;
  66.                 display: block;
  67.                 font-size:
  68.                 font-weight: bold;
  69.             }
  70.            
  71.             #layoutWrapper h4 {
  72.                 margin: 0px;
  73.                 text-transform: uppercase;
  74.             }
  75.            
  76.             #layoutWrapper ul {
  77.                 list-style: none;
  78.                 margin: 5px 0px 0px 0px;
  79.                 padding: 0px;              
  80.             }
  81.            
  82.             #relatedProducts {
  83.                 height: 96px;
  84.                 top: 351px;
  85.                 width: 900px;
  86.             }
  87.            
  88.             #relatedProducts a {
  89.                 display: inline-block;
  90.                 margin-top: 5px;
  91.                 padding: 3px;
  92.             }
  93.         </style>
  94.     </head>
  95.     <body >
  96.         <div id="layoutWrapper">
  97.             <div id="productImage">
  98.                 <img src="" />
  99.             </div>
  100.             <div id="productTitle">
  101.                 <span><h4>Title</h4></span>
  102.                
  103.             </div>
  104.             <div id="productDescription">
  105.                 <span><h4>Description</h4></span>
  106.                 <p></p>
  107.             </div>
  108.             <div id="productNotes">
  109.                 <span><h4>Notes</h4></span>
  110.                 <ul>
  111.                     <li>Try BEFORE you buy!</li>
  112.                     <li>Please Leave a review!</li>
  113.                     <li>Problems or comments, send me a message!</li>
  114.                 </ul>
  115.             </div>
  116.             <div id="relatedProducts">
  117.                 <span><h4>Related Products</h4></span>             
  118.                 <a href=""><img style="width: 100px; height: 80px;" src="" /></a>
  119.                 <a href=""><img style="width: 100px; height: 80px;" src="" /></a>
  120.                 <a href=""><img style="width: 100px; height: 80px;" src="" /></a>
  121.                 <a href=""><img style="width: 100px; height: 80px;" src="" /></a>
  122.             </div>
  123.         </div>
  124.     </body>
  125. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement