رفتن به مطلب

عدم نمایش منوی سایت در نسخه ریسپانسیو


پست های پیشنهاد شده

سلام دوستان

نسخه ریسپانسیو قالب سایت من در مرورگر های تلفن همراه منوی سایت رو نمایش نمیده. چطور این مشکل رو حل کنم؟

لینک به ارسال

توی css قالب ببینید حتما کد منو رو در سایز نمایشگرهای پایین با کد display:none مشخص کرده که باید تبدیل به display:block کنید و یا اصلا تعریفی نکرده که بعید میدونم.

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

دوستان لطف کنن بزارن.

لینک به ارسال

اصلا کدی تعریف نکرده واسه منو.

لطفا کد مربوط به قرار دادن منو در نسخه ریسپانسیو رو بهم بدید اگر ممکنه همون روش کرکره ای عالیه

لینک به ارسال

سلام دوست عزیز ،

از این کد استفاده کنید


$(document).ready(function(){
$("selector").click(function(){
$("selector").slideToggle();
})
});

با احترام

بجای سلکتور اولی class یا id دکمه ای که روش کلیک میشه رو وارد کنید و در سلکتور دومی منویی که قراره باز / بسته بشه

لینک به ارسال

ببخشید دوستان من از برنامه نویسی زیاد سر در نمیارم به روش کاملا ابتدایی توضیح بدید !

لینک به ارسال

سلام،

با این کد شما میتونی برای وبسایتت در حالت واکنشگرا یه منو کشویی ایجاد کنی (در حالت دسکتاپ هم میتونی منو کشویی ایجاد کنی :) )

.raedy: بعد از آماده بودن صفحه

.click : وقتی که برروی selector کلیک شد (این رویداد رو میشه تغییر داد)

Slidetoggle : منو selector را به صورت کشویی باز/بسته کن (این رویداد رو میشه تغییر داد)

ابتدا در قالب وبسایتت کتابخانه جی کوئری رو فراخوانی کن سپس این کد رو درون تگ <head></head> قرار بده


<script type="text/javascript">
$(document).ready(function(){
$("selector").click(function(){
$("selector").slideToggle();
})
});
</script>

توضیح کامل و خوب بود؟! :D

با احترام

ویرایش شده توسط boysun
لینک به ارسال

ابتدا در قالب وبسایتت کتابخانه جی کوئری رو فراخوانی کن

چجوری فراخوانی کنم؟

ممکنه فایل هایی از قالبم رو که باید ویرایش بشه رو بفرمایید همینجا بزارم تا خودتون چکش کنید؟

لینک به ارسال

چجوری فراخوانی کنم؟

هر قالبی ممکنه از کتابخانه جی کوئری داخلی یا خارجی استفاده کنه

خارجی مثل :


<script type="text/rocketscript" 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js?ver=1.11.1'></script>

یا داخلی مثل:


<script type="text/rocketscript" 'http://yourdomain.com/wp-content/themes/yourtheme/js/query.min.js?ver=1.11.1'></script>

استفاده کنه

ممکنه فایل هایی از قالبم رو که باید ویرایش بشه رو بفرمایید همینجا بزارم تا خودتون چکش کنید؟

به قالب header.php قالبتون برین(بیشتر مواقع اینجا فراخوانی میشه) ببینین یکی از دو متد بالا فراخوانی شده یا نه

اگه نشده کد اولی رو بذارین تو قالب header.pho تا کتابخانه تو قالبتون فراخوانی بشه

ویرایش شده توسط p47ri0t
لینک به ارسال

مثل اینکه فراخوانی شده.

این کد header.php


<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta name="google-site-verification" content="GtelDRa5xeSkgLVAS2OtgZ2Qh_AlaMTvFyEi0uGdv7I" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<?php
$isiPad = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPad');
if(!$isiPad): ?>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<?php
endif;
?>
<title><?php bloginfo('name'); ?> <?php wp_title(' - ', true, 'left'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
<?php if(get_option('pyre_responsive_design') == 'Off'): ?>
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/responsive.css" type="text/css" />
<?php endif; ?>
<?php if(get_option('pyre_favicon')): ?>
<link rel="shortcut icon" href="<?php echo get_option('pyre_favicon'); ?>" />
<?php endif; ?>
<?php if(is_singular()) { wp_enqueue_script('comment-reply'); } ?>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js2/jquery.min.1.8.3.js"></script>
<script src="<?php bloginfo('template_directory'); ?>/js/js/jquery.shiningImage.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(window).load(function() {
$('.header').shiningImage({
scale : 3,
speed : 10
});
/* Demonstrations */
$('#shine').shiningImage({ delay : 9000 });
});
</script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/js/modernizr.custom.js"></script>

<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.totemticker.js"></script>
<script type="text/javascript">
$(function(){
$('#comment-ticker').totemticker({
row_height : '130px',
next : '#comment-next',
previous : '#comment-previous',
stop : '#stop',
start : '#start',
speed : 500,
interval : 7000,
mousestop : true,
max_items : null,
});
});
</script>
</head>
<body <?php body_class($class); ?>>
<div id="my-bg">
<div id="bg-top">
<div class="topsoren">
<div id="logo" style="float:right;height:100%;width:auto">
<a href="<?php echo home_url(); ?>" style="float:right"><img style="float:right;margin-top:4px" class="logo" src="<?php echo get_option('pyre_mylogo'); ?>" id="shine" alt="<?php bloginfo( 'name' ); ?>"/></a>
</div>

</div>
</div>
<div id="soren-navigation">

<div id="submenu" class="clearfix">
<ul id="fabthemes" class="sfmenu">

<?php
if ( !is_user_logged_in() ) {
?>
<div class="reg-btn">
<span style="font-size:24px;float:right;padding:3px 4px;margin:0px 0px 0px 10px;background:#eee;color:#333;height:20px">+</span><a href="<?php echo get_option('pyre_reg_link'); ?>" title="ثبت نام در آلوخ" target="_blank">عضویت رایگان</a>
</div>
<?php
}
?>
<a class="menu-home" href="<?php echo esc_url( home_url() ); ?>"><img style="margin-top:6px" src="<?php bloginfo('template_directory'); ?>/images/home.png" alt="صفحه اصلی" /></a>
<?php wp_nav_menu(array('theme_location' => 'secondary-menu', 'depth' => 3, 'fallback_cb' => false, 'menu_class' => 'topNav')); ?>
</ul>
</div>
</div>
<div class="topbar"></div>

و این کد استایل :


/*
Theme Name: Alookh
Description: Alookh Website
Version: 3.2
*/
@import "css/reset.css";
@font-face {
font-family: "mitra";
src: url("fonts/bmifont.eot?#") format("eot"), url("fonts/bmifont.woff") format("woff"), url("fonts/bmifont.ttf") format("truetype");
}
/** Starting Layout - by Aabed Arjmand // Soren Design **/
body {
background:#f6f6f6 url("images/bg-noise.png") repeat;
color: #666;
font-family: tahoma;
font-size: 12px;
background-image: url(images/wbgg.png) , url(images/bg-noise.png);
background-position: bottom, top;
background-repeat: repeat-x, repeat;
}

#my-bg {
background:url("images/wbg.png") repeat;width:100%;height:363px
}
a {
border: none;
color: #555;
text-decoration: none;
transition: all 0.2s linear 0s;
}
a:hover{
color: #c33;
}
h1, h2, h3, h4, h5, h6 {
color: #333;
}
.clear {
clear: both;
}
/** ////// Header - by Aabed Arjmand // Soren Design **/
.topbar-c {
width:930px;margin:0px auto
}
#logo {
}
#bg-top {
margin: 0px auto;
position: relative;
width: 100%;
background: #fc9823 url("images/77.png") no-repeat left;
}
.topsoren {
width:930px;margin:0px auto;height:70px;
}
/** Mega Navigation - by Aabed Arjmand // Soren Design **/
.topbar {
height: 5px;
width: 100%;
background: url("images/top-bar.png") repeat-x;
border-bottom:1px solid #333;
}

