انجمن


جابجایی ستون ها در ساید بار  (۱۶ نوشته)

  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۴ دی ۱۳۸۶ - ۱۸:۳۲

    این صفحه رور نگاه کنید

    http://cellphone.onlinewebshop.net/wordpress-2.3.2/wordpress/

    این قالب ، تو قسمت تنظیماتش میتونی ، به ساید بارت که پایین صفحه قرار گرفته ، چند تا چیز پیش فرض ، از جمله لینک دونی و صفحات و... رو اضافه کنی.

    حالا من میخوام تو هر ستون ، فقط یک دسته از لینک ها نمایش داده بشه ..

    یعنی به جای اینکه ، دسته link زیر دسته blogroll نمایش داده بشه ، در ستون کناریش که خالی هست ، نمایش داده بشه. :?

    باید چی کار کنم؟

  • navid

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۲۷۱۸
    تشکر شده: ۲۹۹ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۴ دی ۱۳۸۶ - ۱۹:۰۷

    شما برای لینک هاتون ۲ تا دسته بندی درست کردید . هر دسته بندی یک شناسه ( ID ) داره .
    حالا به جای کد قسمت لینک هایی که الان هست کد زیر رو وارد کنید :
    <?php wp_list_bookmarks('category=2'); ?>
    ( در اینجا فرض شده دسته شماره ۱ لینک های شما شناسش ۲ هست ) .
    به همین ترتیب کد زیر رو هم در جای مناسبش قرار بدید :
    <?php wp_list_bookmarks('category=3'); ?>
    ( اینجا هم فرض شده شناسه دسته بندی دوم لینک های شما ۳ هست ) .
    اطلاعات بیشتر :
    http://codex.wordpress.org/Template_Tags/wp_list_bookmarks

  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۴ دی ۱۳۸۶ - ۱۹:۲۶

    مرسی ولی من باید این تغییرات رو تو کدوم قسمت از قالبم اجرا کنم.

    یه جا تو dynamic_sidebar.php این بلوک ها رو میخونه

    <div class="block first">
    				<?php $hemingway->get_block_output('block_1'); ?>
    			</div>

    یه بار هم تو استاتیک سایدبار

    <h2>About Page</h2>
    				<?php query_posts('pagename=About'); ?>
    				<?php if (have_posts()) : ?>
    				<?php while (have_posts()) : the_post(); ?>
    				<?php the_content(); ?>
    				<?php endwhile; ?>
    				<?php endif; ?>
  • navid

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۲۷۱۸
    تشکر شده: ۲۹۹ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۴ دی ۱۳۸۶ - ۲۰:۲۴

    لطفا محتویات فایل index.php رو اینجا بنویسید .
    راستی شما از ابزارک ها ( ویدجت ) استفاده می کنید ؟!

  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۴ دی ۱۳۸۶ - ۲۱:۰۴

    از توی خود تنظمات قالب هست. بلوک بلوک اضافه میشه به قالب .

    index.php

    <?php get_header(); ?>
    
    	<div id="primary" class="twocol-stories">
    		<div class="inside">
    
    			<?php
    				// Here is the call to only make two posts show up on the homepage REGARDLESS of your options in the control panel
    				query_posts('showposts=2');
    			?>
    			<?php if (have_posts()) : ?>
    				<?php $first = true; ?>
    				<?php while (have_posts()) : the_post(); ?>
    					<div class="story<?php if($first == true) echo " first" ?>">
    						<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
    						<?php $hemingway->excerpt() ?>
    					<div class="detailbox">
    						<b class="rtop4">
      						<b class="r14"></b> <b class="r24"></b> <b class="r34"></b> <b class="r44"></b>
    						</b>
    					<div class="details">
    
    							<?= _('Posted on') ?> <?php the_time( $hemingway->date_format() ) ?> | <?php comments_popup_link('no comments', '1 comment', '% comments'); ?> | Filed Under: <?php the_category(', ') ?> <div class="read-on"><a href="<?php the_permalink() ?>">read on</a></div>
    
    					</div>
    						<b class="rbottom4">
      						<b class="r44"></b> <b class="r34"></b> <b class="r24"></b> <b class="r14"></b>
    						</b>
    					</div>
    					</div>
    					<?php $first = false; ?>
    				<?php endwhile; ?>
    
    		</div>
    
    			<?php else : ?>
    
    				<h2 class="center">Not Found</h2>
    				<p class="center">Sorry, but you are looking for something that isn't here.</p>
    				<?php include (TEMPLATEPATH . "/searchform.php"); ?>
    
    			<?php endif; ?>
    
    			<div class="clear"></div>
    
    	</div>
    	<!-- [END] #primary -->
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    dynamic side bar

    <?php global $hemingway ?>
    <hr class="hide" />
    	<div id="ancillary">
    
    		<div class="inside">
    			<div class="block first">
    				<?php $hemingway->get_block_output('block_1'); ?>
    			</div>
    
    			<div class="block">
    				<?php $hemingway->get_block_output('block_2'); ?>
    			</div>
    
    			<div class="block">
    				<?php $hemingway->get_block_output('block_3'); ?>
    			</div>
    
    			<div class="clear"></div>
    		</div>
    
    	</div>
    
    	<!-- [END] #ancillary -->

    static side bar

    <hr class="hide" />
    	<div id="ancillary">
    		<div class="inside">
    			<div class="block first">
    				<h2>About Page</h2>
    				<?php query_posts('pagename=About'); ?>
    				<?php if (have_posts()) : ?>
    				<?php while (have_posts()) : the_post(); ?>
    				<?php the_content(); ?>
    				<?php endwhile; ?>
    				<?php endif; ?>
    			</div>
    
    			<div class="block">
    				<h2>Recently</h2>
    				<ul class="dates">
    					<?php
    						// I love Wordpress so
    						query_posts('showposts=10');
    					?>
    					<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    					<li><a href="<?php the_permalink() ?>"><span class="date"><?php the_time('m.j') ?></span> <?php the_title() ?> </a></li>
    					<?php endwhile; endif; ?>
    				</ul>
    			</div>
    
    			<div class="block">
    				<h2>Categories</h2>
    				<ul class="counts">
    					<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
    				</ul>
    			</div>
    
    			<div class="clear"></div>
    		</div>
    	</div>
    	<!-- [END] #ancillary -->

    side bar

    <?php
    include (TEMPLATEPATH . '/dynamic_sidebar.php'); 
    
    // If you want to ignore the Theme Options handling of the sidebar and just do it yourself
    // Use this one instead of the above
    // include (TEMPLATEPATH . '/static_sidebar.php');
    ?>

    این چند تا قسمت که فکر کنم ، باهاش مرتبط بود رو گزاشتم . ممنون میشم اگه کمک کنی .

  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۴ دی ۱۳۸۶ - ۲۱:۵۱

    می خواستم آدرس قالب رو بدم ولی وردپرس .نت قات زده

    اینم قالب کامل

  • navid

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۲۷۱۸
    تشکر شده: ۲۹۹ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۴ دی ۱۳۸۶ - ۲۲:۴۸

    قالبش رو خیلی پیچیده کرده . در فایل dynamic_sidebar.php یکی از ۳ بلاک زیر رو حذف و به جای کد هایی که توی پست قبلی نوشتم رو قرار بدید :

    <div class="block first">
    				<?php $hemingway->get_block_output('block_1'); ?>
    			</div>
    
    			<div class="block">
    				<?php $hemingway->get_block_output('block_2'); ?>
    			</div>
    
    			<div class="block">
    				<?php $hemingway->get_block_output('block_3'); ?>
    			</div>
  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۴ دی ۱۳۸۶ - ۲۳:۵۰

    ایول دستت درد نکنه . درست شد .

    فقط اینشم درست بشه عالی میشه .

    من هر چی با فایل css اش ور رفتم نفهمیدم باید چی کار بکنم ، که قاب دور مثلا blogroll که الآن مستطیل شکل هست ، مثل بقیه ستون

    ها، بیضی شکل(مثل ستون related entries ) بشه .

    /*
    Theme Name: Hemingway meets CognitiveCombine III
    Theme URI: http://www.cognitivecombine.com/?p=33
    Description: Yet another modification of the Hemingway theme. This time I have implemented rounded corners and given the whole thing a unified structure. I have also added a Support Box, please view the supportbox_readme.txt file to understand how to use  it, turn it on or off. For support requests please visit the <a href="http://www.cognitivecombine.com/?p=33">support page</a>.
    Version: 1.00
    Author: CognitiveCombine
    Author URI: http://www.cognitivecombine.com/
    */
    
    /*-----------------------------------------------------------------------------------------------
      Global Styles
    -----------------------------------------------------------------------------------------------*/
    
    * {
    	padding:0;
    	margin:0;
    }
    h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, ul, ol, dl, fieldset, address { margin:1em 0; }
    li, dd { margin-left:5%; }
    fieldset { padding: .5em; }
    select option{ padding:0 5px; }
    
    .hide, .print-logo, .close-button{ display:none; }
    .left{ float:left; }
    .right{ float:right; }
    .clear{ clear:both; height:1px; font-size:1px; line-height:1px; }
    a img{ border:none; }
    
    /*-----------------------------------------------------------------------------------------------
      Layout / Base Page Styling - bottom
    -----------------------------------------------------------------------------------------------*/
    
    body{
    	background:#796646;
    	color:#000;
    	font-size:11px;
    	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, Arial, sans-serif;
        	margin-left: auto;
        	margin-right: auto;
    	width:990px;
    }
    /* This class sets the width and position for all rows */
    .inside{
    	width:98%;
    	min-width:65em;
    	max-width:85em;
    	margin:0 auto;
    }
    
    a{
    	color:#796646;
    }
    
    h1{
    	color:#cc0000;
    	font-size:1.5em;
    	font-weight:normal;
    	margin:1.5em 0;
    }
    
    h2, h3{
    	font-size:1.15em;
    	color:#FFF;
    	font-weight:normal;
    }
    #primary h2{
    	color:#777e6f;
    	font-weight:bold;
    }
    
    #ancillary h2{
    	color:#000;
    	background:#ccc1a3;
    	font-weight:bold;
    	text-align:center;
    }
    
    b.rtop3, b.rbottom3{display:block;background: #fff}
    b.rtop3 b, b.rbottom3 b{display:block;height: 1px;
        overflow: hidden; background: #ccc1a3}
    b.r13{margin: 0 5px}
    b.r23{margin: 0 3px}
    b.r33{margin: 0 2px}
    b.rtop3 b.r43, b.rbottom3 b.r43{margin: 0 1px;height: 2px}
    
    p{
    	line-height:1.75em;
    }
    
    ul li{
    	list-style-type:square;
    	margin:0.5em 0 0.5em 2em;
    }
    
    blockquote{
    	margin-left:1em;
    	padding-left:1em;
    	margin-right:1em;
    	padding-right:1em;
    	border-left:2px solid #777e6f;
    	border-right:2px solid #777e6f;
    	color:#000;
    	background: #b4b59e;
    }
    
    code{
    	font-size: 1em;
    	margin: 3em 0;
    	padding: 0 1.2em 0 1.2em;
    	border-left:2px solid #777e6f;
    	border-bottom:1px dashed #777e6f;
    }
    
    pre{
    	width:100%;
    	padding:1em 0;
    	overflow:auto;
    	border-top:1px dotted #333;
    	border-bottom:1px dotted #333;
    }
    
    table{
    	width:100%;
    	border-spacing:2px;
    	margin:1.5em 0;
    }
    table th, table td{ padding:0.3em 0.75em }
    table th{
    	background:#CCC;
    	color:#000;
    	text-align:left;
    }
    table td{
    	background:#333;
    	color:#FFF;
    }
    table caption{
    	text-align:left;
    	color:#FFF;
    	margin-bottom:-1em;
    	margin-top:1em;
    }
    
    .rule{
    	border-top:1px solid #CCC;
    	height:1px;
    	font-size:1px;
    	line-height:1px;
    	margin:1.5em 0;
    }
    
    /*-----------------------------------------------------------------------------------------------
      Header - top
    -----------------------------------------------------------------------------------------------*/
    #header{
    	background:#fff;
    	width:900px;
    }
    
    #headcontainer{
    	background:#fff;
        	margin-left: auto;
        	margin-right: auto;
    	margin-top: 25px;
    	width:990px;
    }
    
    b.rtop, b.rbottom{display:block;background: #796646}
    b.rtop b, b.rbottom b{display:block;height: 1px;
        overflow: hidden; background: #fff}
    b.r1{margin: 0 5px}
    b.r2{margin: 0 3px}
    b.r3{margin: 0 2px}
    b.rtop b.r4, b.rbottom b.r4{margin: 0 1px;height: 2px}
    
    #header .inside{
    	padding:3em 0;
    }
    #header h2{
    	font-size:2.25em;
    	margin:0 0.5em 0 0;
    	padding:0 0.5em 0.25em 0;
    	border-right:2px solid #fff;
    	float:left;
    	font-weight: bold;
    	color: #000;
    }
    #header h2 a{ text-decoration:none; color: #000; }
    #header h2 a:active{ outline:none; }
    #header h2 a:focus
    {
      -moz-outline-style: none;
    }
    
    #header p{
    	padding:1em 0;
    	margin:0;
    	line-height:1em;
    }
    
    .description {
    	color: #aeadad;
    }
    
    /*-----------------------------------------------------------------------------------------------
      Primary Items - middle
    -----------------------------------------------------------------------------------------------*/
    
    #primary{
    	background:#fff
    	padding:10px 0 2em 0;
    	color:#000;
        	margin-left: auto;
        	margin-right: auto;
    	width:990px;
    }
    
    #primary.onecol-stories .primary{
    	float:left;
    	width:50%;
    
    }
    #primary.onecol-stories .secondary{
    	float:right;
    	width:40%;
    	margin:0 0 0 10%;
    
    }
    
    #primary.twocol-stories .story{
    	float:center;
    	text-align:left;
    	width:48%;
    	margin:0 0 0 4%;
    	display:inline;
    
    }
    
    * html #primary.twocol-stories .story{
    	margin-left:2%;
    
    }
    #primary.twocol-stories .first, * html #primary.twocol-stories .first{
    	margin:0 0 0 0;
    
    }
    
    .story h3{
    	font-size:1.15em;
    	margin:0 0 1.5em 0;
    	font-weight:normal;
    	color:#cc0000;
    }
    .story h3 a{
    	color:#cc0000; font-weight:bold;
    	text-decoration:none;
    
    }
    
    .story .details{
    
    	text-align:left;
    	width:90%;
    	padding:5px;
    	font-size:0.95em;
    	color:#777e6f;
    
    }
    
    .story .detailbox{
    	margin:1em 0;
    	text-align:center;
    	width:100%;
    	font-size:0.95em;
    	color:#777e6f;
    	background: #eaeada;
    }
    
    b.rtop4, b.rbottom4{display:block;background: #fff}
    b.rtop4 b, b.rbottom4 b{display:block;height: 1px;
        overflow: hidden; background: #eaeada}
    b.r14{margin: 0 5px}
    b.r24{margin: 0 3px}
    b.r34{margin: 0 2px}
    b.rtop4 b.r44, b.rbottom4 b.r44{margin: 0 1px;height: 2px}
    
    .story .read-on{
    	text-align:right;
    	background:url(images/readon_black.gif) 100% 60% no-repeat;
    	padding-right:20px;
    	display:block;
    }
    .story .details a{
    	color:#777e6f; font-weight:bold;
    	text-decoration:none;
    }
    .story .details a:hover{ color:#777e6f; }
    
    /* Single Post Styles */
    
    #primary .primary{
    	float:right;
    	width:65%;
    
    }
    #primary .secondary{
    	float:right;
    	width:30%;
    	margin-right:5%;
    	padding-top:0.65em;
    	display:inline;
    }
    * html #primary .secondary{ margin-right:3%; }
    
    .secondary .featured p{
    	border-bottom:1px dashed #777e6f;
    	border-top: 1px dashed #777e6f;
    	padding:0.5em 0 0.6em 0;
    	line-height:1.5em;
    	margin:1em 0 0 0;
    	padding: 3px;
    	color:#777e6f;
    }
    .secondary .featured dl{
    	margin:0 0;
    	border-bottom:1px dashed #777e6f;
    	padding:0.5em 0 0.6em 0;
    	padding: 3px;
    }
    .secondary dt{
    	display:inline;
    	margin:0;
    	padding:0;
    	color:#777e6f;
    }
    .secondary dd{
    	display:inline;
    	margin:0;
    	padding:0;
    	color:#777e6f;
    }
    .secondary dd a{ color:#777e6f; }
    .secondary dd a:hover{ color:#777e6f; }
    
    .single-post h1, .single-post h2{ margin-top:0; }
    
    /*-----------------------------------------------------------------------------------------------
    	Secondary Items
    -----------------------------------------------------------------------------------------------*/
    
    #secondary{
    	background:#eaeada;
    	padding:1px 2em;
    	border-top:0px solid #291c0e;
    }
    
    .comment-head{
    	border-bottom:1px solid #929b89;
    	padding:0.8em 2em 1.0em 2em;
    }
    .comment-head h2{
    	font-size:1.5em;
    	margin:0;
    	color:#929b89;
    }
    .comment-head a{
    	text-decoration:none;
    	color:#000;
    }
    .comment-head .details{
    	font-size:0.95em;
    }
    
    ol#comments{
    	list-style-type:none;
    	margin:2em 0;
    }
    ol#comments li{
    	list-style-type:none;
    	margin:2em 0;
    }
    
    #comments cite{
    	float:left;
    	width:31%;
    	font-style:normal;
    	text-align:right;
    }
    * html #comments cite{ width:30.6%; }
    #comments cite span{
    	display:block;
    }
    #comments cite .author{ font-size:1.2em; color:#929b89; font-weight:bold; }
    #comments cite .author a{
    	text-decoration:none;
    	color:#929b89;
    	font-weight:bold;
    }
    #comments cite .date{
    	text-decoration:none;
    	color:#929b89;
    	font-weight:bold;
    }
    #comments cite .admin-tools{
    	margin:5px 0;
    }
    #comments cite .admin-tools a{
    	float:right;
    	margin:0 5px;
    	padding:0px 3px 3px;
    	background:#666;
    	border:1px solid #999;
    	text-decoration:none;
    }
    #primary .secondary .admin-tools{ margin:1em 0; }
    
    #preview{
    	margin:1em 0;
    	padding:0.5em;
    	border:1px solid #333;
    }
    #preview p{ margin:1em 0 0 0; }
    #errors{ color:#FF0000; font-weight:bold; }
    
    #comments .pingback cite .author{
    	display:block;
    	padding-top:68px;
    	background:url(images/trackback_pingback.gif) 100% 0 no-repeat;
    }
    
    #comments .content{
    	float:left;
    	width:60%;
    	margin-left:1.9%;
    	border-left:1px solid #868686;
    	padding: 0 0 0 2%;
    }
    #comments .content p{
    	margin:0 0 1em 0;
    }
    #comments .content h3{
    	margin:0;
    	font-size:1em;
    }
    
    #comment-form{
    	margin:5em 0 5em 35.4%;
    	width:36em;
    	color:#000;
    }
    
    #comment-form h3{
    	color:#000;
    	font-weight:bold;
    }
    
    input.textfield{
    	width: 15em;
    	margin:5px 0;
    }
    textarea.commentbox{
    	width:28em;
    	height:10em;
    	padding:0.25em;
    	margin:5px 0;
    	font-size:1.25em;
    	font-family:Arial, Helvetica, sans-serif;
    }
    label.text{
    	position:relative;
    	left:0.5em;
    	top:-0.5em;
    }
    .formactions input.submit{
    	float:right;
    	margin:-1em 0 0 0;
    	padding:0 0.5em;
    }
    .formactions .spinner{
    	float:right;
    	margin:-8px -20px 0 0;
    }
    
    /*-----------------------------------------------------------------------------------------------
      Ancillary Items
    -----------------------------------------------------------------------------------------------*/
    
    #ancillary{
    	padding:2em 0 0 0;
    	background:#fff;
    }
    #ancillary .block{
    	float:left;
    	width: 30%;
    	margin:0 0 0 5%;
    }
    * html #ancillary .block{
    	margin-left:3.9%;
    }
    #ancillary .twice-length{ width:100%; }
    #ancillary .thrice-length{ width:60%; }
    #ancillary .first, * html #ancillary .first{
    	clear:both;
    	margin:0;
    }
    #ancillary .block-separator{
    	clear:both;
    	height:2.5em;
    }
    
    #ancillary .block h2, #ancillary .block h3{
    	margin:0 0 2em 0;
    }
    
    ul.dates, ul.counts, ul.blogroll ul, ul.pages{
    	list-style-type:none;
    	margin:1.5em 0 2em 0;
    	border-top:0px dashed #929b89;
    }
    ul.dates li, ul.counts li, ul.blogroll ul li, ul.pages li{
    	list-style-type:none;
    	margin:0;
    	padding:0.5em 0;
    	border-bottom:1px dashed #929b89;
    }
    ul.dates .date{
    	color:#000;
    	padding:0 1.5em 0 0;
    }
    
    ul.counts .count{
    	float:right;
    	color:#000;
    }
    
    ul.dates a, ul.counts a, ul.blogroll a, ul.pages a{
    	color:#000;
    	text-decoration:none;
    }
    ul.dates a:hover, ul.dates a:hover .date, ul.counts a:hover, ul.counts a:hover .count, ul.blogroll a:hover, ul.pages a:hover{
    	color:#000;
    }
    ul.blogroll{
    border:none;
     margin:0; 
    
    }
    ul.blogroll li{
    	border:none;
    	margin-left:2em;
    	list-style-type:none;
    }
    
    ul.pages ul{
    	margin:0;
    }
    ul.pages ul li{
    	border:none;
    	margin-left:2em;
    	list-style-type:square;
    }
    
    /*-----------------------------------------------------------------------------------------------
      Foooter
    -----------------------------------------------------------------------------------------------*/
    
    #footer{
    	clear:both;
    	color:#000;
    	margin:0em 0em 0em 0em;
    	background:#eaeada;
    	width:990px;
        	margin-left: auto;
        	margin-right: auto;
    	border-top:0px solid #878870;
    }
    #footer .inside{
    	padding:1em 0;
    }
    #footer p{
    	margin:0;
    	font-size:0.95em;
    }
    #footer p.copyright{ float:left; color:#000; }
    #footer p.attributes{ float:right; }
    #footer p.attributes a{
    	padding:0 0 0 1em;
    	text-decoration:none;
    	color:#000;
    }
    #footer p.copyright a{
    	text-decoration:none;
    	font-weight: bold;
    	color:#000;
    }
    #footer p.attributes a:hover{
    	color:#000;
    }
    
    /*-----------------------------------------------------------------------------------------------
      Support Box
    -----------------------------------------------------------------------------------------------*/
    
    #supportbox{
    	clear:both;
    	color:#624740;
    	background:#fff;
    	padding:2px;
    }
    #supportbox p{
    	margin:0;
    	font-size:0.95em;
    }
    #supporttitle{ float:left; color:#624740; font-weight:bold; padding:2px;}
    
    #supportinside{
    	clear:both;
    	padding:2px;
    	background:#fff;
        	margin-left: auto;
        	margin-right: auto;
    
    }
    #supportinside p.attributes{ /*float:center;*/ }
    #supportinside p.attributes a{
    	text-decoration:none;
    	color:#fff;
    }
    #supportinside p.copyright a{
    	text-decoration:none;
    	font-weight: bold;
    	color:#fff;
    }
    #supportinside p.attributes a:hover{
    	color:#fff;
    }
    
    #supportcontainer{
    	background:#fff;
        	margin-left: auto;
        	margin-right: auto;
    	width:990px;
    	margin-bottom: 25px;
    }
    
    b.rtop2, b.rbottom2{display:block;background: #796646}
    b.rtop2 b, b.rbottom2 b{display:block;height: 1px;
        overflow: hidden; background: #fff}
    b.r12{margin: 0 5px}
    b.r22{margin: 0 3px}
    b.r32{margin: 0 2px}
    b.rtop2 b.r42, b.rbottom2 b.r42{margin: 0 1px;height: 2px}
    
    /*-----------------------------------------------------------------------------------------------
      Search
    -----------------------------------------------------------------------------------------------*/
    
    #search{
    	float:right;
    	width:200px;
    	margin:1em 0 0 0;
    	-moz-opacity:0.4;
    	text-align:right;
    }
    #search:hover{
    	-moz-opacity:1.0;
    }
    #search .searchimg{
    	float:left;
    	width:14px;
    	height:13px;
    	background:url(images/search.gif) 0 0 no-repeat;
    	position:relative;
    	top:4px;
    }
    #search input{
    	width:175px;
    	font-size: 0.85em;
    	background:#CCC;
    	margin-top:2px;
    }
    #search input:focus{
    	background:#FFF;
    }
    
    #searchform{
    	margin:1em 0;
    }
    
    #searchform #s{
    	background:#222;
    	border:none;
    	border-bottom:1px solid #333;
    	width:30em;
    	color:#666666;
    	padding:0.25em;
    }
    
    #searchform #searchsubmit{
    	background:#000;
    	color:#666;
    	border:none;
    	font-size:0.9em;
    	text-transform:uppercase;
    	letter-spacing:0.25em;
    }
    
    /* Legacy Typo CSS */
    
    #search-results{
    	width:30%;
    	background:#333;
    	padding:0 0 0 0;
    	float:right;
    	-moz-opacity:0.9;
    	border-top:1em solid #000;
    }
    #search-results h3{
    	font-weight:bold;
    	text-align:left;
    	margin:0;
    	padding:0 0 1em 0;
    	background:#000;
    
    }
    #search-results small{
    	display:block;
    	text-align:left;
    	font-size:0.9em;
    	padding:0.5em 1em 0.7em 1em;
    	border-top:1px solid #666;
    	border-bottom:1px solid #555;
    }
    #search-results small a{
    	color:#CCC;
    }
    #search-results ul li{
    	list-style-type:none;
    	padding:0 1em 0.5em 1em;
    	margin:0.5em 0;
    }
    #search-results ul li:hover{
    	background:#202020;
    }
    #search-result ul{ margin:0; }
    #search-results ul li a{
    	text-decoration:none;
    	border-bottom:1px dotted #CCC;
    }
    
    #search img.archives-icon{
    	margin:0 7px 0 0;
    	top:1px;
    }
  • navid

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۲۷۱۸
    تشکر شده: ۲۹۹ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۵ دی ۱۳۸۶ - ۰۸:۲۳

    بجای تگی که برای نمایش لینک ها گذاشتید از این تگ استفاده کنید :
    <?php wp_list_bookmarks('category=2&before=<h2><b class="rtop3"><b class="r13"/><b class="r23"/><b class="r33"/><b class="r43"/></b>&after=<b class="rbottom3"><b class="r43"/><b class="r33"/><b class="r23"/><b class="r13"/></b></h2>'); ?>

  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۵ دی ۱۳۸۶ - ۱۱:۵۶

    مرسی ولی ریلیتد وبسایت رو که کد بالا رو گزاشتم ، این شکلی شد :-[

  • navid

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۲۷۱۸
    تشکر شده: ۲۹۹ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۵ دی ۱۳۸۶ - ۱۳:۰۶

    ببخشید . اشتباه از من بود. کد زیر رو قرار بدید :
    <?php wp_list_bookmarks('category=2&title_before=<h2><b class="rtop3"><b class="r13"/><b class="r23"/><b class="r33"/><b class="r43"/></b>&title_after=<b class="rbottom3"><b class="r43"/><b class="r33"/><b class="r23"/><b class="r13"/></b></h2>'); ?>

  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۵ دی ۱۳۸۶ - ۱۳:۱۲

    :-[ نشد

    من کد ها رو تو دریم ویور می برم درست میکنم. ولی وقتی میزارم دوباره همون قبلی اس

    دستت درد تکنه .

  • navid

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۲۷۱۸
    تشکر شده: ۲۹۹ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۵ دی ۱۳۸۶ - ۱۳:۲۳

    نمی فهمم چرا خروجی اشتباه می ده . کد زیر رو امتحان کنید :
    <?php wp_list_bookmarks('category=2&title_before=<h2><b class="rtop3"><b class="r13"></b><b class="r23"></b><b class="r43"></b></b>&title_after=<b class="rbottom3"><b class="r43"></b><b class="r33"></b><b class="r23"></b><b class="r13"></b></b></h2>'); ?>

    اگه اینم مشکل داشت لطفا خروجی دریم ویور رو بدید . شاید مشکل از اون باشه .

  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۵ دی ۱۳۸۶ - ۱۳:۳۲

    مرسی ،درست شد .دستت درد نکنه.... @},-

  • navid

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۲۷۱۸
    تشکر شده: ۲۹۹ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۵ دی ۱۳۸۶ - ۱۳:۴۳

    خواهش می کنم. کد آخری دقیقا همون کد قبلیش بود فقط طرز نوشتنش کمی فرق داشت. مشکل اون قبلی بر می گرده به دریم ویور ;-)

  • 611

    آفلاین
    عضو
    تعداد نوشته‌ها: ۴۵
    تشکر شده: ۴ بار
    # نوشته شده: ۱۶ سال پیش
    ۱۵ دی ۱۳۸۶ - ۱۳:۴۶

    نخیرم :D

درباره‌ی این موضوع