رفتن به مطلب
raminfa

مشکل با اسکرول پایین سایت در IE

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

سلام دوستان

من قالب رو با آرتیستر طراحی کردم

ولی در IE 7 و پایین تر اسکرول بار پایین وبسایت میاد

این لینک رو هم به دقت مطالعه و دنبال کردم

منتها در INDEX.php من اصلا برای IE شرطی برقرار نشده

وقتی هم که طبق راهنمایی دوستان از شرط استفاده میکنم سایت DOWN میشه

من کد INDEX.php و template.css و template.ie7.css و template.ie6.css رو اینجا قرار میدم

لطفا کمک کنید.ممنونم

index.php

<?php
/**
* @version	   $Id: index.php 14401 2010-01-26 14:10:00Z louis $
* @package	   Joomla
* @copyright    Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
* @license	   GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// Set flag that this is a parent file
define( '_JEXEC', 1 );

define('JPATH_BASE', dirname(__FILE__) );

define( 'DS', DIRECTORY_SEPARATOR );

require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );

JDEBUG ? $_PROFILER->mark( 'afterLoad' ) : null;

/**
* CREATE THE APPLICATION
*
* NOTE :
*/
$mainframe =& JFactory::getApplication('site');

/**
* INITIALISE THE APPLICATION
*
* NOTE :
*/
// set the language
$mainframe->initialise();

JPluginHelper::importPlugin('system');

// trigger the onAfterInitialise events
JDEBUG ? $_PROFILER->mark('afterInitialise') : null;
$mainframe->triggerEvent('onAfterInitialise');

/**
* ROUTE THE APPLICATION
*
* NOTE :
*/
$mainframe->route();

// authorization
$Itemid = JRequest::getInt( 'Itemid');
$mainframe->authorize($Itemid);

// trigger the onAfterRoute events
JDEBUG ? $_PROFILER->mark('afterRoute') : null;
$mainframe->triggerEvent('onAfterRoute');

/**
* DISPATCH THE APPLICATION
*
* NOTE :
*/
$option = JRequest::getCmd('option');
$mainframe->dispatch($option);

// trigger the onAfterDispatch events
JDEBUG ? $_PROFILER->mark('afterDispatch') : null;
$mainframe->triggerEvent('onAfterDispatch');

/**
* RENDER  THE APPLICATION
*
* NOTE :
*/
$mainframe->render();

// trigger the onAfterRender events
JDEBUG ? $_PROFILER->mark('afterRender') : null;
$mainframe->triggerEvent('onAfterRender');

/**
* RETURN THE RESPONSE
*/
echo JResponse::toString($mainframe->getCfg('gzip'));

template.css

/* begin Page */
/* Created by Artisteer v3.0.0.33215 */

#art-main, table
{
   font-family: Arial, Helvetica, Sans-Serif;
   font-size: 13px;
}

h1, h2, h3, h4, h5, h6, p, a, ul, ol, li
{
   margin: 0;
   padding: 0;
}

body
{
 text-align:right;
 margin: 0 auto;
 padding: 0;
 color: #2A1304;
 background-color: #EF430A;
 background-image: url('../images/Bottom_texture.png');
 background-repeat: repeat-x;
 background-attachment: fixed;
 background-position: top left;
}

.art-postcontent,
.art-postcontent li,
.art-postcontent table,
.art-postcontent a,
.art-postcontent a:link,
.art-postcontent a:visited,
.art-postcontent a.visited,
.art-postcontent a:hover,
.art-postcontent a.hovered
{
   font-family: Arial, Helvetica, Sans-Serif;
   font-size: 13px;
   text-align:right;
}

.art-postcontent p
{
   margin: 12px 0 12px 0;
}

h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
h1 a:link, h2 a:link, h3 a:link, h4 a:link, h5 a:link, h6 a:link,
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited,
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover
{
 font-family: Arial, Helvetica, Sans-Serif;
 font-size: 32px;
}

.art-postcontent a
{
 text-decoration: none;
 color: #2F617F;
}

.art-postcontent a:link
{
 text-decoration: none;
 color: #2F617F;
}

.art-postcontent a:visited, .art-postcontent a.visited
{

 color: #2F617F;
}

.art-postcontent  a:hover, .art-postcontent a.hover
{

 text-decoration: underline;
 color: #3E81A8;
}


.art-postcontent h1
{
  margin: 21px 0 21px 0; 
  color: #2C1602;

}

.art-postcontent h2
{
   color: #703510;
  margin: 19px 0 19px 0; 
  font-size: 24px;   
}

.art-postcontent h3
{
  margin: 19px 0 19px 0; 
 color: #753710; 
 font-size: 19px;    
}

.art-postcontent h4
{
  margin: 20px 0 20px 0; 
  color: #3D5266; 
  font-size: 16px;   
}

.art-postcontent h5
{
  margin: 26px 0 26px 0; 
  color: #3D5266;   
  font-size: 13px;
}

.art-postcontent h6
{
  margin: 35px 0 35px 0; 
  color: #3D5266;
  font-size: 11px;	 
}

ul
{
 list-style-type: none;
}

ol
{
 list-style-position: inside;
}

#art-main
{
 position: relative;
 width: 100%;
 left: 0;
 top: 0;
 cursor:default;
}


#art-page-background-middle-texture
{
 position: absolute;
 background-image: url('../images/Middle_texture.png');
 background-repeat: repeat-x;
 background-position: bottom left;
 background-attachment: fixed;
 width:100%;
 min-height:100%;
 overflow:visible;

}


.cleared
{
 float: none;
 clear: both;
 margin: 0;
 padding: 0;
 border: none;
 font-size: 1px;
}