#soren-navi {
border-top:none;
height: 4px;
margin: 0px auto;
width: 960px;
-webkit-border-radius:4px 4px 0px 0px;
-moz-border-radius:4px 4px 0px 0px;
border-radius:4px 4px 0px 0px;
}
.menu-home{
width:26px;
height:36px;
float:right;
margin:0px 5px 0px 0px;
padding-left:10px
}
#soren-navigation {
background:#fcfcfc;
border-top:none;
height: 36px;
margin: 0px auto;
width: 100%;
border-top:1px solid #666;
border-bottom:1px solid #333;
}
#submenu {
margin: 0 auto;
position: relative;
width:960px
}
#submenu ul {
font-size: 12px;
list-style: none outside none;
margin: 0;
padding: 0 12px;
right: -999em;
}
#submenu li {
float: right;
font-family: "mitra",byekan,Tahoma;
line-height: 35px;
list-style: none outside none;
margin:0px;
border-right:1px solid #ccc;
border-left:1px solid #fff
}
#submenu li:last-child {
border-left:none
}
#submenu li:first-child {
}
#submenu li a {
position: relative;
text-decoration: none;
color:#333;
font-size:13px;
padding:0px 10px;
text-shadow: 0px 0px 1px #fff;
height:36px;
line-height:36px;
float:right
}
#submenu li a:hover {
color:#990000;
}
#submenu li ul a {
padding: 0px;
position: relative;
text-decoration: none;
font-size:11px
}
#submenu li ul {
padding: 0px 0px;
position: absolute;
z-index: 9999;
}
#submenu li:hover ul ul, #submenu li:hover ul ul ul, #submenu li.sfHover ul ul, #submenu li.sfHover ul ul ul {
right: -999em;
}
#submenu li:hover ul, #submenu li li:hover ul, #submenu li li li:hover ul, #submenu li.sfHover ul, #submenu li li.sfHover ul, #submenu li li li.sfHover ul {
right: auto;
}

#submenu li ul li{
border:none;
border-bottom: 1px dashed #ccc;
height:32px;
line-height:24px;
}
#submenu li ul{
border:1px solid #999;
border-top:1px solid #ccc
}

#submenu ul li ul li ul{
font-size: 12px;
list-style: none outside none;
margin: 0;
left: -152px;
top:0px
}

.topNav { }
.topNav li { }
.topNav li a { color:#999; }
.topNav li ul { display: none; }
.topNav li:hover > ul, #navigation li.hover > ul { display: block; position: absolute; top: 36px; right: 0; z-index: 10; width: 180px; border-top: 0; }
.topNav li > ul li {background: #fcfcfc ; width: 180px; padding-right: 10px;box-sizing: border-box; position: relative; }
.topNav li > ul li a:hover { color:#cc3333 ;border:none}
.topNav li ul li:hover > ul, #navigation li ul li.hover > ul { }

/** ////// Main Layout - by Aabed Arjmand // Soren Design **/
#wrapper {
margin: 0 auto;
width: 930px;

}
#wrapper-full {
margin: 0 auto;
width: 100%;
height:200px
}
#wrapperss, #wrappers {
background: #efefef;
float: left;
margin: 0px;
width: 100%;
border-bottom:2px solid #999;
background: url("images/wbg.png") repeat-x top;
}
#w-radio{
height:auto;
margin: 0px 0px 0px 0px;
background: #fff;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
float: left;
height:80px;
width: 100%;
border:1px solid #ccc;
}

.steps {
width:910px;
margin:1px auto 0px auto
}

.step1 {
color: #aaa;
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
padding: 0px 0px 5px 20px;
background: url("images/step1.png") no-repeat right 10px;
float:right
}
.step2 {
color: #aaa;
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
padding: 0px 0px 5px 20px;
background: url("images/step2.png") no-repeat right 10px;
float:right
}
.step3 {
color: #aaa;
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
padding: 0px 0px 5px 20px;
background: url("images/step3.png") no-repeat right 10px;
float:right
}
.steps h3{
color: #333;
font-family: "mitra",byekan,Tahoma;
font-size: 12px;
padding: 0px 10px 0px 0px;
}
.steps h4{
color: #990000;
font-family: "mitra",byekan,Tahoma;
font-size: 13px;
padding: 0px 10px 5px 0px;
}
.step-in{
border-right:2px solid #eee;
margin: 10px 100px 0px 0px;
}


#wrappers-ss {
background: #efefef;
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
float: left;
margin: 0px;
width: 100%;
border-bottom:2px solid #fff;
padding-bottom:10px;
border-right:1px solid #fff;
border-left:1px solid #fff;
}
#wrapperss {
border-bottom:3px solid #555;
}
#wrappers-s {
background: #efefef;
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
float: left;
margin: 0px;
width: 100%;
border-right:1px solid #fff;
border-left:1px solid #fff;
padding-bottom:12px;
}
#wrapper-content {
margin: 0 auto;
width: 910px;
padding-bottom: 10px;
}
#wrapper-content-full {
margin: 0 auto;
}
#wrapper-featured {
overflow: hidden;
padding: 0;
width: 628px;
}
#wrapper-index {
overflow: hidden;
padding: 0;
width: 100%;
}
#aabed-main {
float: right;
margin: 0px 0px 5px 0px;
}
#soren-main {
margin: 5px 0px 5px 0px;
}
#main {
float: right;
overflow: hidden;
margin-left:10px;
}
.sliderbox {
width:615px;margin:10px 0px 0px 0px;height:270px;float:right;background:#fff;border:1px solid #ccc;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.videobox {
width:250px;margin:10px 0px 0px 0px;float:left;background:#fff;border:1px solid #ccc;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);padding:15px
}
.login-det {
direction: rtl;
font-family: Tahoma;
font-size: 11px;
height: 26px;
line-height: 24px;
padding: 1px 12px 4px 0px;
text-align: right;
background:#fcfcfc;
border:1px solid #bbb;
border-top:none;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
width:268px;
float:left
}
.titraabed {
clear:both;color:#aaa;font-size:11px;line-height:16px;float:right;padding:3px 0px 5px;margin:0px 10px 0px 0px;width:100%
}

#single-main {
float: right;
overflow: hidden;
width: 617px;
margin-top:10px
}
#main-full {
float: right;
margin-top: 0;
overflow: hidden;
width: 100%;
}
.item-soren{
float:right;width:100%;margin:0px 0px 5px 0px;
border-bottom:1px dashed #ccc
}
.item-category{
float:right;width:100%;margin:0px 0px 5px 0px;
}
.content-b{
border:1px solid #bbb;padding:15px 15px 10px 15px;background:#fff;margin-bottom:12px;-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
border-bottom:2px solid #555
}
.content-b-c{
border:1px solid #bbb;padding:15px 15px 15px 15px;background:#fff;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
margin-bottom:8px;
float:right;
width:878px
}
.content-b-c img{
width:880px}
.lidas{width:450px;float:right}
.lidas-l{width:450px;float:left}
.single-lady{float:left;width:290px}
.lady{width:936px;margin:0px auto}
/** Editors Choice - by Aabed Arjmand // Soren Design **/
.editors-item {
color: #333;
display: block;
float: right;
font-size: 11px;
height: 120px;
margin: 0 15px 0 0;
padding: 0 0px;
width: 425px;
}
.archive-item {
color: #333;
display: block;
float: right;
font-size: 11px;
height: auto;
margin: 0 0px 0 0;
padding: 0px;
width: 385px;
}
.t-titr {
color: #666;
font-size: 11px;
line-height: 18px;
padding: 0px 15px 0px 0px;
font-family: Tahoma;
background: url("images/list_wl.png") no-repeat right;
}
.editors-item p {
color: #666;
font-size: 11px;
line-height: 18px;
padding: 0px;
font-family: Tahoma;
}
.editors-dummy {
width: 126px;
height: 96px;
}
.offers-dummy {
width: 90px;
height: 90px;
}
.archive-dummy {
width: 92px;
height: 92px;
}
.lslider-dummy {
width: 100%;
height: 100px;
}
.posts-dummy {
width: 68px;
height: 68px;
}
.item-category h2 {
color: #cc3333;
font-family: "mitra",byekan,Tahoma;
font-size: 13px;
line-height:27px;
padding: 0px 0px 0px 10px;
margin:6px 0px 3px 0px
}
.item-soren h2 {
color: #cc3333;
font-family: "mitra",byekan,Tahoma;
font-size: 13px;
line-height:20px;
padding: 0px 0px 6px 10px;
margin:6px 0px 3px 0px
}
.item-soren h2 a, .item-category h2 a{
color: #cc3333;
}
.item-soren h2 a:hover, .reportage-item h2 a:hover, .item-category h2 a:hover {
color: #cc0000;
}
/** Sidebar Tab - by Aabed Arjmand // Soren Design **/
.slider-item {
color: #333;
display: block;
float: right;
font-size: 11px;
margin: 0;
padding: 0;
width: 130px;
}
.slider-item-full {
color: #333;
display: block;
float: right;
font-size: 11px;
margin: 0;
padding: 0;
width: 268px;
}

