Guest User

Untitled

a guest
Oct 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.54 KB | None | 0 0
  1. /* CSS Document */
  2. .banner-left ul li {
  3.     width:200px;
  4.     list-style: none;
  5. }
  6. .roundabout-holder {
  7.     padding: 0;
  8.     margin: 0;
  9.     width:370px;
  10.     height:auto !important;
  11. }
  12. .roundabout-moveable-item {
  13.     cursor: pointer;
  14.     margin-left:160px;
  15.     background:#FFFFFF;
  16.     padding:15px;
  17.     box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  18.     -webkit-border-radius: 8px;
  19.     -moz-border-radius: 8px;
  20.     border-radius: 8px;
  21.     border:2px #999999 solid;
  22. }
  23. .roundabout-in-focus {
  24.     cursor: auto;
  25. }
  26. /* End CSS Document */
  27.  
  28. <div class="banner-left">
  29.       <ul class="roundabout-holder">
  30.         <li class="roundabout-moveable-item">
  31.           <div class="fImageContainer">
  32.           <center><div class="images">
  33.             <?php include ("slide-thumbnail.php"); ?>
  34.           </div></center>
  35.           <div class="slidenote"><a href="<?php the_permalink(); ?>">
  36.             <?php the_title2('', '', true, '45'); ?>
  37.             ...</a></div>
  38.           <center><div class="rating">
  39.             <?php $star = rand(40,50); $yes = $star%5; ?>
  40.             <img src="<?php bloginfo('template_url'); ?>/images/rating<?php if ($yes=="0") {echo "-".$star;} ?>.png" alt=""/> </div></center>
  41.           <div class="coret">
  42.             <?php include ("old-price.php"); ?>
  43.           </div>
  44.           <div class="harga alignright">
  45.             <?php include ("price.php"); ?>
  46.           </div>
  47.           <center><div class="view"><a href="<?php the_permalink(); ?>" class="view">Detail</a></div></center>
  48.           </div>
  49.         </li>
  50.     <div class="clear"></div>
  51.       </ul>
  52.     </div>
Add Comment
Please, Sign In to add comment