form
{
 padding: 0 !important;
 margin: 0 !important;
}

table.position
{
 position: relative;
 width: 100%;
 table-layout: fixed;
}
/* end Page */

/* begin Box, Sheet */
.art-sheet
{
 position: relative;
 margin: 0 auto;
 min-width: 49px;
 min-height: 49px;
}

.art-sheet-body
{
 position: relative;
 padding: 7px;
}

.art-sheet-tr, .art-sheet-tl, .art-sheet-br, .art-sheet-bl, .art-sheet-tc, .art-sheet-bc,.art-sheet-cr, .art-sheet-cl
{
 position: absolute;
}

.art-sheet-tr, .art-sheet-tl, .art-sheet-br, .art-sheet-bl
{
 width: 76px;
 height: 76px;
 background-image: url('../images/sheet_s.png');
}

.art-sheet-tl
{
 top: 0;
 left: 0;
 clip: rect(auto, 38px, 38px, auto);
}

.art-sheet-tr
{
 top: 0;
 right: 0;
 clip: rect(auto, auto, 38px, 38px);
}

.art-sheet-bl
{
 bottom: 0;
 left: 0;
 clip: rect(38px, 38px, auto, auto);
}

.art-sheet-br
{
 bottom: 0;
 right: 0;
 clip: rect(38px, auto, auto, 38px);
}

.art-sheet-tc, .art-sheet-bc
{
 left: 38px;
 right: 38px;
 height: 76px;
 background-image: url('../images/sheet_h.png');
}

.art-sheet-tc
{
 top: 0;
 clip: rect(auto, auto, 38px, auto);
}

.art-sheet-bc
{
 bottom: 0;
 clip: rect(38px, auto, auto, auto);
}

.art-sheet-cr, .art-sheet-cl
{
 top: 38px;
 bottom: 38px;
 width: 76px;
 background-image: url('../images/sheet_v.png');
}

.art-sheet-cr
{
 right: 0;
 clip: rect(auto, auto, auto, 38px);
}

.art-sheet-cl
{
 left: 0;
 clip: rect(auto, 38px, auto, auto);
}

.art-sheet-cc
{
 position: absolute;
 top: 38px;
 left: 38px;
 right: 38px;
 bottom: 38px;
 background-color: #F9FAFB;
}

.art-sheet
{
 top: 30px !important;
 margin-bottom: 30px !important;
 cursor:auto;
 width: 900px;
}


/* end Box, Sheet */

/* begin Header */
div.art-header
{
 margin: 0 auto;
 position: relative;
 width: 100%;
 height: 175px;
 overflow: hidden;
}


div.art-header-png
{
 position: absolute;
 left:0;
 top: 0;
 width: 886px;
 height: 175px;
 background-image: url('../images/header.png');
 background-repeat: no-repeat;
 background-position:center center; 
}

div.art-header-jpeg
{
 position: absolute;
 top: 0;
 left:0;
 width: 886px;
 height: 175px;
 background-image: url('../images/header.jpg');
 background-repeat: no-repeat;
 background-position: center center;
}


/* end Header */

/* begin Logo */
div.art-logo
{
 display: block;
 position: absolute;
 left: 10px;
 top: 20px;
 width: 500px;
}

h1.art-logo-name
{
 display: block;
 text-align: {HorizontalAlign};
}

h1.art-logo-name, h1.art-logo-name a, h1.art-logo-name a:link, h1.art-logo-name a:visited, h1.art-logo-name a:hover
{
 font-size: 33px;
 text-decoration: none;
 padding: 0;
 margin: 0;
 color: {NameFontColor} !important;
}


h2.art-logo-text, 
h2.art-logo-text a,
h2.art-logo-text a:link,
h2.art-logo-text a:visited,
h2.art-logo-text a:hover
{
 font-size: 17px;
 padding: 0;
 margin: 0;
 color: {TextFontColor} !important;
}

h2.art-logo-text
{
 display: block;
 text-align: {HorizontalAlign};
}
/* end Logo */

/* begin Menu */
/* menu structure */

.art-menu a, .art-menu a:link, .art-menu a:visited, .art-menu a:hover
{
   outline: none;
}

.art-menu, .art-menu ul
{
 margin: 0;
 padding: 0;
 border: 0;
 list-style-type: none;
 display: block;
}

.art-menu li
{
 margin: 0;
 padding: 0;
 border: 0;
 display: block;
 float: left;
 position: relative;
 z-index: 5;
 background: none;
}

.art-menu li:hover
{
 z-index: 10000;
 white-space: normal;
}

.art-menu li li
{
 float: none;
}

.art-menu ul
{
 visibility: hidden;
 position: absolute;
 z-index: 10;
 left: 0;
 top: 0;
 background: none;
}

.art-menu li:hover>ul
{
 visibility: visible;
 top: 100%;
}

.art-menu li li:hover>ul
{
 top: 0;
 left: 100%;
}

.art-menu:after, .art-menu ul:after
{
 content: ".";
 height: 0;
 display: block;
 visibility: hidden;
 overflow: hidden;
 clear: both;
}
.art-menu, .art-menu ul
{
 min-height: 0;
}

.art-menu ul
{
 background-image: url('../images/spacer.gif');
 padding: 10px 30px 30px 30px;
 margin: -10px 0 0 -30px;
}

.art-menu ul ul
{
 padding: 30px 30px 30px 10px;
 margin: -30px 0 0 -10px;
}

ul.art-menu
{
 float: right;
}



/* menu structure */

.art-menu
{
 padding: 3px 3px 3px 3px;
}

.art-nav
{
 position: relative;
 min-height: 34px;
 z-index: 100;
}