.tab-item {
color: #333;
margin: 0px 5px;
padding: 0px 0px 5px 0px;
border-bottom:1px dashed #ddd;
background:#fff url("images/list_wl.png") no-repeat right 0px top 4px;
}
.tab-item h2 {
font-family: Tahoma;
font-size: 11px;
padding: 0px 15px 0px 0px;
}
.tab-itemh2 a {
color: #333;
}
.tab-item h2 a:hover {
color: #cc0000;
}
.video-item {
color: #fff;
display: block;
float: right;
font-size: 11px;
margin: 0;
padding: 0px;
width: 100%;
border-left:none
}
.video-item h2 {
font-family: "mitra",byekan,Tahoma;
font-size: 13px;
line-height:22px;
padding: 10px 0px 10px 0px;
text-shadow: 0px 0px 1px #fff;
}
.radio-item {
color: #333;
display: block;
float: right;
font-size: 11px;
padding: 0;
width: 100%;
}
.radio-item h2 {
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
line-height:19px;
padding: 5px 32px 10px 0px;
background:url("images/radio.png") no-repeat right 0px top 4px;
}
.slider-dummy {
width: 76px;
height: 76px;
}
.slider-item h2, .slider-item-full h2 {
font-family: "mitra",byekan,Tahoma;
font-size: 12px;
line-height:26px;
padding: 0px 16px 0px 0px;
background:url("images/list_w.png") no-repeat right 4px;
}
.slider-item-date {
background:#ff9900;color:#fff;height:21px;float:right;margin-left:10px;padding:0px 10px;
font-size:10px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
width:70px;
}

.slider-item h2 a {
color: #333;
text-shadow: 1px 1px 1px #fff;
}
.slider-item h2 a:hover {
color: #cc0000;
}
.panel ul {
list-style: none outside none;
margin: 0px 0px;
}
.vector-list ul li {
color: #249999;
direction: rtl;
float: right;
line-height: 18px;
margin: 0 0 5px;
padding: 0;
text-align: right;
width: 100%;
height:26px;
line-height:24px;
border-bottom:1px dashed #ccc;
font-family: "mitra",byekan,Tahoma;
font-size:11px
}
.vector-list ul li:last-child {
border-bottom:none
}

.panel ul li a {
direction: rtl;
text-align: right;
}
#vector-list li img, #reportage li img {
float: right;
}
#newsbox{
font-family: Tahoma;
color:#cc0000;
text-align:right;
direction:rtl;
font-size:11px;
margin:0px;
width:600px;float:right;height:30px;
}
.newsbox-title{
background: #666 url("images/rs.png") no-repeat right;color:#fff;line-height:30px;padding:0px 30px 0px 12px;margin:0px;;height:30px;float:right
}
#newsbox ul li a{
list-style: none;color:#ccc;
line-height:30px;margin-right:135px
}
#newsbox ul li a:hover{
color:#fff;
}
/** Articles - by Aabed Arjmand // Soren Design **/
.more {
border-color: #ddd #cc0000 #ddd #ddd;
border-image: none;
border-radius: 3px;
border-style: solid;
border-width: 1px 2px 1px 1px;
color: #555;
float: left;
font-size: 11px;
line-height: 16px;
padding: 0 7px;
}
/** Radio Pazhohesh - by Aabed Arjmand // Soren Design **/
.block-item-radio {
background: #fcfcfc;
border: 1px solid #ccc;
margin: 0 15px 10px;
overflow: hidden;
padding: 0px 0px 3px 0px;
height:95px;
}
.block-item-radio p{
font-size:11px;
padding: 0px 10px;
line-height:18px;
}
.block-item-radio h2 {
background: #f9f9f9;
border-bottom:1px solid #ccc;
margin-bottom:5px
}
.single-radio {
background: none repeat scroll 0 0 #f6f6f6;
border: 1px solid #ccc;
border-radius: 3px;
clear: both;
margin: 0 0 10px;
overflow: hidden;
padding: 0 6px 3px;
}

.block img {
border: 1px solid #d7d7d7;
}
.block img:hover {
background: none repeat scroll 0 0 #f8f8f8;
}
.block-meta {
color: #888;
display: block;
font-size: 11px;
height: 25px;
margin-bottom: 4px;
}
.block p {
line-height: 18px;
}
.slidimg {
height: 100px;
width: 100px;
}
.book-dummy {
height: 135px;
width: 111px;
}
.master-dummy {
height: 180px;
width: 160px;
}
.exam-dummy {
height: 80px;
margin-top: 3px;
width: 90px;
}
.slidimgs {
height: 71px;
width: 71px;
}
.block-item-smallss {
background: none repeat scroll 0 0 #fff;
float: right;
margin-bottom: 15px;
margin-right: 15px;
overflow: hidden;
padding-bottom: 0px;
}
.block-item-sub h3 {
color: #666;
font-size: 18px;
}
.block-item-sub input[type="text"], .block-item-subs input[type="text"] {
background: url("images/username.png") no-repeat scroll left center #fff;
border: 1px solid #ccc;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
box-sizing: border-box;
color: #333;
font-family: "mitra",byekan,Tahoma;
font-size: 12px;
height: 28px;
padding: 0px 10px 0px 50px;
text-align: left;
width: 100%;
}
.block-item-sub input[type="password"] {
background: url("images/password.png") no-repeat scroll left center #fff;
border: 1px solid #ccc;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
box-sizing: border-box;
color: #333;
font-family: "mitra",byekan,Tahoma;
font-size: 12px;
height: 28px;
margin-bottom: 10px;
padding: 0px 10px 0px 50px;
text-align: left;
width: 100%;
}
::-webkit-input-placeholder {
color: #ccc;text-align:right;font-size: 14px;line-height:20px
}
:-moz-placeholder { /* Firefox 18- */
color: #ccc;text-align:right;font-size: 14px;line-height:20px
}
::-moz-placeholder { /* Firefox 19+ */
color: #ccc;text-align:right;font-size: 14px;line-height:20px
}
:-ms-input-placeholder {
color: #ccc;text-align:right;font-size: 14px;line-height:20px
}
.block-item-subs input[type="text"] {
background:#fff;
color: #999;
text-align: right;
width: 180px;
height:32px;
font-size:15px;
}
#block-item-sub {
overflow: hidden;
padding: 0;
width: 100%;
}
input#sub-button {
background: #fff;
border: 1px solid #ccc;
color: #428056;
cursor: pointer;
float: left;
font-family: "mitra",byekan,Tahoma;
font-size: 16px;
height: 32px;
width: 46px;
}
input#sub-button:hover {
background: #f9f9f9;
border: 1px solid #bbb;
color: #996699;
}
.ads125 {
border: 1px solid #aaa;
margin: 0px 0 0;
}
.banner468 {
background:#fff;
border:1px solid #999;
margin: 0px 0px 10px 0px;
width:368px;
height:80px;
clear:both
}
.banner468 img {
width:350px;
height:64px;
margin:7px
}
.block.full {
background: #fff;
border-color: #ccc #ccc #996699;
border-style: solid;
border-width: 1px 1px 2px;
overflow: hidden;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
padding: 5px 15px 15px;
margin-bottom:15px;
}
.blocks {
background: #fff;
border:1px solid #ccc;
border-image: none;
border-radius: 5px;
float: right;
margin-bottom: 15px;
padding: 0;
width: 593px;
border-top:2px solid #669900;
border-bottom:2px solid #bbb
}
.blocks-lm {
background: #fff;
border-color: #bbb #bbb #666;
border-image: none;
border-radius: 4px;
border-style: solid;
border-width: 1px 1px 3px;
float: right;
margin-bottom: 25px;
padding: 0;
width: 593px;
}


