Kenar çubuğunda Değiştir

0 Cevap php

Kod parçası ben Örneğin benim kenar çubuğunun görünümünü değiştirmek için kullanabileceğiniz merak nasıl "kategoriler" "etiketi bulutlar" ve böylece kutularına kendilerini koymak? Şu anda çoğu kutusu (sağda) ile yıkayın, merkez olmuştur ama güzel değildi gelmiştir. Bunu değiştirmek için ne olabilir herhangi bir fikir sahibi değildir, o stil sayfasında veya örneğin kenar çubuğunda nedir?

Bu temayı kullanırken: http://wp-themes.com/colors/?TB_iframe=true

have tested with padding like this: .widget { margin-bottom:12px; padding: 5px; }

ancak başarılı olamadı.

Ben bu nasıl düzeltebilirim Önerileri? Ben bu bir çaylak da İngilizce çok iyi değil değilim ama o zaten denemek. ;)

Style.css

     Sidebar Styles
====================================================================================================  ========================================
*/
#sidebarLayout {width:228px; float:left; margin-left:15px; margin-top:1px;}
.widget { margin-bottom:12px;}
.wdTitle {height:38px; width:228px; background:url(layout/wdTitleBg.png);}
.wdTitle h2 {color:#FFFFFF; font-size:10pt; font-weight:400; line-height:34px; margin-left:15px;}
.wdContent {background:#e1e5e7; width:227px; margin-left:1px; padding-bottom:30px; padding-top:3px;
line-hight:100%;}
.wdContent li:hover {no-repeat;}
.wdContent li {line-height:15px; height:35px; padding-left:25px; margin:1.5px 0px;}
.wdContent ul li ul { display:none; }
.wdFooter {height:4px; background:url(layout/wdFooterBg.png); width:227px; margin-left:1px;}
.wicon {width:34px; height:24px; background:url(layout/widgetIcon.png) no-repeat; float:left; margin-right:2px;}
/* 

Sidebar.php:

    <div id="sidebarLayout">

<div class="widget">
 <div class="wdTitle">
  <h2>Sök?</h2>
 </div>
 <div class="wdContent">
  <div class="icon" id="searchIcon"></div>
   <?php get_search_form(); ?>
  </div>
 <div class="wdFooter"><!-- .wdFooter for design only --></div>
</div>

<!-- <?php if ( function_exists('wp_tag_cloud') ) : ?>
<div class="widget">
 <div class="wdTitle">
  <h2>Etikettmoln</h2>
 </div>
 <div class="wdContent">
  <div>
   <div id="etikettmoln">
    <?php $tags = wp_tag_cloud('orderby=count&order=RAND'); ?>
   </div>
  </div>
 </div>
 <div class="wdFooter"></div>
</div>
<?php endif; ?> -->

 <?php if(!function_exists("dynamic_sidebar") || ! dynamic_sidebar('sidebar')) : ?><?php endif;?>
</div>

Ben anlamadım kim o sizin için Wordpress kullanabilirsiniz.

Herhangi bir yardım için teşekkür ederiz!

0 Cevap