.art-nav .l, .art-nav .r
{
 position: absolute;
 z-index: -1;
 top: 0;
 height: 100%;
 background-image: url('../images/nav.png');
}

.art-nav .l
{
 left: 0;
 right: 0;
}

.art-nav .r
{
 right: 0;
 width: 886px;
 clip: rect(auto, auto, auto, 886px);
}


/* end Menu */

/* begin MenuItem */
.art-menu a
{
 position: relative;
 display: block;
 overflow: hidden;
 height: 28px;
 cursor: pointer;
 text-decoration: none;
}


.art-menu ul li
{
   margin:0;
   clear: both;
}


.art-menu a .r, .art-menu a .l
{
 position: absolute;
 display: block;
 top: 0;
 z-index: -1;
 height: 94px;
 background-image: url('../images/menuitem.png');
}

.art-menu a .l
{
 left: 0;
 right: 8px;
}

.art-menu a .r
{
 width: 416px;
 right: 0;
 clip: rect(auto, auto, auto, 408px);
}

.art-menu a .t, .art-menu ul a, .art-menu a, .art-menu a:link, .art-menu a:visited, .art-menu a:hover
{
 font-size: 18px;
 text-align: center;
 text-decoration: none;
}

.art-menu a .t
{
 color: #ECF0F4;
 padding: 0 4px;
 margin: 0 8px;
 line-height: 28px;
 text-align: center;
}

.art-menu a:hover .l, .art-menu a:hover .r
{
 top: -33px;
}

.art-menu li:hover>a .l, .art-menu li:hover>a .r
{
 top: -33px;
}

.art-menu li:hover a .l, .art-menu li:hover a .r
{
 top: -33px;
}
.art-menu a:hover .t
{
 color: #7F5305;
}

.art-menu li:hover a .t
{
 color: #7F5305;
}

.art-menu li:hover>a .t
{
 color: #7F5305;
}


.art-menu a.active .l, .art-menu a.active .r
{
 top: -66px;
}

.art-menu a.active .t
{
 color: #FEE7DC;
}


.art-menu a:hover.separator-without-submenu 
{
 cursor: default;
}

.art-menu a:hover.separator-without-submenu .t
{
 color: #ECF0F4;
}

.art-menu li:hover a.separator-without-submenu .t
{
 color: #ECF0F4;
}

a:hover.separator-without-submenu .r, a:hover.separator-without-submenu .l 
{
 top: 0 !important;
}
/* end MenuItem */

/* begin MenuSeparator */
.art-menu .art-menu-li-separator
{
 display: block;
 width: 9px;
 height:28px;
}
.art-nav .art-menu-separator
{
 display: block;
 margin:0 auto;
 width: 1px;
 height: 28px;
 background-image: url('../images/menuseparator.png');
}
/* end MenuSeparator */

/* begin MenuSubItem */
.art-menu ul a
{
 display: block;
 text-align: center;
 white-space: nowrap;
 height: 26px;
 width: 180px;
 overflow: hidden;
 line-height: 26px;
 background-image: url('../images/subitem.png');
 background-position: left top;
 background-repeat: repeat-x;
 border-width: 0;
 border-style: solid;
}

.art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
{
 display: inline;
 float: none;
 margin: inherit;
 padding: inherit;
 background-image: none;
 text-align: inherit;
 text-decoration: inherit;
}

.art-menu ul a, .art-menu ul a:link, .art-menu ul a:visited, .art-menu ul a:hover, .art-menu ul a:active, .art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
{
 text-align: center;
 text-indent: 12px;
 text-decoration: none;
 line-height: 26px;
 color: #872F03;
 font-size: 12px;
 margin:0;
 padding:0;
}

.art-menu ul li a:hover
{
 color: #000000;
 background-position: 0 -26px;
}

.art-menu ul li:hover>a
{
 color: #000000;
 background-position: 0 -26px;
}

.art-nav .art-menu ul li a:hover span, .art-nav .art-menu ul li a:hover span span
{
 color: #000000;
}

.art-nav .art-menu ul li:hover>a span, .art-nav .art-menu ul li:hover>a span span
{
 color: #000000;
}


/* end MenuSubItem */

/* begin Layout */
.art-content-layout
{
 display: table;
 width: 100%;
 table-layout: fixed;
 border-collapse: collapse;
 background-color: Transparent;
 border: none !important;
 padding:0 !important;
}
.art-layout-cell, .art-content-layout-row
{
 background-color: Transparent;
 vertical-align: top;
 text-align: center;
 border: none !important;
 margin:0 !important;
 padding:0 !important;
}
.art-content-layout .art-content-layout{width: auto;margin:0;}
.art-content-layout .art-layout-cell, .art-content-layout .art-layout-cell .art-content-layout .art-layout-cell{display: table-cell;}
.art-layout-cell .art-layout-cell{display: block;}
.art-content-layout-row {display: table-row;}
.art-layout-glare{position:relative;}/* end Layout */

/* begin Box, Block */
.art-block
{
 position: relative;
 margin: 0 auto;
 min-width: 25px;
 min-height: 25px;
}

.art-block-body
{
 position: relative;
 padding: 3px;
}

.art-block-tr, .art-block-tl, .art-block-br, .art-block-bl, .art-block-tc, .art-block-bc,.art-block-cr, .art-block-cl
{
 position: absolute;
}

.art-block-tr, .art-block-tl, .art-block-br, .art-block-bl
{
 width: 36px;
 height: 36px;
 background-image: url('../images/block_s.png');
}

.art-block-tl
{
 top: 0;
 left: 0;
 clip: rect(auto, 18px, 18px, auto);
}