.recentcm ul {
list-style-type: none;
margin: 0 0 10px;
}
.recentcm ul li {
clear: left;
height: 100%;
line-height: 21px;
list-style-type: none;
margin: 0;
}
.recentcm ul li a:link, .recentcm ul li a:visited {
color: #6f6f6f;
display: block;
padding: 0 10px 3px 0;
text-decoration: none;
}
.recentcm ul li a:hover {
color: #aa0000;
}
.recentcm .head {
background: #f9f9f9;
border-bottom: 1px solid #ddd;
height: 20px;
font-family: "mitra",byekan,Tahoma;
font-size:11px;
overflow: hidden;
padding: 2px 10px 4px 8px;
}
.recentcm .body {
background: #fff;
border-top:none;
font-family: "mitra",byekan,Tahoma;
font-size:11px;
line-height: 18px;
padding: 3px 8px;
}
.recentcm .foot {

float: right;
height: 78px;
position: relative;
width: 78px;

}
.cmm{float:left;width:335px;height:78px;border:1px solid #ddd;border-left:3px solid #ff9900;margin: 0px 10px 15px 0px;-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;}

.recentcm .foot img {
background: none repeat scroll 0 0 #fff;
border: 1px solid #777;
margin: 0;
padding: 0;
}
.gravatar {
border: 6px solid #eee;
float: right;
margin: 0px 0 0px;
padding:2px 2px 3px 3px;
background: #c4c4c4 url("images/gravatar.png") no-repeat center center;
width:62px;
height:62px;
-webkit-border-radius:400px;
-moz-border-radius:400px;
border-radius:400px;
}
.recentcm .foot .author {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
float: right;
padding: 12px 10px 0;
}
.recentcm .foot .author span {
color: #666;
display: block;
font-size: 11px;
line-height: 18px;
}
.recentcm .foot .author span a {
color: #333;
font-size: 11px;
font-weight: bold;
}
.recentcm .foot .go {
background: url("images/recentcommentgo.png") no-repeat scroll left top rgba(0, 0, 0, 0);
color: #333;
float: left;
font-size: 11px;
font-weight: bold;
height: 30px;
margin: 15px 0 6px;
width: 30px;
}
.ads468 {
border:1px solid #aaa;
width:438px;
margin-bottom:8px;
}
.text-ads {
background: none repeat scroll 0 0 #f9f9f9;
border-color: #ccc #ccc #aaa;
border-image: none;
border-style: solid;
border-width: 1px 1px 2px;
margin: 0px 0px 10px 0px;
padding: 5px 0px;
}
.text-ads h2 a {
color: #555;
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
padding: 10px;
}
.text-ads h2 a:hover {
color: #cc3333;
}
.text-ads h3 {
background: url("images/item2.png") no-repeat scroll right 2px rgba(0, 0, 0, 0);
padding: 0 16px;
display:none
}
.shop {
clear: both;
margin: 0 0 12px;
}
.shop-det {
border-top: 1px solid #ccc;
direction: rtl;
font-family: Tahoma;
font-size: 12px;
height: 26px;
line-height: 24px;
padding: 1px 16px 4px 0px;
text-align: right;
background:#fcfcfc;
border:1px solid #bbb;
margin-bottom:12px;
-webkit-border-radius:0px 0px 4px 4px;
-moz-border-radius:0px 0px 4px 4px;
border-radius:0px 0px 4px 4px;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
border-bottom:2px solid #555
}
.side-det {
direction: rtl;
font-family: Tahoma;
font-size: 11px;
height: 26px;
line-height: 24px;
padding: 1px 12px 4px 0px;
text-align: right;
background:#fcfcfc;
border:1px solid #bbb;
border-top:none;
margin-bottom:12px;
border-bottom:2px solid #555
}
.shop-div {
background: #f6f6f6;
border:1px solid #ccc;
border-bottom:none;
margin: 0 15px;
}
.arti-div {
background: #f9f9f9;
border:1px solid #ccc;
border-bottom:none;
clear:both;
}
.block-item-shop {
border-bottom: 1px solid #ddd;
overflow: hidden;
padding: 0 6px 3px;
}
.block-item-shop h2 {
background: url("images/item2.png") no-repeat scroll right top 8px rgba(0, 0, 0, 0);
font-family: Tahoma;
font-size: 12px;
padding:5px 20px;
}
.block.search {
border: 1px solid #ccc;
border-radius: 3px;
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
float: left;
padding: 10px 10px 15px;
width: 598px;
}
.single-master img {
border: 1px solid #d7d7d7;
float: right;
padding: 2px;
}
.block-images img {
border-radius: 3px;
float: right;
margin-left: 10px;
padding: 2px;
}
.block-metas {
color: #888;
display: block;
font-size: 11px;
height: 20px;
margin-bottom: 4px;
}
.block-item-small .block-image, .block-item-smalls .block-image, .block-item-smallss .block-image {
display: inline-block;
float: right;
position: relative;
}
.block-item-big .block-image {
display: inline-block;
float: left;
margin-right: 12px;
position: relative;
}
.side-profile, .index-profile {
float: right;
}
.block.archive .block-item-big h2 {
margin-bottom: 4px;
font-family: "mitra",byekan,Tahoma;
font-size:16px;
}
.block.archive .block-item-big h2 a {
color: #9e5478;
}
.block.archive .block-item-big h2 a:hover {
color: #cc3333;
}
.block.archive .block-item-big p {
line-height: 20px;
}
.block.archive .block-item-big .block-meta span {
color: #888;
font-size: 11px;
margin-right: 8px;
text-shadow: 1px 1px 1px #fff;
text-transform: uppercase;
}
#side {
float: left;
position: relative;
width: 260px;
}
#side-b {
float: left;
position: relative;
width: 127px;
}
#side-b-single {
float: left;
position: relative;
width: 127px;
margin-right:10px
}
#side-r {
float: right;
position: relative;
width: 230px;
margin-left:10px;
margin-top:14px
}
.myside{float:left;width:100%
}

#sidebar {
float: left;
margin: 0;
position: relative;
width: 230px;
}
#sidebar-single {
float: left;
margin: 0;
position: relative;
width: 300px;
}
.soren-ads{
float:right;
margin-bottom:10px
}
.radio-bax{width:370px;float:left}
.soren-ads-left{
float:left;
margin-bottom:10px
}
#sidebar-full {
float: left;
margin: 0;
position: relative;
width: 100%;
}
#side-r-full {
float: right;
position: relative;
width: 100%;
margin-left:10px;
}

.widget {
margin: 0px;
overflow: hidden;
padding: 0;
}
.widget-left {
margin: 0px;
overflow: hidden;
padding: 0;
}
.widget-in {
padding: 10px;
background:#fff;
border:1px solid #c3c3c3;
height:100%;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
float:right;
width:208px;
clear:both;
border-top:2px solid #999;
}

.widget-in-full {
padding: 10px;
background:#fff;
border:1px solid #c3c3c3;
height:100%;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
float:right;
width:428px;
clear:both;
height:216px;
border-top:2px solid #999;
}
.widget-in-left {
padding: 10px;
background:#fff;
border:1px solid #c3c3c3;
height:100%;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
float:right;
width:auto;
clear:both;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
border-top:2px solid #ccc;
border-bottom:2px solid #666;
}
.widget-in-left-last {
padding: 10px;
background:#fff;
border:1px solid #c3c3c3;
height:100%;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
width:238px;
clear:both;
margin:0px;
-webkit-border-radius:3px 3px 0px 0px;
-moz-border-radius:3px 3px 0px 0px;
border-radius:3px 3px 0px 0px;
border-top:2px solid #999;
}
.widget-title {
color: #aaa;
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
padding: 0px 0px 10px 0px;
background: url("images/tit.png") repeat-x right 10px;
}
.wts {
color:#cc3333;padding:0px 0px 0px 10px;background:#fff
}
.wtg {
color:#cc3333;padding:0px 10px 0px 10px;background:#eee
}
.lm , .lm-full{
background: url("images/last-masters.png") no-repeat scroll right center rgba(0, 0, 0, 0);
border-bottom: 1px dashed #bbb;
color: #333;
font-family: "mitra",byekan,Tahoma;
font-size: 15px;
height: 32px;
line-height: 45px;
margin: 0 15px 15px 15px;
padding: 0 40px 15px 10px;
}
.lm-full {
margin: 0 5px 15px 5px;
}
.radio {
background: url("images/radio.png") no-repeat scroll right 5px rgba(0, 0, 0, 0);
border-bottom: 1px dashed #bbb;
color: #771100;
font-family: "mitra",byekan,Tahoma;
font-size: 18px;
line-height: 45px;
margin-bottom: 15px;
padding: 0 36px 15px 10px;
}
.mic_title {
background: url("images/mic.png") no-repeat scroll right center rgba(0, 0, 0, 0);
}
.widget .block-item-small .stars {
border: medium none;
margin: 0;
padding: 0;
}
.widget li {
margin-bottom: 10px;
padding-bottom: 10px;
}
.widget p {
color: #666;
}
tr.even {
background: none repeat scroll 0 0 #fafafa;
}
.widget-excerpt {
margin-bottom: 5px;
}
.lead {
color: #993333;
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
margin-bottom: 15px;
line-height:26px;
padding: 5px 10px 10px 10px;
background:#f9f9f9;
border-right:2px solid #cc3333
}
.post-heading h1 {
border-bottom: 1px dashed #ccc;
color: #cc3333;
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
margin-bottom: 15px;
line-height:36px;
padding: 5px 0px 0px 10px;
}
.radio-heading h1 {
background: url("images/radio.png") no-repeat scroll right 5px rgba(0, 0, 0, 0);
border-bottom: 1px dashed #ccc;
color: #066;
font-family: "mitra",byekan,Tahoma;
font-size: 18px;
margin-bottom: 15px;
padding: 5px 36px 5px 10px;
}
.post-heading span {
color: #888;
direction: rtl;
font-size: 11px;
text-align: right;
text-shadow: 1px 1px 1px #fff;
}
.heading-author {
background: url("images/author-icon.png") no-repeat scroll right center rgba(0, 0, 0, 0);
margin-left: 5px;
padding-right: 20px;
padding-top: 2px;
}
.heading-date {
background: url("images/clock-icon.png") no-repeat scroll right center rgba(0, 0, 0, 0);
margin-left: 5px;
padding-right: 20px;
padding-top: 2px;
}
.heading-comments {
background: url("images/comment-icon.png") no-repeat scroll right center rgba(0, 0, 0, 0);
padding-right: 24px;
padding-top: 2px;
}
.post-thumb {
margin-bottom: 20px;
margin-top: 10px;
}
.post-thumb img {
border: 1px solid #d7d7d7;
padding: 5px;
width: 566px;
}
.post-entry p {
direction: rtl;
font-size: 12px;
line-height: 26px;
margin-bottom: 20px;
text-align: justify;
font-family: "mitra",byekan,Tahoma;
color:#444
}
.post-entry h2 {
color: #996699;
direction: rtl;
font-family: "mitra",byekan,Tahoma;
font-size: 18px;
line-height: 20px;
margin: 25px 0 7px;
text-align: right;
}