.art-block-tr
{
 top: 0;
 right: 0;
 clip: rect(auto, auto, 18px, 18px);
}

.art-block-bl
{
 bottom: 0;
 left: 0;
 clip: rect(18px, 18px, auto, auto);
}

.art-block-br
{
 bottom: 0;
 right: 0;
 clip: rect(18px, auto, auto, 18px);
}

.art-block-tc, .art-block-bc
{
 left: 18px;
 right: 18px;
 height: 36px;
 background-image: url('../images/block_h.png');
}

.art-block-tc
{
 top: 0;
 clip: rect(auto, auto, 18px, auto);
}

.art-block-bc
{
 bottom: 0;
 clip: rect(18px, auto, auto, auto);
}

.art-block-cr, .art-block-cl
{
 top: 18px;
 bottom: 18px;
 width: 36px;
 background-image: url('../images/block_v.png');
}

.art-block-cr
{
 right: 0;
 clip: rect(auto, auto, auto, 18px);
}

.art-block-cl
{
 left: 0;
 clip: rect(auto, 18px, auto, auto);
}

.art-block-cc
{
 position: absolute;
 top: 18px;
 left: 18px;
 right: 18px;
 bottom: 18px;
 background-color: #F9FAFB;
}

.art-block
{
 margin: 7px;
}

/* end Box, Block */

/* begin BlockHeader */
.art-blockheader
{
 margin-bottom: 0;
}

.art-blockheader, .art-blockheader h3.t
{
 position: relative;
 height: 26px;
}

.art-blockheader h3.t,
.art-blockheader h3.t a,
.art-blockheader h3.t a:link,
.art-blockheader h3.t a:visited, 
.art-blockheader h3.t a:hover
{
 color: #1F0B00;
 font-size: 14px;
 text-align: center;
}

.art-blockheader h3.t
{
 margin:0;
 padding: 0 10px 0 5px;
 white-space: nowrap;
 line-height: 26px;    
}

.art-blockheader .l, .art-blockheader .r
{
 position: absolute;
 height: 26px;
 background-image: url('../images/blockheader.png');
}

.art-blockheader .l
{
 left: 0;
 right: 6px;
}

.art-blockheader .r
{
 width: 886px;
 right: 0;
 clip: rect(auto, auto, auto, 880px);
}

/* end BlockHeader */

/* begin Box, BlockContent */
.art-blockcontent
{ 
 text-align:right;
 position: relative;
 margin: 0 auto;
 min-width: 1px;
 min-height: 1px;
}

.art-blockcontent-body
{
 position: relative;
 padding: 3px;
}


.art-blockcontent-body, 
.art-blockcontent-body li, 
.art-blockcontent-body a,
.art-blockcontent-body a:link,
.art-blockcontent-body a:visited,
.art-blockcontent-body a:hover
{
 color: #2E3D4C;
 font-family: Arial, Helvetica, Sans-Serif;
 font-size: 13px;
}

.art-blockcontent-body p
{
 margin: 6px 0 6px 0;
}

.art-blockcontent-body a
{
 color: #2F617F;

}

.art-blockcontent-body a:link
{
 color: #2F617F;

}

.art-blockcontent-body a:visited, .art-blockcontent-body a.visited
{
 color: #7691AD;
 text-decoration: none;
}

.art-blockcontent-body a:hover, .art-blockcontent-body a.hover
{
 color: #3E81A8;
 text-decoration: none;

}

.art-blockcontent-body ul li
{
 line-height: 125%;    
 color: #3D5266;

 padding: 0 0 0 12px;
 background-image: url('../images/blockcontentbullets.png');
 background-repeat: no-repeat;
}/* end Box, BlockContent */

/* begin Button */
.art-button-wrapper a.art-button,
.art-button-wrapper a.art-button:link,
.art-button-wrapper input.art-button,
.art-button-wrapper button.art-button
{
 text-decoration: none;
 font-family: Arial, Helvetica, Sans-Serif;
 font-size: 13px;
 position:relative;
 top:0;
 display: inline-block;
 vertical-align: middle;
 white-space: nowrap;
 text-align: center;
 color: #FFFFFF !important;
 width: auto;
 outline: none;
 border: none;
 background: none;
 line-height: 34px;
 height: 34px;
 margin: 0 !important;
 padding: 0 21px !important;
 overflow: visible;
 cursor: pointer;
}

.art-button img, .art-button-wrapper img
{
 margin: 0;
 vertical-align: middle;
}

.art-button-wrapper
{
 vertical-align: middle;
 display: inline-block;
 position: relative;
 height: 34px;
 overflow: hidden;
 white-space: nowrap;
 width: auto;
 margin: 0;
 padding: 0;
 z-index: 0;
}

.firefox2 .art-button-wrapper
{
 display: block;
 float: left;
}

input, select, textarea
{
 vertical-align: middle;
 font-family: Arial, Helvetica, Sans-Serif;
 font-size: 13px;
}

.art-block select 
{
   width:96%;
}

.art-button-wrapper.hover .art-button, .art-button-wrapper.hover a.art-button:link, .art-button:hover
{
 color: #7F5305 !important;
 text-decoration: none !important;
}

.art-button-wrapper.active .art-button, .art-button-wrapper.active a.art-button:link
{
 color: #FFFFFF !important;
}

.art-button-wrapper .art-button-l, .art-button-wrapper .art-button-r
{
 display: block;
 position: absolute;
 height: 112px;
 margin: 0;
 padding: 0;
 background-image: url('../images/button.png');
}

.art-button-wrapper .art-button-l
{
 left: 0;
 right: 13px;
}

.art-button-wrapper .art-button-r
{
 width: 415px;
 right: 0;
 clip: rect(auto, auto, auto, 402px);
}

.art-button-wrapper.hover .art-button-l, .art-button-wrapper.hover .art-button-r
{
 top: -39px;
}

.art-button-wrapper.active .art-button-l, .art-button-wrapper.active .art-button-r
{
 top: -78px;
}

.art-button-wrapper input
{
 float: none !important;
}
/* end Button */

/* begin Box, Post */
.art-post
{
 position: relative;
 margin: 0 auto;
 min-width: 1px;
 min-height: 1px;
}

.art-post-body
{
 position: relative;
 padding: 10px;
}


.art-post
{
 margin: 0;
}

a img
{
 border: 0;
}

.art-article img, img.art-article
{
 border: solid 0 #B2C2D1;
 margin: 7px;
}

.art-metadata-icons img
{
 border: none;
 vertical-align: middle;
 margin: 2px;
}

.art-article table, table.art-article
{
 border-collapse: collapse;
 margin: 1px;
}

.art-article th, .art-article td
{
 padding: 2px;
 border: solid 1px #8099B3;
 vertical-align: top;
 text-align: center;
}

.art-article th
{
 text-align: center;
 vertical-align: middle;
 padding: 7px;
}

pre
{
 overflow: auto;
 padding: 0.1em;
}

/* end Box, Post */

/* begin PostHeaderIcon */
h2.art-postheader
{
 text-align:right;
 color: #214559;
 margin: 5px 0 5px 0;
}

h2.art-postheader, 
h2.art-postheader a, 
h2.art-postheader a:link, 
h2.art-postheader a:visited,
h2.art-postheader a.visited,
h2.art-postheader a:hover,
h2.art-postheader a.hovered
{
 font-size: 24px;
}

h2.art-postheader a, h2.art-postheader a:link
{
 text-align: center;
 text-decoration: none;
 color: #28536C;
}

h2.art-postheader a:visited, h2.art-postheader a.visited
{

 color: #5C7A99;
}


h2.art-postheader a:hover,  h2.art-postheader a.hovered
{


 color: #3E81A8;
}

/* end PostHeaderIcon */

/* begin PostIcons, PostHeaderIcons */
.art-postheadericons,
.art-postheadericons a,
.art-postheadericons a:link,
.art-postheadericons a:visited,
.art-postheadericons a:hover
{
 font-family: Arial, Helvetica, Sans-Serif;
 color: #3D5266;
}

.art-postheadericons
{
 padding: 1px;

}

.art-postheadericons a, .art-postheadericons a:link
{
 text-decoration: none;
 color: #2F617F;
}

.art-postheadericons a:visited, .art-postheadericons a.visited
{
 font-style: italic;
 font-weight: normal;
 color: #2F617F;
}

.art-postheadericons a:hover, .art-postheadericons a.hover
{
 font-style: italic;
 font-weight: normal;
 text-decoration: underline;
 color: #3E81A8;
}
/* end PostIcons, PostHeaderIcons */

/* begin PostBullets */
.art-post ol, .art-post ul
{
 margin: 1em 0 1em 2em;
 padding: 0;
}





.art-post li ol, .art-post li ul
{
 margin: 0.5em 0 0.5em 2em;
 padding: 0;
}

.art-post li
{
 color: #2E3D4C; 

 padding: 0;
}


/* end PostBullets */

/* begin PostQuote */
.art-postcontent blockquote,
.art-postcontent blockquote a,
.art-postcontent blockquote a:link,
.art-postcontent blockquote a:visited,
.art-postcontent blockquote a:hover
{
 color: #1E0A01;
 font-style: italic;
 font-weight: normal;
}

.art-postcontent blockquote p
{
  margin: 2px 0 2px 15px;
}

.art-postcontent blockquote
{
  border: solid 0 #FC9764;
 margin: 10px 10px 10px 50px;
 padding: 0 0 0 28px;
 background-color: #FDC9AF;
 background-image: url('../images/postquote.png');
 background-position: left top;
 background-repeat: no-repeat;/* makes blockquote not to align behind the image if they are in the same line */
 overflow: auto;
}

/* end PostQuote */

/* begin PostIcons, PostFooterIcons */
.art-postfootericons,
.art-postfootericons a,
.art-postfootericons a:link,
.art-postfootericons a:visited,
.art-postfootericons a:hover
{
 font-family: Arial, Helvetica, Sans-Serif;
 color: #3D5266;
}

.art-postfootericons
{
 padding: 1px;

}

.art-postfootericons a, .art-postfootericons a:link
{
 text-decoration: none;
 color: #2F617F;
}

.art-postfootericons a:visited, .art-postfootericons a.visited
{

 color: #2F617F;
}

.art-postfootericons a:hover, .art-postfootericons a.hover
{


 color: #3E81A8;
}
/* end PostIcons, PostFooterIcons */

/* begin Footer */
.art-footer
{
 position: relative;
 overflow: hidden;
 width: 100%;
}

.art-footer-b 
{
 position: absolute;
 left:10px;
 right:10px;
 bottom:0;
 height:50px;
 background-image: url('../images/footer_b.png');
}

.art-footer-r, .art-footer-l
{
 position: absolute;
 height:50px;
 background-image: url('../images/footer_s.png');
 bottom: 0;
}

.art-footer-l
{
 left: 0;
 width:10px;
}

.art-footer-r
{
 right: 0;
 width:20px;
 clip: rect(auto, auto, auto, 10px);
}

.art-footer-t
{
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 50px;
 background-color: #EBAD66;
}

.art-footer-body
{
   position:relative;
   padding: 5px;
}