.post-entry a {
color: #cc3333;
}

.post-entry h3 {
background: #f9f9f9;
border-bottom: 2px solid #ccc;
color: #cc3333;
direction: rtl;
font-family: "mitra",byekan,Tahoma;
font-size: 17px;
line-height: 20px;
margin: 15px 0 7px;
padding: 6px 7px;
text-align: right;
}
.post-entry ul {
background: #f9f9f9;
border-right: 2px solid #cc3333;
direction: rtl;
line-height: 20px;
margin: 15px 0 7px;
padding: 10px 15px;
text-align: right;
font-family: "mitra",byekan,Tahoma;
}
.post-entry ul li {
border-bottom: 1px solid #eee;
font-size: 16px;
padding: 5px 0;
}
.post-entry ul li:last-child {
border-bottom: medium none;
}
.post-entry ol {
background: #f9f9f9;
border-right: 2px solid #99cc66;
direction: rtl;
font-size: 14px;
line-height: 20px;
margin: 5px 0 7px;
padding: 5px 15px;
text-align: right;
}
.post-entry ol li {
border-bottom: 1px solid #eee;
font-size: 11px;
}
.post-entry ol li:last-child {
border-bottom: medium none;
}
.post-img img {
border: 1px solid #999;
display: block;
height: auto;
max-width:498px;
margin:10px auto
}
.post-meta {
border-top: 1px dashed #ccc;
color: #777;
font-size: 11px;
margin-top: 15px;
overflow: hidden;
width: 100%;
}
.post-meta-tags {
background: url("images/tag-icon.png") no-repeat scroll right center rgba(0, 0, 0, 0);
border-bottom: 1px dashed #ccc;
padding: 8px 21px 10px 2px;
}
.post-meta-cats {
background: url("images/category.png") no-repeat scroll right center rgba(0, 0, 0, 0);
float: right;
padding: 8px 21px 10px 2px;
}
.post-meta-profile {
background: url("images/cat.png") no-repeat scroll right 2px rgba(0, 0, 0, 0);
float: right;
font-size: 11px;
padding: 8px 21px 0 2px;
}
.post-profile {
border-top: 1px dashed #ccc;
color: #777;
float: right;
font-size: 11px;
margin-top: 2px;
overflow: hidden;
width: 100%;
}
.post-share {
background: url("images/share.png") no-repeat scroll right 5px rgba(0, 0, 0, 0);
float: left;
padding: 8px 21px 10px 2px;
text-align: left;
}
.meta-arrow {
color: #d00000;
font-size: 14px;
margin-right: 4px;
}
.related-post {
background: none repeat scroll 0 0 #fff;
border-color: #ccc #ccc #669900;
border-image: none;
border-radius: 4px;
border-style: solid;
border-width: 1px 1px 2px;
margin: 10px 0px;
overflow: hidden;
padding: 5px 15px 15px;
}
.related-post ul li {
background: url("images/item.png") no-repeat scroll right center rgba(0, 0, 0, 0);
line-height: 22px;
padding-right: 20px;
}
#post {
padding-top: 10px;
}
.navigation {
margin-bottom: 20px;
overflow: hidden;
width: 100%;
}
.post-entry h1 {
font-size: 28px;
margin-bottom: 14px;
}
.post-entry hr {
background-color: #ddd;
border: 0 none;
color: #ddd;
height: 1px;
margin-bottom: 14px;
}
.post-entry blockquote {
background: none repeat scroll 0 0 #f6f6f6;
border-right: 2px solid #996699;
color: #666;
padding: 10px 12px;
}
.post-entry pre {
margin-bottom: 20px;
overflow: auto;
}
.post-entry .alignright {
float: right;
margin: 0 0 4px 10px;
}
.post-entry .alignleft {
float: left;
margin: 0 10px 4px 0;
}
.gallery {display: block;clear: both;overflow: hidden;margin: 0 auto;}
.gallery .gallery-row {display:block;clear: both;overflow: hidden;margin: 0;}
.gallery .gallery-item {overflow: hidden;float: right;width:125px;margin: 0;text-align: center;list-style: none;padding: 0;margin:0px}
.gallery .gallery-item img, .gallery .gallery-item img.thumbnail {max-width: 95%;height: auto;padding: 0px;margin: 3px;border:1px solid #999;background:#fff}
.gallery-caption {margin-left: 0;}
.wp-caption, .gallery-caption {
background: #f6f6f6;
margin-bottom: 20px;
margin-top: 30px;
padding: 0px;
text-align: center;
max-width:675px;
border-bottom:2px solid #666
}
.wp-caption p {
margin: 0;
}
p.wp-caption-text {
color: #996699;
font-family: "mitra",byekan,Tahoma;
font-size: 18px;
padding: 10px 0;
text-align: center;
}
.aligncenter, div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
#comments h3, .related-post h5 {
border-bottom: 1px solid #ccc;
color: #066;
font-family: "mitra",byekan,Tahoma;
font-size: 15px;
margin: 5px 0 10px;
padding: 0 0 5px 10px;
text-shadow: 1px 1px 1px #fff;
clear:both
}
.off_title {
margin: 0px 0 15px;
}
ol.commentlist {
margin-bottom: 40px;
}
.the-comment {
margin-bottom: 24px;
float:right;
width:100%
}
.avatar {
background: none repeat scroll 0 0 #fff;
border: 1px solid #ccc;
float: left;
margin-right: 6px;
padding: 3px;
}
.avatar-messages .avatar{
margin-right:0px
}
.comment-arrow {
background: url("images/comment-arrow.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
float: left;
height: 15px;
margin-right: -1px;
margin-top: 16px;
width: 8px;
}
.comment-box {
background: none repeat scroll 0 0 #f6f6f6;
border-color: #ccc #996699 #ccc #ccc;
border-image: none;
border-radius: 3px;
border-style: solid;
border-width: 1px 2px 1px 1px;
overflow: hidden;
padding: 14px;
}
.comment-text {
font-size: 11px;
line-height: 18px;
}
#comments .children {
background: none repeat scroll 0 0 #fff;
margin: 20px 0 0 83px;
}
#comments .children li.comment {
margin: 0 0 20px;
}
.comment-author a {
color: #3a3a3a;
font-family: "mitra",byekan,Tahoma;
font-size:12px
}
.comment-text-side {
color: #888;
font-style: italic;
line-height: 18px;
}
#comment-input {
float: right;
margin-left: 15px;
}
#comment-inputs {
float: right;
width:211px;
margin-left: 17px;
}
#comment-input input {
color: #666;
font-family: tahoma;
margin-bottom: 17px;
}
#comment-input label .req {
color: #999;
}
#comment-textarea-admin {
float: none;
margin-bottom: 16px;
}
#comment-textarea-admin label {
display: block;
margin: 10px 0 5px;
}
#comment-submit {
clear: both;
float: left;
margin-bottom: 10px;
}
#comment-submit-admin {
clear: both;
margin-bottom: 10px;
}
.comment-submit {
background: none repeat scroll 0 0 #333;
border: 1px solid #333;
border-radius: 3px;
color: #fff;
cursor: pointer;
font-family: "mitra",byekan,Tahoma;
font-size: 13px;
padding: 0 10px;
}
.comment-submit:hover {
background: none repeat scroll 0 0 #c00;
}
.entry404 img {
border-right: 1px dashed #d7d7d7;
float: left;
margin-right: 30px;
padding-right: 30px;
}
.text404 p {
color: #666;
line-height: 18px;
margin-bottom: 10px;
}
.homepage-widget {
margin-bottom: 18px;
width: 100%;
}
#sidebar cite {
margin-top: 5px;
}
.radio-frame{
width:600px;float:right;line-height:18px;font-size:11px
}
.reg-btn{
border:1px solid #444;
line-height:26px;
background: #cc3333;
padding: 0px 0px 0px 0px;
font-family: "mitra",byekan,Tahoma;
color: #fff;
float:left;
width:120px;
height:26px;
margin:4px 0px;
font-size: 12px;
text-align: right;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
}
.reg-btn:hover{
background: #333;
}
.reg-btn a{
color: #fff;
}
.reg-btn a:hover{
color: #eee;
}

#nl {
border:none;
color: #999;
direction: rtl;
float: right;
font-family: tahoma;
font-size: 10px;
font-family: "mitra",byekan,Tahoma;
height: 26px;
line-height: 18px;
padding: 0 10px;
text-align: right;
width: 150px;
background:#ccc;
margin:6px 0px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
}

#nl-button {
float: left;
height: 18px;
font-size: 11px;
margin: 6px 0px;
font-family: "mitra",byekan,Tahoma;
height:26px;
border:none;
text-align:center;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
cursor:pointer;
padding: 3px 10px;
}
#nl-button:hover {
background:#ff9900;
color:#fff;
}

.description {
clear: both;
width: 100%;
}
.mailfield {
float: right;
width: 100%;
}
.index-paginate {
margin-left: 12px;
}
.wp-pagenavi {
clear: both;
direction: ltr;
text-align: left;
}
.comments-navigation .page-numbers, .wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a:visited, .wp-pagenavi span.current {
background: none repeat scroll 0 0 #f9f9f9;
border: 1px solid #ccc;
box-shadow: 0 0 1px #fff inset;
color: #666;
display: inline-block;
font-size: 11px;
height: 2.4em;
line-height: 2.48em;
margin: 0 0.3em 12px;
padding: 0 0.85em;
text-decoration: none;
text-shadow: 0 1px 0 #fff;
}
.comments-navigation .current, .wp-pagenavi span.current {
background: none repeat scroll 0 0 #ddd;
border: 1px solid #999;
}
.wp-pagenavi a:hover {
border: 1px solid #aeacac !important;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
color: #099;
}
#ofcats {
margin: 20px;
}
.searchandfilter .sbHolder {
margin-right: 15px;
}
.topNav li ul, .block-item-sub label, .wpuf-loading.hide, .wp-pagenavi .extend, .wp-pagenavi .pages {
display: none;
}
#wrapper-slides, .block.archive .block-item-big {
overflow: hidden;
}
#wrapper-home, .post-heading {
padding: 0;
}
.block.half.last, .block.full .block-item-big.last, #footer .widget.last {
margin-right: 0;
}
.block-meta a:hover, .widget_sidebarlogin ul#sidebar-login-links li a {
text-decoration: none;
}
.block-image {
position: relative;margin-top:3px;padding:0px;background:#fff;float:right;border:1px solid #999
}
#block-item-sub #s:focus, #comment-input input:focus, textarea:focus, #searchform #s:focus, .sbHolder:focus .sbSelector {
outline: medium none;
}
.block.archive .block-item-big .block-meta, .ui-timepicker-div .ui-widget-header {
margin-bottom: 8px;
}
.heading-comments a, .comment-author small, .no-comments, ul.wpuf-form li .wpuf-fields input[type="text"], ul.wpuf-form li .wpuf-fields input[type="password"], ul.wpuf-form li .wpuf-fields input[type="email"], ul.wpuf-form li .wpuf-fields input[type="url"], ul.wpuf-form li .wpuf-fields input[type="number"], ul.wpuf-form li .wpuf-fields textarea {
color: #ccc;
font-size: 12px;
}
.qr-code, .navigation .alignleft, .widget_sidebarlogin .avatar_container {
float: left;
}
.navigation .alignright, #comment-textarea {
float: right;
}
.comment-author, .cancel-comment-reply, .wpuf-label {
margin-bottom: 1px;
}
#comment-input label, #comment-textarea label {
display: block;
margin-bottom: 5px;
}
.post-entry {
color: #444;
overflow:hidden
}
.homepage-widget:last-child, #sidebar .widget .block-item-small:last-child {
margin-bottom: 0;
}
.homepage-widget .block .block-item-small:last-child, .homepage-widget .block .block-item-big-last, .widget .block-item-small:last-child {
border-bottom: 0 none;
margin-bottom: 0;
padding-bottom: 0;
}
.homepage-widget .block .block-item-smalls:last-child, .sbOptions li.last a {
border-bottom: medium none;
}
/** Footer - by Aabed Arjmand // Soren Design **/