.art-footer-body .art-rss-tag-icon
{
 position: absolute;
 left:   6px;
 bottom:5px;
 z-index:1;
}

.art-rss-tag-icon
{
 display: block;
 background-image: url('../images/rssicon.png');
 background-position: center right;
 background-repeat: no-repeat;
 height: 32px;
 width: 32px;
 cursor: default;
}

.art-footer-text p
{
 padding:0;
 margin:0;
}

.art-footer,
.art-footer a,
.art-footer a:link,
.art-footer a:visited,
.art-footer a:hover
{
   color: #0D1216;
   font-size: 11px;
}

.art-footer-text
{
 min-height: 32px;
 padding: 0 10px 0 10px;

}

.art-footer,
.art-footer-text,
.art-footer p
{
 text-align: center;
}

.art-footer a,
.art-footer a:link
{
 color: #295670;
 text-decoration: none;
}

.art-footer a:visited
{
 color: #394D60;

}

.art-footer a:hover
{
 color: #B5D2E3;

 text-decoration: underline;
}
/* end Footer */

/* begin PageFooter */
.art-page-footer, 
.art-page-footer a,
.art-page-footer a:link,
.art-page-footer a:visited,
.art-page-footer a:hover
{
 font-family: Arial;
 font-size: 10px;
 letter-spacing: normal;
 word-spacing: normal;
 font-style: normal;
 font-weight: normal;
 text-decoration: underline;
 color: #9EC5DB;
}

.art-page-footer
{
 margin: 1em;
 text-align: center;
 text-decoration: none;
 color: #99ADC2;
}
/* end PageFooter */

/* begin LayoutCell, sidebar1 */

.art-content-layout .art-sidebar1
{
 width: 225px;
}

/* end LayoutCell, sidebar1 */

/* begin LayoutCell, content */




/* end LayoutCell, content */

/* begin LayoutCell, sidebar2 */

.art-content-layout .art-sidebar2
{
 width: 225px;
}

/* end LayoutCell, sidebar2 */



table.moduletable th
{
 font-size: 140%;
 padding: .5em 0;
}

.firefox2 table.poll tr td div
{
 font-size: 0;
}

#footer
{
 text-align: center;
}



.contentpaneopen span.small, .contentpaneopen td.createdate, .contentpaneopen td.modifydate
{
 font-size: 75%;
 padding-bottom: 1em;
}

.column_separator
{
 padding-left: .4em;
}

.pagination span
{
 padding: 2px;
}

.pagination a
{
 padding: 2px;
}

div.offline
{
 background: #fffebb;
 width: 100%;
 position: absolute;
 top: 0;
 left: 0;
 font-size: 1.2em;
 padding: 5px;
}



/* headers */
table.moduletable th, legend
{
 margin: 0;
 font-weight: bold;
 font-family: Helvetica,Arial,sans-serif;
 font-size: 1.5em;
 padding-left: 0;
 margin-bottom: 10px;
 text-align: center;
}

/* form validation */
.invalid
{
 border-color: #ff0000;
}

label.invalid
{
 color: #ff0000;
}


/** overlib **/

.ol-foreground
{
 background-color: #f6f6f6;
}

.ol-background
{
 background-color: #666;
}

.ol-textfont
{
 font-family: Arial, Helvetica, sans-serif;
 font-size: 10px;
}

.ol-captionfont
{
 font-family: Arial, Helvetica, sans-serif;
 font-size: 12px;
 color: #f6f6f6;
 font-weight: bold;
}

.ol-captionfont a
{
 color: #0B55C4;
 text-decoration: none;
 font-size: 12px;
}

/* spacers */
span.article_separator
{
 display: none;
}

.column_separator
{
 padding-left: 10px;
}

td.buttonheading img
{
 border: none;
}

.clr
{
 clear: both;
}

div#maindivider
{
 border-top: 1px solid #ddd;
 margin-bottom: 10px;
 overflow: hidden;
 height: 1px;
}

table.blog span.article_separator
{
 display: none;
}

/* edit button */
.contentpaneopen_edit
{
 float: left;
}

/* table of contents */
table.contenttoc
{
 margin: 5px;
 border: 1px solid #ccc;
 padding: 5px;
 float: right;
}

table.contenttoc td
{
 padding: 0 5px;
}


/* content tables */
td.sectiontableheader
{
 background: #efefef;
 color: #333;
 font-weight: bold;
 padding: 4px;
 border-right: 1px solid #fff;
}

tr.sectiontableentry0 td,
tr.sectiontableentry1 td,
tr.sectiontableentry2 td
{
 padding: 4px;
}

td.sectiontableentry0,
td.sectiontableentry1,
td.sectiontableentry2
{
 padding: 3px;
}


/* content styles */
table.contentpaneopen, table.contentpane
{
 margin: 0;
 padding: 0;
 width: auto;
}

table.contentpaneopen li
{
 margin-bottom: 5px;
}

table.contentpaneopen fieldset
{
 border: 0;
 border-top: 1px solid #ddd;
}

table.contentpaneopen h3
{
 margin-top: 25px;
}

table.contentpaneopen h4
{
 font-family: Arial, Helvetica, sans-serif;
 color: #333;
}

.highlight
{
 background-color: #fffebb;
}

/* module control elements */
table.user1user2 div.moduletable
{
 margin-bottom: 0;
}

div.moduletable, div.module
{
 margin-bottom: 25px;
}

div.module_menu h3
{
 font-family: Helvetica, Arial, sans-serif;
 font-size: 12px;
 font-weight: bold;
 color: #eee;
 margin: -23px -4px 5px -5px;
 padding-left: 10px;
 padding-bottom: 2px;
}