#footer-top{
background: #111;
margin: 0;
overflow: hidden;
padding: 0px;
width: 100%;
float:right;
height:40px;
font-size:11px;
z-index:999999999;
position:relative;
border-bottom:2px solid #000
}
#footer {
margin: 0 auto;
width: 940px;
padding:60px 0px 0px 0px
}
.menu-left {
display: inline-block;
float: left;
line-height:42px;
font-size:11px;
text-align:left;
margin: 0px 0px 0px 3px;
transition: all 222ms ease 0s;
width: 287px;
color:#ccc;
font-family: "mitra",byekan,Tahoma;
}
/** Social Networks - by Aabed Arjmand // Soren Design **/
.menu-right {
display: inline-block;
float: right;
color:#ccc;
line-height:40px;
margin: 0px 0px 0px 3px;
transition: all 222ms ease 0s;
width: 442px;
font-family: "mitra",byekan,Tahoma;
}
.tw a, .fb a, .gplus a, .rss a , .ins a{
background-position: 0 0;
display: inline-block;
float: right;
height: 24px;
margin: 6px 0px 0px 4px;
transition: all 222ms ease 0s;
width: 24px;
}
.tw a {
background: url("images/twitter.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.fb a {
background: url("images/facebook.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.gplus a {
background: url("images/gplus.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.rss a {
background: url("images/rss.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
margin-left:10px;
}
.ins a {
background: url("images/instagram.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.tw a:hover, .fb a:hover, .gplus a:hover, .rss a:hover, .ins a:hover {
background-position: 0 -24px;
}

#wrapper-footer {
background: #222;
margin: 0;
overflow: hidden;
padding: 0px;
width: 100%;
float:right;
height:150px;
font-size:11px;
z-index:999999999;
position:relative
}
#wrapper-footer a {
color: #ddd;
}
#wrapper-footer a:hover {
color: #ffa800;
}
#footer-bottom .left {
color: #ccc;
direction: ltr;
float: left;
line-height: 18px;
padding-top:16px
}
#footer-bottom .right {
color: #ccc;
direction: rtl;
float: right;
line-height: 18px;
text-align: right;
padding-top:12px
}
.sorendesign {
float: left;
padding:0px 10px;
}
.kashannews {
float: right;
padding:0px 10px;
}
#footer .widget {
float: left;
margin-bottom: 25px;
margin-right: 20px;
width: 300px;
}
#footer .backToTop {
background: url("images/arrowup.png") no-repeat scroll left center rgba(0, 0, 0, 0);
height: 12px;
margin-left: 20px;
padding-left: 20px;
}
#comment-input input{
background: none repeat scroll 0 0 #f6f6f6;
border: 1px solid #bbb;
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
box-sizing: border-box;
padding: 4px 5px;
width: 220px;
right:0px
}
#comment-textarea-admin textarea {
background: none repeat scroll 0 0 #f6f6f6;
border: 1px solid #bbb;
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
box-sizing: border-box;
color: #666;
font-family: tahoma;
height: 157px;
padding: 5px;
width: 100%;
}
#comment-textarea textarea {
background: none repeat scroll 0 0 #f6f6f6;
border: 1px solid #bbb;
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
box-sizing: border-box;
color: #666;
font-family: tahoma;
height: 157px;
padding: 5px;
width: 350px;
float:left
}
.form-submit input{
background: none repeat scroll 0 0 #333;
border: 1px solid #333;
border-radius: 3px;
color: #fff;
cursor: pointer;
font-family: "mitra",byekan,Tahoma;
font-size: 13px;
padding: 0 10px;
margin:10px 0px;
float:left
}
.grid {
margin: 0 auto;
list-style: none;
text-align: center;
}
.grid li {
display: inline-block;
margin: 0;
padding: 0px;
text-align: left;
position: relative;
}
.grid figure {
margin: 0;
position: relative;
float:right
}
.grid figure img {
max-width: 100%;
display: block;
position: relative;
}
.grid figcaption {
position: absolute;
top: 0;
left: 0;
padding: 0px;
background: #333;
color: #ed4e6e;
font-family: "mitra",byekan,Tahoma;
}
.grid figcaption a {
text-align: center;
padding: 0px 10px;
border-radius: 2px;
display: inline-block;
background: #cc3333;
color: #fff;
font-size:14px;
font-weight:normal;
margin:0px auto
}
/* Caption Style 3 */
.cs-style-3 figure {
overflow: hidden;
}
.cs-style-3 figure img {
-webkit-transition: -webkit-transform 0.4s;
-moz-transition: -moz-transform 0.4s;
transition: transform 0.4s;
}
.no-touch .cs-style-3 figure:hover img,
.cs-style-3 figure.cs-hover img {
-webkit-transform: translateY(-40px);
-moz-transform: translateY(-40px);
-ms-transform: translateY(-40px);
transform: translateY(-40px);
}
.cs-style-3 figcaption {
height: 60px;
width: 100%;
top: auto;
bottom: 0;
opacity: 0;
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
transform: translateY(100%);
-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
transition: transform 0.4s, opacity 0.1s 0.3s;
}
.no-touch .cs-style-3 figure:hover figcaption,
.cs-style-3 figure.cs-hover figcaption {
opacity: 1;
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
-moz-transition: -moz-transform 0.4s, opacity 0.1s;
transition: transform 0.4s, opacity 0.1s;
}
.cs-style-3 figcaption a {
position: absolute;
bottom: 15px;
left: 17px;
}
@media screen and (max-width: 31.5em) {
.grid {
padding: 0px;
}
.grid li {
width: 100%;
min-width: 300px;
}
}
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {outline: none;}
.flex-prev, .flex-next {background:#fff;border:1px solid #ccc;width:28px;height:28px;text-indent:4000px}
.flex-prev {float:left;background: #fff url("images/flex-prev.png") no-repeat }
.flex-next {float:right;margin-right:10px;background: #fff url("images/flex-next.png") no-repeat }
.flex-prev:hover {background: #f9f9f9 url("images/flex-prev-h.png") no-repeat }
.flex-next:hover {background: #f9f9f9 url("images/flex-next-h.png") no-repeat }
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;margin-left:11px}
.flexslider {margin: 0; padding: 0;text-align:left;direction:ltr;margin-right:10px}
.flexslider .slides > li {display: none; position: relative; -webkit-backface-visibility: hidden;float:right;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {border:1px solid #999;float:left}
.flex-pauseplay span {text-transform: capitalize;}
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}
.no-js .slides > li:first-child {display: block;}
.flexslider {margin: 0 0 10px; position: relative; zoom: 1;}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1}
.carousel li {}
.flex-caption{
padding: 0px 0px;
float:right;
direction:rtl
}
.flex-caption h2{
background:#fcfcfc;
background:rgba(255,255,255,0.6);
text-align:right;
padding: 0px;
margin: 0px 12px 0px 0px;
padding:10px;
font-family: "mitra",byekan,Tahoma;
font-size:14px;
line-height:22px;
direction:rtl;
position:absolute;
right:12px;
top:12px
}
.flex-caption h2 a{
color: #444;
}
.flex-caption h2 a:hover{
color: #cc3333;
}
.flex-content{
width:280px;
text-align:right;
color: #666;
padding: 0px;
margin: 10px 25px 0px 0px;
font-family: Tahoma;
font-size:11px;
line-height:18px;
direction:rtl;
float:right
}
.kcarcover{
width: 605px;
float: left;
overflow: hidden;
}
#kentcarousel ul li{
margin: 0px 0px 0px 0px
}
/* Direction Nav */
.flex-control-nav {width:180px;float:right;position:absolute;top:230px;right:20px}
.flex-control-nav li a{width:14px;float:right;border:1px solid #666;margin-left:5px;-webkit-border-radius: 50px;
-moz-border-radius: 50px;cursor:pointer;
border-radius: 50px;text-indent:4000px}
.flex-active{background:#ff9900;float:left}

#wrapperx {
width:855px;float:right;
}
#contentHolder{
position:relative;
}
#headerx,#footerx {
height: 1px;
width: 100%;
clear:both;
}
.leftsidebar {
position: absolute;
top: 0;
}
.leftsidebarfixed {
position: fixed;
top: 0;
}
.contentx {
float: right;
position: relative;
width: 855px;
}
.clearfix:after {content: ".";clear: both;visibility: hidden;line-height: 0;height: 0;}
.clearfix {display: block;}
html[xmlns] .clearfix {display: block;}
* html .clearfix {height: 1%;}
.ldc-ul_cont{position:relative;float:right; background:#fff; border:1px solid #ccc; cursor: pointer; font-size: 11px; height: 18px;margin-top:10px; padding:2px 5px; position: relative; line-height:18px }
.ldc-ul_cont img{
background: none repeat scroll 0 0 transparent;
box-shadow: none;
margin: 2px 0px 0px 5px;
position: relative;
border:none;
float:right
}
.addtoany_share_save_container {
clear: both;
margin: 16px 0;
}
.addtoany_list {
display: inline;
line-height: 16px;
}
.addtoany_list a {
display: inline-block;
font-size: 16px;
padding: 0 5px 0 0;
vertical-align: middle;
}
.addtoany_list a img {
border: none;
height: auto;
opacity: 1;
overflow: hidden;
vertical-align: top;
width: auto;
}
.addtoany_list a:hover img {
border: none;
}
.addtoany_list.a2a_kit_size_32 a {
font-size: 32px;
}
.addtoany_list.a2a_kit_size_32 a span {
border-radius: 4px;
display: inline-block;
height: 32px;
line-height: 32px;
opacity: 1;
width: 32px;
}
.addtoany_list a:hover img, .addtoany_list a:hover span {
opacity: 0.7;
}
.addtoany_list a.addtoany_special_service:hover img, .addtoany_list a.addtoany_special_service:hover span {
opacity: 1;
}
.addtoany_special_service {
display: inline-block;
vertical-align: middle;
}
.addtoany_special_service a, .addtoany_special_service div, .addtoany_special_service iframe, .addtoany_special_service span {
margin: 0;
vertical-align: baseline;
}
.addtoany_special_service iframe {
max-width: none;
}
a.addtoany_share_save.addtoany_no_icon span.a2a_img_text {
display: none;
}
a.addtoany_share_save img {
border: 0 none;
height: auto;
width: auto;
}
#kashanmag2 {
overflow: hidden;
position: relative;
}
.kashan-f2 {
float: right;
width: 315px;
margin: 15px 15px 0px 0px
}
.lefton8 {
border:1px solid #333;
border-bottom:none;
border-top:3px solid #333;
background: #cc3333;
padding: 5px 15px;
font-family: "mitra",byekan,Tahoma;
color: #fff;
font-size: 17px;
text-align: right;
-webkit-border-radius: 5px 5px 0px 0px;
-moz-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
}
.kashan33 {
float: right;
width: 313px;
height: 270px;
border: 1px solid #ccc;
overflow-y: scroll;
padding-top: 4px;
background:#fcfcfc;
-webkit-border-radius: 0px 0px 5px 5px;
-moz-border-radius: 0px 0px 5px 5px;
border-radius: 0px 0px 5px 5px;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.kashan33 ul {
margin:0px 5px 10px 5px;
background-color: #fff;
}
.kashan33 ul li {
border: none;
line-height: 16px;
text-align: right;
padding:0px;
margin:2px 0px
}
.kashan33 ul li a {
font-size: 11px;
color: #333;
display:block;
background:#f9f9f9;
margin:0px;
padding: 5px;
}
.kashan33 ul li a:hover {
color: #cc0000;
display:block;
background:#fff;
}
.container22{
float: right;
overflow: hidden;
padding: 3px 0px 10px 0px;
position: relative;
margin-right: -14px;}


/* WP 3.6 Native Audio Player styling*/

.mejs-container {
border:1px solid #ccc;
}

/* change the color of the background */
.mejs-controls,
.mejs-mediaelement,
.mejs-container {
background: url('') !important;
background-color: #fff !important;
}
/* change the color of the lettering */
.mejs-currenttime,
.mejs-duration {
color: black !important;
}
/* eliminate the yellow border around the play button during playback */
.mejs-controls .mejs-button button:focus {
outline: none !important;
}
/* use a sprite file with darker transport icons */
.mejs-controls .mejs-button button {
background-image: url('images/controls-dark.svg') !important;
}
/* change the color of the progress bar */
.mejs-controls .mejs-time-rail .mejs-time-total {
background: #ddd !important;
}
/* change the color of the current time bar */
.mejs-controls .mejs-time-rail .mejs-time-current {
background: #cc3333 !important;
}
/* change the color of the file loading bar */
.mejs-controls .mejs-time-rail .mejs-time-loaded {
background: #ccc !important;
}
.mejs-horizontal-volume-total{
background: #ccc !important;
}
.mejs-horizontal-volume-current{
background: #666 !important;
}

.mejs-offscreen {
left:0px !important
}
.whtr table{
width:100px;
height:32px;
float:left
}
.whtr tr.tbrdr{
float:left;
height:36px;
font-size: 12px;
}
.whtr tr td.tmp{
font-size: 28px;

}
.whtr tr td.tmp small{
font-size: 14px;
}
.whtr tr td.img img{
display: block;
height:36px;
width:36px;
float:left
}










body>div>footer,
body>div>header,
body>div>section,
body>footer,
body>header,
body>section {
clear: both;
margin: 0 auto
}
#gkContent::after,
#gkPageContent::after,
#gkSidebar::after,
#gkTop1>div::after,
#gkTop2>div::after,
#gkTopMenu::after,
.box::after,
.itemSocialSharing::after,
article header ul::after,
article::after,
aside::after,
footer::after,
header::after,
section::after {
clear: both;
content: "";
display: table;
direction: rtl
}
aside#gkSidebar,
section#gkComponentWrap,
section#gkContent {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
float: right
}
#gkSidebar {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
text-align: right
}
#gkContent.gkColumnLeft,
#gkContent.gkColumnLeft+#gkSidebar {
float: right
}
#gkSidebar>div>.box {
}
#gkSidebar>div>.box:first-child {
margin-top: 0
}
#gkContentWrap {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
float: right;
padding: 0px
}
#gkContentWrap+#gkInset {
float: left
}
#gkContentWrap.gkInsetLeft,
#gkContentWrap.gkInsetLeft+#gkInset {
float: right
}
#gkMainbody>div {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
float: right;
direction: rtl
}
#gkInnerInset {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box
}
#gkMainbody>div+#gkInnerInset {
float: right
}
#gkMainbody>div.gkInnerInsetLeft {
float: left
}
#gkMainbody>div.gkInnerInsetLeft+#gkInnerInset {
float: right;
padding-right: 32px
}
.gkMainbodyTop {
margin: -10px -19px 0 -20px;
border-bottom: 1px solid #d2d0d0;
border-top: 1px solid #d2d0d0
}
#gkMainbody .box {
padding-left: 0!important;
padding-right: 0!important;
width: 100%
}
#gkMainbody .box,
#gkMainbodyBottom .box,
.gkMainbodyTop .box {
border-top: 1px solid #d2d0d0
}
#gkMainbody .box:first-child,
#gkMainbodyBottom .box:first-child,
.gkMainbodyTop .box:first-child {
border-top: 0
}
#gkMainbody .box {
margin-bottom: 20px
}
.box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
color: #666;
font-size: 15px;
line-height: 1.6;
width: 100%;
background: #FFF
}
div.content {
clear: both
}