div.module_menu
{
 margin: 0;
 padding: 0;
 margin-bottom: 15px;
}

div.module_menu div div div
{
 padding: 10px;
 padding-top: 30px;
 padding-bottom: 15px;
 width: auto;
}

div.module_menu div div div div
{
 background: none;
 padding: 0;
}

div.module_menu ul
{
 margin: 10px 0;
 padding-left: 20px;
}

div.module_menu ul li a:link, div.module_menu ul li a:visited
{
 font-weight: bold;
}

#leftcolumn div.module
{
 padding: 0 10px;
}

#leftcolumn div.module table
{
 width: auto;
}

/* forms */
table.adminform textarea
{
 width: 540px;
 height: 400px;
 font-size: 1em;
 color: #000099;
}

div.search input
{
 width: 95%;
 border: 1px solid #ccc;
 margin: 15px 0 10px 0;
}

form#form-login
{
 text-align: right;
}

form#form-login fieldset
{
 border: 0 none;
 margin: 0;
 padding: 0.2em;
}

form#form-login ul
{
 list-style-type: none;
 margin: 0;
 padding: 0;
}

form#form-login ul li
{
 background-image: none;
 padding: 0;
}

#modlgn_username, #modlgn_passwd
{
 width: 90%;
}

#form-login-username, #form-login-password, #form-login-remember
{
 display: block;
 margin: 0;
}

form#com-form-login
{
 text-align: center;
}

form#com-form-login fieldset
{
 border: 0 none;
 margin: 0;
 padding: 0.2em;
}

form#com-form-login ul
{
 list-style-type: none;
 margin: 0;
 padding: 0;
}

form#com-form-login ul li
{
 background-image: none;
 padding: 0;
}

/* thumbnails */
div.mosimage
{
 margin: 5px;
}

div.mosimage_caption {
 font-size: .90em;
 color: #666;
}

div.caption
{
 padding: 0 10px 0 10px;
}

div.caption img
{
 border: 1px solid #CCC;
}

div.caption p
{
 font-size: .90em;
 color: #666;
 text-align: center;
}

/* Parameter Table */
table.paramlist
{
 margin-top: 5px;
}

table.paramlist td.paramlist_key
{
 width: 128px;
 text-align: left;
 height: 30px;
}

div.message
{
 font-weight: bold;
 font-size: 14px;
 color: #c30;
 text-align: center;
 width: auto;
 background-color: #f9f9f9;
 border: solid 1px #d5d5d5;
 margin: 3px 0 10px;
 padding: 3px 20px;
}

/* Banners module */

/* Default skyscraper style */
.banneritem img
{
 display: block;
 margin-left: auto;
 margin-right: auto;
}

/* Text advert style */

.banneritem_text
{
 padding: 4px;
 font-size: 11px;
}

.bannerfooter_text
{
 padding: 4px;
 font-size: 11px;
 background-color: #f7f7f7;
 text-align: right;
}

/* System Messages */
/* see system general.css */

.pagination span
{
 padding: 2px;
}

.pagination a
{
 padding: 2px;
}

/* Polls */
.pollstableborder
{
 margin-top: 8px;
}


.pollstableborder td
{
 text-align: left;

}

/* WebLinks */
span.description
{
 display: block;
 padding-left: 30px;
}

/* Frontend Editing*/
fieldset
{
 border: 1px solid #ccc;
 margin-top: 15px;
 padding: 15px;
}

legend
{
 margin: 0;
 padding: 0 10px;
}

td.key
{
 border-bottom: 1px solid #eee;
 color: #666;
}

/* Tooltips */

.tool-tip
{
 float: left;
 background: #ffc;
 border: 1px solid #d4d5aa;
 padding: 5px;
 max-width: 200px;
}

.tool-title
{
 padding: 0;
 margin: 0;
 font-size: 100%;
 font-weight: bold;
 margin-top: -15px;
 padding-top: 15px;
 padding-bottom: 5px;
 background: url(../../system/images/selector-arrow.png) no-repeat;
}

.tool-text
{
 font-size: 100%;
 margin: 0;
}

/* System Standard Messages */
#system-message
{
 margin-bottom: 20px;
}

#system-message dd.message ul
{
 background: #c3d2e5 url(../../system/images/notice-info.png) 4px center no-repeat;
 border-top: 3px solid #de7a7b;
 border-bottom: 3px solid #de7a7b;
 margin: 0;
 padding-left: 40px;
 text-indent: 0;
}

/* System Error Messages */
#system-message dd.error ul
{
 color: #c00;
 background: #e6c0c0 url(../../system/images/notice-alert.png) 4px center no-repeat;
 border-top: 3px solid #DE7A7B;
 border-bottom: 3px solid #DE7A7B;
 margin: 0;
 padding-left: 40px;
 text-indent: 0;
}

/* System Notice Messages */
#system-message dd.notice ul
{
 color: #c00;
 background: #efe7b8 url(../../system/images/notice-note.png) 4px center no-repeat;
 border-top: 3px solid #f0dc7e;
 border-bottom: 3px solid #f0dc7e;
 margin: 0;
 padding-left: 40px;
 text-indent: 0;
}

#syndicate
{
 float: left;
 padding-left: 25px;
}

/* Component Specific Fixes */

#component-contact table td
{
 padding: 2px 0;
}

.breadcrumbs img
{
 margin: 0;
 padding: 0;
 border: 0;
}

.mceToolbarTop {
 white-space: normal;
}

.mceEditor
{
 background: none;
}

#archive-list
{
 list-style-type: none;
 margin: 0;
 padding: 0;
}

#archive-list li
{
 list-style-type: none;
 background-image: none;
 margin-left: 0;
 padding-left: 0;
}

#navigation
{
 text-align: center;
}

.article h3 img
{
 border: none;
 display: inline;
 margin: 0;
 padding: 0;
}

.art-footer-text .moduletable
{
 border: none;
 margin: 0;
 padding: 0;
}

.pollstableborder td {
 vertical-align: middle;
}

.img_caption.left
{
 float: left;
 margin-right: 1em;
}

.img_caption.right
{
 float: right;
 margin-left: 1em;
}

.img_caption.left p
{
 clear: left;
 text-align: center;
}

.img_caption.right p
{
 clear: right;
 text-align: center;
}

.img_caption img
{
 margin: 0;
}

.contentheading
{
font-size: 19px;
 color: #753710;
}

#system-message ul li {
 background-image: none;
 padding-left: 0;
}

/* Plugin compatilibity. */

/* 152316, DOCman */

.dm_taskbar ul
{
 background-image: none;
 margin: 0;
 padding: 0;
}

.dm_taskbar ul li
{
 background-image: none;
}


template.ie7.css

/* begin Page */

img
{
 filter: expression(artFixPNG(this));
}/* end Page */

/* begin Box, Sheet */
.art-sheet-tl
{
 clip: rect(auto 38px 38px auto);
}

.art-sheet-tr
{
 clip: rect(auto auto 38px 38px);
}

.art-sheet-bl
{
 clip: rect(38px 38px auto auto);
}

.art-sheet-br
{
 clip: rect(38px auto auto 38px);
}

.art-sheet-tc
{
 clip: rect(auto auto 38px auto);
}

.art-sheet-bc
{
 clip: rect(38px auto auto auto);
}

.art-sheet-cr
{
 clip: rect(auto auto auto 38px);
}

.art-sheet-cl
{
 clip: rect(auto 38px auto auto);
}

.art-sheet-body
{
 zoom: 1;
}
/* end Box, Sheet */

/* begin Menu */
.art-nav .r
{
 clip: rect(auto auto auto 886px);
}

/* end Menu */

/* begin MenuItem */
.art-menu a .r
{
 clip: rect(auto auto auto 408px);
}
/* end MenuItem */

/* begin Layout */
.art-content-layout, .art-content-layout-row {display: block;}
.art-content-layout, .art-content-layout-row {zoom: 1;}
/* end Layout */

/* begin Box, Block */
.art-block-tl
{
 clip: rect(auto 18px 18px auto);
}

.art-block-tr
{
 clip: rect(auto auto 18px 18px);
}

.art-block-bl
{
 clip: rect(18px 18px auto auto);
}

.art-block-br
{
 clip: rect(18px auto auto 18px);
}

.art-block-tc
{
 clip: rect(auto auto 18px auto);
}

.art-block-bc
{
 clip: rect(18px auto auto auto);
}

.art-block-cr
{
 clip: rect(auto auto auto 18px);
}

.art-block-cl
{
 clip: rect(auto 18px auto auto);
}

.art-block-body
{
 zoom: 1;
}
/* end Box, Block */

/* begin BlockHeader */
.art-blockheader .r
{
 clip: rect(auto auto auto 880px);
}
/* end BlockHeader */

/* begin Box, BlockContent */

.art-blockcontent-body
{
 zoom: 1;
}
/* end Box, BlockContent */

/* begin Button */
.art-button-wrapper .art-button-r
{
 clip: rect(auto auto auto 402px);
}
/* end Button */

/* begin Box, Post */

.art-post-body
{
 zoom: 1;
}
/* end Box, Post */

/* begin PostContent */
.art-postcontent
{
 height: 1%;
}
/* end PostContent */

/* begin Footer */
.art-footer-r
{
 clip: rect(auto auto auto 10px);
}

/* end Footer */

/* begin LayoutCell, content */
.art-sidebar2 {width: auto;}
.art-content-layout .art-layout-cell, .art-content-layout .art-layout-cell .art-content-layout .art-layout-cell
{
 display: block;
 position:relative;
 float: left;
 clear: right;
}
.art-content-layout .art-layout-cell, .art-content-layout .art-layout-cell .art-content-layout .art-layout-cell {  zoom:1; }
.art-layout-cell .art-layout-cell{ float: none; clear: both;}
/* end LayoutCell, content */



/* Plugin compatilibity. */

/* 154150, news pro gk1 */
.gk_npro_full_scroll1
{
 position: relative;
}

.nspro_bg_wrap .art-button-wrapper a
{
 float: none !important;
}

باز هم یک دنیا سپاس :thankyou:


این هم آدرس وبسایتم

به اشتراک گذاری این ارسال


لینک به ارسال
به اشتراک گذاری در سایت های دیگر

با سلام

دوست عزیز قبلا در تالار آموزش کاملی برای استایل نویس برای ie نوشتم. اون آموزش رو کامل مطالعه و انجام دهید / این آموزش بارها تست شده و هیچ مشکلی برای قالب و سایت پیش نخواهد آورد .

- در 90٪ موارد این مشکل از فارسی سازی می باشد .

موفق باشید

یا حق

به اشتراک گذاری این ارسال


لینک به ارسال
به اشتراک گذاری در سایت های دیگر

ممنونم از راهنماییتون

من به صورت کامل مطالعه کردم

منتها به نتیجه نرسیدم

اگر امکانش هست یک نگاهی به کدهای قالب من بکنید

به اشتراک گذاری این ارسال


لینک به ارسال
به اشتراک گذاری در سایت های دیگر

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

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

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

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

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

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

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

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


×
×
  • افزودن...