.videobox h3{
color: #aaa;
font-family: "mitra",byekan,Tahoma;
font-size: 13px;
padding: 0px 0px 5px 0px;
background: url("images/tit.png") repeat-x right 10px;}


.why-a h3{
color: #aaa;
font-family: "mitra",byekan,Tahoma;
font-size: 14px;
padding: 0px 0px 5px 0px;
text-align:center;
background: url("images/tit.png") repeat-x right 10px;}

.why-aa{
color: #333;
font-family: "mitra",byekan,Tahoma;
font-size: 13px;
padding: 0px 20px;
background: #fff
}

.why-item h3{
color: #cc3333;
font-family: "mitra",byekan,Tahoma;
font-size: 16px;
padding: 0px 20px 10px 20px;
background: #fff;
text-align:center
}


.why-item{
color: #333;
font-family: "mitra",byekan,Tahoma;
font-size: 11px;
padding: 0px 20px 20px 20px;
background: #fff;
width:250px;
float:right;
text-align:justify
}

.widget-login {
overflow:hidden;
position:relative
}


#loginform #user_login:hover,#loginform #user_pass:hover {
color:#000
}
#loginform #user_login:focus,#loginform #user_pass:focus {
background:#FFF;
color:#000
}
#loginform #wp-submit ul#sidebar-login-links li {
border:1px solid #D9D9D9;
background:linear-gradient(top,#FBFBFB0,#EEE100%);
box-shadow:0 1px 2px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.5);
color:#000;
text-shadow:0 1px 0 #FFF;
height:30px;
line-height:30px;
width:auto;
font-size:13px;
padding:0 15px;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
-webkit-transition:background .40s;
-moz-transition:background .40s;
-o-transition:background .40s;
transition:background .40s;
position:relative
}

ul#sidebar-login-links li,ul#sidebar-login-links-left li {
display:inline;
list-style-type:none;
text-align:left;
padding:5px 5px 5px 0;
background:none;
border:none
}
.sidebar-login-info {
width:100%;
height:auto;
float:left;
display:block
}
.sidebar-login-info p {
color:#444;
padding-right:20px;
line-height:24px;
font-size:11px;
background:url(images/item.png) no-repeat right;
font-family: ubuntu-naskh,"Droid Arabic Naskh Shift Alt","Droid Arabic Naskh";
font-size: 13px;
}
.widget_sidebarlogin .sidebar-login-info .widget-container p,.widget_sidebarlogin .sidebar-login-info p {
text-align:left;
margin:0 10px 10px 0;
line-height:16px
}
.widget_sidebarlogin p#reglost {
margin-top:10px
}
.widget_sidebarlogin p#reglost a {
margin-right:5px
}
.widget_sidebarlogin .sidebar-login-info .avatar_container img {
padding:3px;
border:5px solid #ddd;
-moz-border-radius:4px;
-webkit-border-radius:4px;
margin-right:8px;
margin-top:5px;
float:left
}
.widget_sidebarlogin #message.error.fade p {
width:100%;
box-shadow:0 0 20px red;
text-align:center
}

/***** user-comment *****/
.user-comment #comment-previous {
width: 32px;
height: 21px;
background: #fff url(images/right.jpg) center no-repeat;
position:absolute;
top:13px;
left:32px}
.user-comment #comment-next {
width: 21px;
height: 21px;
background: url(images/left.png);
position:absolute;
top:13px;
left:12px
}
.user-comment ul {
margin: 0px;
float: right;
}
.user-comment ul li {
}
.logins {
position: relative;
margin: 0px auto;
color: #444;
text-shadow: 1px 1px 0 #fff;
}
.logins p {
margin: 0 0 10px;
}
.ge{
float:left
}
.widget-login input, .widget-login button, .widget-login label {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.widget-login input[type=text], .widget-login input[type=password] {
padding: 0px 10px 0px 40px;
margin-bottom:10px;
width: 129px;
height: 40px;
color: #333;
text-shadow: 1px 1px 1px #fff;
background: #fff;
text-align:left;
border: 0;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06);
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06);
}
.widget-login input[type=text]:focus, .widget-login input[type=password]:focus {
color: #333;
background:#eee;
outline: 0;
}
.widget-login label {
float: right;
min-width: 96px;
color:#333;
line-height: 40px;
padding-left: 10px;
font-size:11px;
text-shadow: 1px 1px 1px #fff;
text-align: right;
font-family: "mitra",byekan,Tahoma;

}
.forgot-password {
padding-left: 100px;
font-size: 13px;
text-align:right
}
.login-submit {
position: absolute;
top: 51px;
width: 60px;
height: 68px;
left:0px;
background:#fcfcfc;
background: url("images/lw.png") 0 0 no-repeat;
}
.button-primary {
position: relative;
z-index: 2;
width: 48px;
height: 48px;
padding: 0 0 48px;
/* Fix wrong positioning in Firefox 9 & older (bug 450418) */
text-indent: 120%;
white-space: nowrap;
overflow: hidden;
border: 0;
top:10px;
right:10px;
border-radius: 24px;
cursor: pointer;
background: url("images/btn.png") no-repeat top left;
}
.button-primary:hover {
background: url("images/btn.png") no-repeat bottom left;
}
::-moz-focus-inner {
border: 0;
padding: 0;
}
.lt-ie9 input[type=text], .lt-ie9 input[type=password] {
line-height: 40px;
background: #282828;
}
.lt-ie9 .login-submit {
position: absolute;
top: 12px;
right: -28px;
padding: 4px;
}
.lt-ie9 .login-submit:before, .lt-ie9 .login-submit:after {
display: none;
}
.lt-ie9 .login-button {
line-height: 48px;
}
.lt-ie9 .about {
background: #313131;
}
.cor-reg a {
background:#087766;
border:1px solid #444;
padding:0 10px;
color:#fff;
cursor:pointer;
float:right;
width:100%;
text-align:center;
margin-top:5px;
margin-bottom:5px;
font-family:ubuntu-naskh, 'Droid Arabic Naskh Shift Alt', 'Droid Arabic Naskh';
font-size:14px;
height:32px;
line-height:25px;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
-webkit-border-radius:2px;
-moz-border-radius:2px;
border-radius:2px;
}
.cor-reg a:hover {
background:#cc3333;
color:#fff;
}

#reglost {

float:right;
width:100%;
clear:both;
}

#loginform{
margin-top:10px;
}
.login-remember{
float:right;
width:100%;
clear:both;
margin-top:10px;
}

سایتم هم www.alookh.com هستش

لینک به ارسال

به گفتگو بپیوندید

هم اکنون می توانید مطلب خود را ارسال نمایید و بعداً ثبت نام کنید. اگر حساب کاربری دارید، برای ارسال با حساب کاربری خود اکنون وارد شوید .

مهمان
ارسال پاسخ به این موضوع ...

×   شما در حال چسباندن محتوایی با قالب بندی هستید.   حذف قالب بندی

  تنها استفاده از 75 اموجی مجاز می باشد.

×   لینک شما به صورت اتوماتیک جای گذاری شد.   نمایش به صورت لینک

×   محتوای قبلی شما بازگردانی شد.   پاک کردن محتوای ویرایشگر

×   شما مستقیما نمی توانید تصویر خود را قرار دهید. یا آن را اینجا بارگذاری کنید یا از یک URL قرار دهید.

×
×
  • اضافه کردن...