PDA

توجه ! این یک نسخه آرشیو شده میباشد و در این حالت شما عکسی را مشاهده نمیکنید برای مشاهده کامل متن و عکسها بر روی لینک مقابل کلیک کنید : مشكل در راست چين كردن مطالب قالب



ebrahim1110
06-15-2006, 05:32 PM
سلام
من يك قالب رو دار فارسي مي كنم همه كاراشو انجام دادم در css تغيير دادم align همه تيترها و نوشته ها به سمت راست اومده و راست چين شده اما نوشته هاي mosbody به راست نيومده.
همچنين عكس هاي كوچكي كه در سمت راست آخرين اخبار در فارسي استفاده ميشه كه غالبا شبيه يه فلشه كوچيك هست در سمت چپ قرار ميگيره
<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>

firoozmandan
06-15-2006, 05:58 PM
سلام

فایل index.php قالب رو باز کن . و


&lt;?php mosMainBody(); ?&gt;

رو پیدا کن . کد بالا یا در یک تگ DIV قرار داره و یا TD

شما به تگ TD یا DIV ( هر کدوم که بود )



Dir=&quot;rtl&quot;

رو اضافه کن .
تمام مشکلات حل میشه

برای حل شدن قرار گرفتن نوشته روی آیکن هم از


padding-right: 15px;

در CSS خود استفاده کنید . عدد 15 رو به دلخواه تغییر بدید تا متن به اندازه کافی به سمت راست بیاد .

یا علی

ebrahim1110
06-15-2006, 06:02 PM
سلام
خيلي خيلي ممنون از كمكتون

ebrahim1110
06-15-2006, 06:12 PM
كدي كه من پيدا كردم اين بود نمي دونم ياد چيكارش بكنم:
&lt;div id=&quot;lhs&quot;&gt;
&lt;?PHP if(file_exists($mosConfig_absolute_path.&quot;/components/com_tfsformambo/tfsformambo.php&quot;))
{
require_once($mosConfig_absolute_path.&quot;/components/com_tfsformambo/tfsformambo.php&quot;);
}?&gt;&lt;?php include (&quot;mainbody.php&quot;);Dir=rtl ?&gt;&lt;?php if (file_exists($mosConfig_absolute_path.&quot;/components/com_comments/comments.php&quot;)) { require_once($mosConfig_absolute_path.&quot;/components/com_comments/comments.php&quot;); } ?&gt;
&lt;/div&gt;

firoozmandan
06-15-2006, 06:27 PM
سلام

به این صورت تغییر بدید :



&lt;div id=&quot;lhs&quot; dir=&quot;rtl&quot;&gt;
&lt;?PHP if(file_exists($mosConfig_absolute_path.&quot;/components/com_tfsformambo/tfsformambo.php&quot;))
{
require_once($mosConfig_absolute_path.&quot;/components/com_tfsformambo/tfsformambo.php&quot;);
}?&gt;&lt;?php include (&quot;mainbody.php&quot;);?&gt;&lt;?php if (file_exists($mosConfig_absolute_path.&quot;/components/com_comments/comments.php&quot;)) { require_once($mosConfig_absolute_path.&quot;/components/com_comments/comments.php&quot;); } ?&gt;
&lt;/div&gt;


یا علی

YTERR0R
07-03-2006, 07:45 AM
اگه میهش واهس منم درست کنید من کردم خودم نشد نمی دونم چرا


&lt;div id=&quot;main_area_bord&quot;&gt;&lt;div dir=&quot;rtl&quot; id=&quot;main_area&quot;&gt;&lt;?php mosMainBody(); ?&gt;&lt;/div&gt;&lt;/div&gt;

::)ممنون

firoozmandan
07-03-2006, 07:54 AM
سلام
2 کلاس main_area و main_area_bord رو در CSS چک کنید ببینید چه خواصی دارند ؟

یا علی

YTERR0R
07-04-2006, 10:11 AM
/* ******************************************* main_area */
#main_area_bord {
padding:0px;
margin-right: 1px;
border: 0;
text-align: right;
}

#main_area {
width: 548px;
margin: 6px 0px 0px 15px;
padding:0px 0px 10px 0px;
border: 0;
text-align: right;
}

.line {
background: url(../images/bg_hline.gif) top left repeat-x;
padding:0px;
margin:0px;
}


:(نمی دونم چرا نمیشه ؟

developer
07-04-2006, 12:56 PM
سلام

کدها رو به این صورت تغییر بدید :


/* ******************************************* main_area */
#main_area_bord {
padding:0px;
margin-right: 1px;
border: 0;
text-align: right;
direction: rtl;
}

#main_area {
width: 548px;
margin: 6px 0px 0px 15px;
padding:0px 0px 10px 0px;
border: 0;
text-align: right;
direction: rtl;
}

.line {
background: url(../images/bg_hline.gif) top left repeat-x;
padding:0px;
margin:0px;
}

و


&lt;div id=&quot;main_area_bord&quot; dir=&quot;rtl&quot;&gt;&lt;div dir=&quot;rtl&quot; id=&quot;main_area&quot;&gt;&lt;?php mosMainBody(); ?&gt;&lt;/div&gt;&lt;/div&gt;


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

موفق باشید

YTERR0R
07-04-2006, 03:26 PM
هیچ فرقی نکردش

firoozmandan
07-05-2006, 05:52 AM
قالب رو به صورت کامل آپلود کنید تا بررسی بشه .

یا علی

YTERR0R
07-05-2006, 06:45 AM
::)خوب باشه

یک توضیح در مورد تم بدم این 2 تا فایل ایندکس داره که یکیش مال اول صفحه یکیش مال صفحات بعدیه ولی ایندکس 2 که ایندکس اصلی هست رو میزارم + این که چند تا هم فایل css داره که اونا هم می زارم

ایندکس 2 :
&lt;?php defined( &quot;_VALID_MOS&quot; ) or die( &quot;Direct Access to this location is not allowed.&quot; );$iso = split( &#039;=&#039;, _ISO );echo &#039;&lt;?xml version=&quot;1.0&quot; encoding=&quot;&#039;. $iso[1] .&#039;&quot;?&#039; .&#039;&gt;&#039;;?&gt;
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
&lt;html xmlns=&quot;<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
&lt;head&gt;
&lt;?php if ( $my-&gt;id ) { initEditor(); }
$user1 = 0;
$user2 = 0;
$colspan = 0;

//user1 and user2
if ( mosCountModules( &#039;user1&#039; ) + mosCountModules( &#039;user2&#039; ) == 2) {
$user1 = 2;
$user2 = 2;
$colspan = 2;
} elseif ( mosCountModules( &#039;user1&#039; ) == 1 ) {
$user1 = 1;
$colspan = 1;
} elseif ( mosCountModules( &#039;user2&#039; ) == 1 ) {
$user2 = 1;
$colspan = 1;
}
?&gt;
&lt;?php mosShowHead(); ?&gt;
&lt;meta <b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b> content=&quot;text/html;&gt;&lt;?php echo _ISO; ?&gt;&quot; /&gt;

&lt;link href=&quot;&lt;?php echo $mosConfig_live_site;?&gt;/templates/canaan_coolbiz/css/template_css.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
&lt;?php
require($mosConfig_absolute_path.&quot;/templates/canaan_coolbiz/mysplitcssmenu.php&quot;);
?&gt;
&lt;script language=&#039;JavaScript&#039;&gt;
function bluring(){
if(event.srcElement.tagName==&quot;A&quot;||event.srcElement .tagName==&quot;IMG&quot;) document.body.focus();
}
document.onfocusin=bluring;
&lt;/script&gt;
&lt;/head&gt;
&lt;body class=&quot;bg_main&quot;&gt;
&lt;a name=&quot;top&quot;&gt;&lt;/a&gt;
&lt;div id=&quot;mainout&quot;&gt;

&lt;table id=&quot;maintable&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; class=&quot;top_edge&quot;&gt; &lt;div class=&quot;top_lcorner&quot;&gt;
&lt;div class=&quot;top_rcorner&quot;&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; valign=&quot;top&quot; class=&quot;border&quot;&gt; &lt;div id=&quot;logo&quot;&gt;
&lt;div id=&quot;smallnavi&quot;&gt; &lt;a href=&quot;index.php&quot; title=&quot;Home&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $GLOBALS[&#039;cur_template&#039;]; ?&gt;/images/iconhome.gif&quot; alt=&quot;Home&quot; height=&quot;13&quot; width=&quot;13&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;&lt;a href=&quot;&lt;?php echo $mosConfig_live_site;?&gt;/index.php?option=com_contact&amp;Itemid=3&quot; title=&quot;Home&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $GLOBALS[&#039;cur_template&#039;]; ?&gt;/images/iconmail.gif&quot; alt=&quot;Contact us&quot; width=&quot;13&quot; height=&quot;13&quot; hspace=&quot;20&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;&lt;a href=&quot;index.php&quot; title=&quot;Home&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $GLOBALS[&#039;cur_template&#039;]; ?&gt;/images/iconmap.gif&quot; alt=&quot;Site map&quot; height=&quot;13&quot; width=&quot;13&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;clear&quot;&gt;&lt;/div&gt;
&lt;!-- menu area begin --&gt;
&lt;div id=&quot;navi_area&quot;&gt;
&lt;div id=&quot;navi_border&quot;&gt;&lt;?php echo $mycssONLY_PRI_menu ?&gt;&lt;/div&gt;
&lt;div id=&quot;subnavcontainer&quot;&gt;&lt;?php echo $mycssONLY_SUB_menu ?&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width=&quot;570&quot; valign=&quot;top&quot; class=&quot;mainleft&quot;&gt;
&lt;!-- LEFT area begin --&gt;
&lt;div id=&quot;can_pathway&quot;&gt;&lt;?php mosPathWay(); ?&gt;&lt;/div&gt;
&lt;?php if ( mosCountModules( &#039;top&#039; ) ) { ?&gt;
&lt;div id=&quot;main_newsflash&quot;&gt;
&lt;div class=&quot;newsflash_body&quot;&gt;&lt;?php mosLoadModules ( &#039;top&#039;, -1 ); ?&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;?php
}
?&gt;

&lt;div id=&quot;main_area_bord&quot;&gt;&lt;div dir=&quot;rtl&quot; id=&quot;main_area&quot;&gt;&lt;?php mosMainBody(); ?&gt;&lt;/div&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;table width=&quot;540&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; style=&quot;margin-left:16px;margin-top:8px;margin-bottom:5px&quot;&gt;
&lt;tbody&gt;
&lt;?php
if ($colspan &gt; 0) {
?&gt;
&lt;tr valign=&quot;top&quot; class=&quot;line&quot;&gt;
&lt;?php
if ( $user1 &gt; 0 ) {
?&gt;
&lt;td width=&quot;50%&quot;&gt;
&lt;div id=&quot;main_news&quot;&gt;
&lt;?php mosLoadModules ( &#039;user1&#039; ); ?&gt;
&lt;/div&gt;
&lt;?php
}
if ( $colspan == 2) {
?&gt;
&lt;td width=&quot;10&quot;&gt;
&lt;img src=&quot;&lt;?php echo $mosConfig_live_site;?&gt;/templates/canaan_coolbiz/images/spacer.png&quot; alt=&quot;&quot; title=&quot;spacer&quot; border=&quot;0&quot; height=&quot;10&quot; width=&quot;10&quot;&gt;
&lt;/td&gt;
&lt;?php
}
if ( $user2 &gt; 0 ) {
?&gt;
&lt;td width=&quot;50%&quot;&gt;

&lt;div id=&quot;main_news&quot;&gt;
&lt;?php mosLoadModules ( &#039;user2&#039;); ?&gt;
&lt;/div&gt;
&lt;?php
}
?&gt;
&lt;/tr&gt;
&lt;?php
}
?&gt;
&lt;tr&gt;
&lt;td colspan=&quot;&lt;?php echo $colspan; ?&gt;&quot;&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;
&lt;?php if ( mosCountModules( &#039;bottom&#039; ) ) { ?&gt;
&lt;div id=&quot;bottomcontainer&quot;&gt;&lt;?php mosLoadModules ( &#039;bottom&#039;, -3 ); ?&gt;&lt;/div&gt;
&lt;?php
}
?&gt;
&lt;!-- left area end --&gt;
&lt;/td&gt;
&lt;td class=&quot;midline&quot;&gt;&lt;/td&gt;
&lt;td width=&quot;220&quot; valign=&quot;top&quot; class=&quot;mainright&quot;&gt;
&lt;!-- right area begin --&gt;
&lt;div id=&quot;mainsearch&quot;&gt;&lt;table width=&quot;192&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;form action=&quot;index.php&quot; method=&quot;post&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width=&quot;162&quot; align=&quot;left&quot;&gt;&lt;input class=&quot;mainsearchbox&quot; type=&quot;text&quot; name=&quot;searchword&quot; size=&quot;12&quot; value=&quot;Search the site...&quot; onblur=&quot;if(this.value==&#039;&#039;) this.value=&#039;Search the site...&#039;;&quot; onfocus=&quot;if(this.value==&#039;Search the site...&#039;) this.value=&#039;&#039;;&quot; /&gt;
&lt;input type=&quot;hidden&quot; name=&quot;option&quot; value=&quot;search&quot; /&gt;
&lt;/td&gt;
&lt;td width=&quot;30&quot; align=&quot;right&quot;&gt;&lt;input type=&quot;image&quot; value=&quot;search&quot; src=&quot;templates/&lt;?php echo $GLOBALS[&#039;cur_template&#039;]; ?&gt;/images/search.gif&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/form&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;div id=&quot;rightmain&quot;&gt;&lt;?php mosLoadModules ( &#039;left&#039; ); ?&gt;&lt;/div&gt;
&lt;!-- right area end --&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; class=&quot;copyborder&quot;&gt; &lt;div id=&quot;copyright&quot;&gt;
&lt;div id=&quot;copyright2&quot;&gt;
&lt;?php
include($mosConfig_absolute_path.&quot;/templates/canaan_coolbiz/copyright.php&quot;);
?&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; class=&quot;bottom_edge&quot;&gt; &lt;div class=&quot;bot_lcorner&quot;&gt;
&lt;div class=&quot;bot_rcorner&quot;&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;


:P اولین css به نام cover :

#date_container {
width: 100%;
height:22px;
padding: 0px;
margin:0px ;
}

#blank5 {
height:5px;
padding:0px;
margin:0px;
}

div.date {
height:22px;
margin-right: 20px;
font : 10px tahoma;
color : #40565F;
line-height: 18px;
text-align : right;
}


/************************************************** ******************
******************************************* leftside **************
************************************************** *******************/
#left {
float: left;
width: 378px !important;
padding:0px;
margin:0px;
text-align:left;
}

/* ******************************************* flashnews */
#newsflash {
background : url(../images/bg_hline.gif) bottom left repeat-x;
padding : 0px;
margin : 0px;
border : 0px;
width : 378px;
height : 128px;
}

#newsflash div.newsflash_body {
padding : 0px;
border : 0px;
width : 375px;
height : 125px;
overflow : auto;
}

#newsflash table.contentpaneopen td {
font : normal 11px Tahoma;
color: #9DD4E9;
line-height : 17px;
text-align : left;
padding : 0px 6px 7px 8px;
}

/* ******************************************* search */
#search {
background : url(../images/bg_hline.gif) bottom left repeat-x;
margin-top : 15px;
border : 0;
width : 375px;
height : 40px;
}

.searchbox {
font : bold 11px tahoma;
color : #A7BFCA;
border : 1px solid #576f7a;
background-color: transparent;
width : 175px;
text-indent: 5px;
height: 17px;
}

/* ******************************************* news */
#cover_news {
background : url(../images/bg_hline.gif) bottom left repeat-x;
margin : 5px 0px 0px 0px;
padding : 0px;
width : 100%;
text-align : left;
}

#cover_news table.moduletable {
margin : 0px 0px 8px 10px;
width : 360px !important;
text-align : left;
}

#cover_news div.moduletable h3 {
background : url(../images/bg_hline.gif) bottom left repeat-x;
margin-bottom : 3px;
padding : 0px;
width : 100%;
height : 25px;
text-align : left;
font : bold 12px tahoma;
color : #7CC5E2;
line-height : 25px;
}

ul.latestnews {
margin: 0;
padding: 0;
list-style: none;
}

li.latestnews {
background: url(../images/arrow.gif) no-repeat;
background-position: 0px 5px;
padding: 0px;
height: 22px;
line-height: 22px;
text-indent: 18px;
border-bottom: 1px solid #18272c;
}

a.latestnews:link, a.latestnews:visited {
font : bold 12px tahoma;
font-size : 11px;
font-weight : bold;
color : #7CC5E2;
line-height: 22px;
text-decoration : none;
}
a.latestnews:hover {
font-weight : bold;
color : #5D93A9;
text-decoration : none;
}

/* ******************************************* contact */
div#cover_contact {
margin : 10px 0px 10px 0px;
padding : 0px;
width : 100%;
text-align : center;
height : 60px;
}

/************************************************** ******************
******************************************* leftside **************
************************************************** *******************/
#right {
float: right;
background: url(../images/midline.gif) top left repeat-y;
width: 385px !Important;
padding:0px;
margin:0px;
}

/* ******************************************* banner */
#banner_out {
background: url(../images/bg_hline.gif) bottom left repeat-x;
padding : 0px;
margin : 0px 0px 0px 3px;
border : 0;
width: 383px !Important;
height: 128px;
}

#banner {
background: url(../images/banner.jpg) no-repeat;
background-position:8px 7px;
padding : 0;
margin : 0px;
border : 0;
width: 376px;
height: 123px;
}

/* ******************************************* who we are */
div#cover_who {
background : url(../images/bg_hline.gif) bottom left repeat-x;
margin : 0px 0px 0px 3px;
padding : 0px;
width: 383px !Important;
text-align : left;
}

div#cover_what {
margin : 0px 1px 0px 0px;
padding : 0px;
width : 100%;
text-align : left;
}

div#cover_who table.moduletable {
background : url(../images/who.jpg) top left no-repeat;
background-position: 10px 40px;
margin-left : 10px;
padding : 0px;
text-align : left;
width : 360px;
}

div#cover_what table.moduletable {
background : url(../images/what.jpg) top left no-repeat;
background-position: 10px 40px;
margin-left : 10px;
padding : 0px;
text-align : left;
width : 360px;
}

div#cover_who table.moduletable th, div#cover_what table.moduletable th {
background : url(../images/bg_hline.gif) bottom left repeat-x;
margin-bottom : 4px;
padding : 0px;
width : 100%;
height : 30px;
text-align : left;
font : bold 12px tahoma;
color : #7CC5E2;
line-height : 30px;
}

div#cover_who div.cover_whocotent, div#cover_what div.cover_whocotent {
margin-left : 110px;
padding : 0px;
text-align : left;
width : 250px;
height : 120px;
font : normal 11px tahoma;
color: #9DD4E9;
line-height : 18px;
overflow : hidden;
}

div#cover_who a:link, div#cover_who a:visited, div#cover_what a:link, div#cover_what a:visited {
font : bold 12px tahoma;
font-size : 11px;
font-weight : bold;
color : #8aaab8;
}
div#cover_who a:hover, div#cover_what a:hover {
font-weight : bold;
color : #fff;
text-decoration : none;
}

/* ******************************************* copyright */
#copyright {
background : url(../images/bottom1.gif) top left no-repeat;
background-position: 15px 4px;
padding-top : 8px;
margin:8px 0px 15px 0px;
height : 35px;
width:100%;
text-align: center;
}

#copyright2 {
background : url(../images/bottom2.gif) no-repeat top right ;
width:740px;
font : bold 10px tahoma;
color : #5C95A9;
text-align: center;
}





دموین css :-X


#clear {
clear:both;
}

body {
background : #ffffff;
padding : 0;
margin : 0;
vertical-align : top;
scrollbar-face-color: #72685A;
scrollbar-shadow-color: #72685A;
scrollbar-darkshadow-color: #ffffff;
scrollbar-highlight-color: #72685A;
scrollbar-3dlight-color: #ffffff;
scrollbar-track-color: #7F7464;
scrollbar-arrow-color: #ffffff;
}

/* ******************************************* general*/
.bg_main {
background :#0b1214 url(../images/bg.gif) repeat-x left top;
padding : 0px;
margin : 15px 0px 10px 0px;
height: 100%;
text-align : center;
vertical-align : top;
scrollbar-face-color: #273E47;
scrollbar-shadow-color: #273E47;
scrollbar-darkshadow-color: #8AAAB8;
scrollbar-highlight-color: #8AAAB8;
scrollbar-3dlight-color: #23292C;
scrollbar-track-color: #1F3138;
scrollbar-arrow-color: #8AAAB8;
}

img {
border:0px
}

#mainout {
text-align: center;
}

#cover_table {
margin-left: auto;
margin-right: auto;
width: 768px;
text-align: left;
}

#maintable {
margin-left : auto;
margin-right: auto;
width : 800px;
text-align : left;
}


/* ******************************************* main corner*/
div.top_lcorner {
background: url(../images/corner1.gif) bottom left no-repeat;
height: 16px;
}

div.top_rcorner {
background: url(../images/corner2.gif) bottom right no-repeat;
height: 16px;
}

td.top_edge {
background: url(../images/bg_topedge.gif) bottom left repeat-x;
text-align: center;
height: 16px;
vertical-align: bottom;
}

div.bot_lcorner {
background: url(../images/corner4.gif) top left no-repeat;
height: 16px;
}

div.bot_rcorner {
background: url(../images/corner3.gif) top right no-repeat;
height: 16px;
}

td.bottom_edge {
background: url(../images/bg_bottomedge.gif) top left repeat-x;
text-align: center;
height: 16px;
vertical-align: top;
}

td.border {
border-left:1px solid #2f4b55;
border-right:1px solid #2f4b55;
background-color:#1f3138;
padding:0px;
}

td.copyborder {
background: #1f3138 url(../images/bg_hline.gif) top left repeat-x;
border-left:1px solid #2f4b55;
border-right:1px solid #2f4b55;
padding:0px;
}

/* ******************************************* logo area*/
div#logo {
background: url(../images/logo.gif) top left no-repeat;
height: 70px;
}

div#smallnavi {
float: right;
margin: 5px 20px 0px 0px;
}

/* ############################ splic submenu */
#navi_area {
background: url(../images/bg_hline.gif) bottom left repeat-x;
width: 100%;
height:50px;
padding: 0px;
margin:0px ;
}

#navi_border {
background: url(../images/bg_navi.gif) bottom left repeat-x;
margin:0px;
padding:0px;
width: 100%;
height : 28px;
text-align:left;
}

#main_navicont {
}

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

#main_navicont li, #subnavcontainer li {
display: inline;
background: transparent;
list-style-type: none;
text-indent: 0px;
padding: 0px;
}

#main_navicont ul li a.topnav:link, #main_navicont ul li a.topnav:visited {
padding : 0px 10px;
height : 28px;
font : bold 10px tahoma;
color : #7CC5E2;
text-decoration : none;
line-height: 28px;
}

#main_navicont ul li a.topnav:hover {
padding : 0px 10px;
height : 28px;
color : #fff;
text-decoration : none;
}

#main_navicont ul li a.topnav#current {
padding : 0px 10px;
height : 28px;
font : bold 10px tahoma;
color : #fff;
text-decoration : none;
line-height: 28px;
}

#subnavcontainer {
width: 100%;
height:22px;
padding-top: 3px;
margin-left:50px ;
}

#subnavcontainer li a.topnav#submenu:link, #subnavcontainer li a.topnav#submenu:visited {
font : bold 10px tahoma;
color : #7CC5E2;
text-decoration : none;
border : 0;
padding : 0px 10px;
height:16px;
line-height : 16px;
}

#subnavcontainer li a.topnav#submenu:hover {
background-color: #152228;
color : #fff;
text-decoration : none;
}

#subnavcontainer a.topnav#subcurrent {
background-color: #152228;
font : bold 10px tahoma;
color : #fff;
text-decoration : none;
padding : 0px 10px;
height:16px;
line-height : 16px;
}

/* ############################ general custom */
td, div, p {
font : normal 11px tahoma;
color :#9DD4E9;
padding :0px;
line-height :17px;
}

a, a:link, a:visited {
color : #9DD4E9;
font-weight:bold;
text-decoration : none;
}
a:hover {color: #5D94A9; text-decoration:none; }

ul {
margin: 0;
padding: 0;
list-style: none;
}

li {
list-style-type: none;
background-image: url(../images/arrow.gif) ;
background-repeat: no-repeat;
line-height: 17px;
text-indent: 18px;
padding-top: 0px;
background-position: 0px 5px;
}

select {
font-size : 12px;
font-weight : bold;
color : #708C98;
}

th.pagenav_prev, th.pagenav_next, a.pagenav_next:link, a.pagenav_next:visited {
font-size : 11px;
color : #A7BFCA;
}
a.pagenav_next:hover {
color : #fff;
text-decoration : none;
}

/* ******************************************* CONTENT STYLES */
.contentdescription {
background-color: #152228;
width:100%;
text-align : left;
}

.contentpaneopen td {
padding : 0px;
}

.contentpane td, .contentdescription td {
padding : 3px;
}

a.contentpane:link, a.contentpane:visited, a.contentpaneopen:link, a.contentpaneopen:visited {
color : #A7BFCA;
text-decoration : none
}
a.contentpane:hover, a.contentpaneopen:hover {
color : #fff;
text-decoration : none;
}

.contentheading {
background: url(../images/bg_hline.gif) bottom left repeat-x;
height:28px;
font : bold 12px tahoma;
color: #84C3E2;
line-height:16px;
text-align : left;
text-indent : 2px;
}

.componentheading {
height:15px;
font : bold 12px tahoma;
color: #84C3E2;
height:15px;
text-align : left;
}


.contentpagetitle, a.contentpagetitle:link, a.contentpagetitle:visited {
color : #A7BFCA;
}
a.contentpagetitle:hover {
color : #fff;

}
.buttonheading {
font : normal 10px tahoma;
white-space : nowrap;
}

.content_rating, .content_vote {
font-size : 11px;
color : #A7BFCA;
text-decoration : none;
font-weight : normal;
margin : 0 6px;
padding : 0;
}

.back_button {
float:right;
width:55px;
font-size : 11px;
color : #A7BFCA;
font-weight : bold;
text-align:right;
vertical-align : middle;
margin : 0 6px;
padding : 1px 1px 1px 1px;
border:0;
background:url(../images/arrow.gif) no-repeat;
background-position: 0px 6px;
}

.small {
font-size : 10px;
color : #507F92;
font-weight : normal;
line-height:14px;
height:14px;
}

.createdate, .modifydate {
font-size : 10px;
font-weight : normal;
color : #507F92;
height :14px;
line-height :14px;
}

a.readon:link, a.readon:visited {
background:#152228 url(../images/arrow.gif) no-repeat;
background-position: 3px 2px;
padding : 2px 4px 2px 18px;
float : left;
font : bold 10px tahoma;
color : #507F92;
border : 1px solid #304D58;
line-height : 10px;
text-decoration : none;
}
a.readon:hover {
color : #85D2F0;
text-decoration : none;
}

.fase4rdf, a.fase4rdf:link, a.fase4rdf:visited {
font-size : 11px;
font-weight : normal;
color : #507F92;
}

a.fase4rdf:hover {
font-weight : normal;
color : #fff;
}

.blog {
margin : 0px;
padding : 0px;
width :100%;
}

.blog_more {
background :#152228;
padding : 4px;
margin-top : 5px;
width : 100%;
font-size : 11px;
font-weight : bold;
color : #66A2B9;
}

a.blogsection:link, a.blogsection:visited {
font-size : 11px;
color : #66A2B9;
text-decoration : none;
font-weight : bold;
}
a.blogsection:hover {
font-size : 11px;
color : #5D94A9;
text-decoration : underline;
font-weight : bold;
}

.ontab {
color : #345;
padding : 2px 10px 2px 10px;
border-top : 2px solid #345;
border-right : 2px solid #345;
border-bottom : 0;
border-left : 2px solid #345;
font-weight : bold;
}
.offtab {
color : #666;
padding : 2px 10px 2px 10px;
border-top : 1px solid #666;
border-right : 1px solid #666;
border-bottom : 3px solid #345;
border-left : 1px solid #666;
cursor : default;
}
.tabpadding {
border-bottom : 3px solid #345;
}

table.searchintro {
background : #152228;
margin : 0px;
width : 100%;
}
table.searchintro td {
padding : 5px;
border : 0;
}

table.contenttoc {
border : 1px solid #40565F;
padding : 1px;
margin-left : 7px;
margin-bottom : 2px;
}
table.contenttoc th {
color : #40565F;
text-align : left;
padding : 4px;
font-weight : bold;
font-size : 10px;
border-bottom : 1px solid #40565F;
}
table.contenttoc td {
font-size : 10px;
padding : 2px;
}


/* ******************************************* STYLES CONTACT PAGE */
table.contact {
background : transparent;
}

table.contact td.icons {
}

table.contact td.details {
margin : 5px;
padding : 5px;
}
.contact_email {
margin : 5px;
padding : 5px;
}
textarea.inputbox {
width:95%;
}

/* ******************************************* CATEGORY (text format and links) */
.category {
color : #7CC5E2;
font-size : 11px;
font-weight : bold;
text-decoration : none;
}
a.category:link, a.category:visited {
font-size : 11px;
color : #7CC5E2;
font-weight : bold;
}
a.category:hover {
color : #5D93A9;
}

/* ******************************************* MODULES */
table.moduletable {
width : 100%;
padding : 0px;
margin : 0px 0px 0px 0px;
border : 0;
}
table.moduletable th {
background: url(../images/bg_hline.gif) bottom left repeat-x;
margin: 0px;
border:0;
height:25px;
font : bold 11px tahoma;
color: #7CC5E2;
text-align: left;
text-indent: 0px;
line-height:25px;
}
table.moduletable td {
font : normal 11px tahoma;
color: #9DD4E9;
text-align : left;
padding : 3px;
}

table.pollstableborder td {
padding: 2px;
line-height:17px;
}

.moduletable a:link, .moduletable a:visited {
color : #9DD4E9;
font-weight:bold;
font-size : 11px;
font-family : tahoma;
text-decoration : none;
line-height:19px;
}
.moduletable a:hover {
color : #5D93A9;
text-decoration : none;
}
table.moduletable ul {
padding : 0;
margin : 0 0 0 2px;
}

.button {
font : normal 10px tahoma;
padding-top : 2px 2px 0px 2px;
margin-top :5px;
color : #84C3E2;
background-color: #1F3138;
border-top : 1px solid #2C4650;
border-left : 1px solid #2C4650;
border-right : 1px solid #0B1214;
border-bottom : 1px solid #0B1214;
}
.inputbox, .search {
font : normal 11px tahoma;
color : #538296;
border : 1px solid #538296;
background : transparent;
}

select.inputbox {
font : bold 11px tahoma;
color : #538296;
border : 0;
background : #1F3138;
}

.poll {
font : 11px tahoma;
color : #666666;
font-weight : normal;
border : 0;
padding : 0;
}

form {
padding:0px;
margin:0px;
border:0px;
}
/* ******************************************* STYLES LISTING CONTENT PAGE */
td.sectiontableheader {
background-color: #152228;
color : #84C3E2;
font-weight : bold;
font-size : 11px;
padding : 2px 3px 3px 2px;
border-bottom : 1px solid #2C4650;
}

td.sectiontablefooter {
color : #84C3E2;
font-weight : bold;
font-size : 11px;
padding : 2px 3px 3px 2px;
}

.sectiontableentry1, .sectiontableentry2 {
color : #9DD4E9;
font-weight : normal;
padding : 1px 0px 1px 2px;
}

.pagenavbar {
text-align : center;
vertical-align : middle;
padding : 2px;
width : 100%;
}
.pagenav {
color : #9DD4E9;
font-size : 10px;
font-weight : bold;
text-decoration : none;
marging : 0;
padding : 0 2px;
border : 0;
}
a.pagenav:link, a.pagenav:visited {
color : #9DD4E9;
background-color: transparent;
}
a.pagenav:hover {
color : #5D93A9;
background : transparent;
text-decoration : underline;
}


hr {
background : transparent;
height : 1px;
border : 1px solid #5D93A9;
width : 100%;
}


و سومین css :


/************************************************** ******************
******************************************* mainleft **************
************************************************** *******************/
td.mainleft {
padding:0px;
margin:0px;
border-left:1px solid #2f4b55;
background-color:#1f3138;
text-align:left;
}

/* ******************************************* main_area */
#main_area_bord {
padding:0px;
margin-right: 1px;
border: 0;
text-align: left;
}

#main_area {
width: 548px;
margin: 6px 0px 0px 15px;
padding:0px 0px 10px 0px;
border: 0;
text-align: left;
}

.line {
background: url(../images/bg_hline.gif) top left repeat-x;
padding:0px;
margin:0px;
}

/************************************************** ******************
******************************************* mainright **************
************************************************** *******************/
td.midline {
background: #1f3138 url(../images/midline.gif) top left repeat-y;
width: 5px !Important;
padding:0px;
margin:0px;
}

td.mainright {
border-right:1px solid #2f4b55;
padding:0px;
margin:0px;
background-color:#1f3138;
text-align : left;
}

#rightmain {
margin:0px;
padding:0px;
text-align: left;
width: 100%;
}

#rightmain table.moduletable {
font : normal 11px tahoma;
color: #9DD4E9;
text-align : left;
margin-bottom : 7px;
}

#rightmain table.moduletable th {
background: url(../images/bg_hline.gif) bottom left repeat-x;
margin: 0px;
border:0;
height:25px;
font : bold 11px tahoma;
color: #7CC5E2;
text-align: left;
text-indent: 0px;
line-height:25px;
}

#rightmain table.moduletable td {
font : normal 11px tahoma;
color: #9DD4E9;
text-align : left;
padding : 3px;
}

/* ******************************************* right menu SYSTEM */
.mainlevel {
font : bold 12px tahoma;
line-height:20px;
direction: right;
}
#rightmain a.mainlevel:link, #rightmain a.mainlevel:visited {
background : #152228;
padding : 0px 0px;
display : block;
height:24px;
font : bold 11px tahoma;
color : #7CC5E2;
line-height:24px;
text-decoration : none;
text-indent : 15px;
border : 0;
}
#rightmain a.mainlevel:hover {
background : #507F92;
font-weight : bold;
color : #070B0D;
text-decoration : none;
padding : 0px 0px;
}
#active_menu {
background : url(../images/bg_hnavi.gif) no-repeat;
border : 0;
color : #ff9900;
font-weight : bold;
}

#rightmain a.sublevel:link, #rightmain a.sublevel:visited {
color : #7CC5E2;
text-decoration : none;
padding-left: 6px;
vertical-align: middle;
text-align: left;
line-height:18px;
}
#rightmain a.sublevel:hover {
color : #BFB36A;
text-decoration : none;
line-height:18px;
}

#rightmain a.sublevel#active_menu {
border : 0;
color : #BFB36A;
text-decoration : none;
background : transparent;
line-height:18px;
}

/* ******************************************* mainflashnews */
#main_newsflash {
background: url(../images/bg_hline.gif) bottom left repeat-x;
padding : 0;
margin : 5px 1px 0px 0px;
border : 0;
width: 100%;
height: 75px;
}

#main_newsflash div.newsflash_body {
padding : 0;
margin-bottom : 2px;
border : 0;
width: 100%;
height: 73px;
overflow:hidden;
}

#main_newsflash table.contentpaneopen td {
font : normal 11px tahoma;
color: #9DD4E9;
line-height : 17px;
text-align : left;
padding : 0px 6px 7px 15px;
}

/* ******************************************* mainsearch */
#mainsearch {
background : url(../images/bg_hline.gif) bottom left repeat-x;
margin : 8px 0px 0px 0px;
padding : 0px;
width : 100%;
height : 30px;
text-align : left;
}

.mainsearchbox {
font : bold 11px tahoma;
color : #7C9FAD;
border : 1px solid #576f7a;
background-color: transparent;
width : 160px;
text-indent: 0px;
height: 17px;
}

/* ******************************************* pathway */
#can_pathway {
background : url(../images/bg_hline.gif) bottom left repeat-x;
margin-right : 1px;
padding : 0px;
width : 100%;
height : 25px;
font : 11px tahoma;
color : #5C92A8;
text-indent : 12px;
text-align : left;
line-height : 20px;
}

#can_pathway img {
margin:7px 1px 1px 1px;
}

.pathway {
padding : 0px;
margin : 0px;
border : 0;
}

a.pathway:link, a.pathway:visited {
font : 11px tahoma;
color : #5C92A8;
line-height : 20px;
text-decoration : none;
}
a.pathway:hover {
color : #fff;
}

#bottomcontainer {
background: url(../images/bg_hline.gif) top left repeat-x;
padding:10px 0px;
margin:0px;
text-align : center;
}

td.rightedge {
border-right:1px solid #fff;
padding:0px;
margin:0px;
background-color:#1f3138;
width:5px;
}

و آخرین template_css ::) :


@import url(&quot;cover.css&quot;);
@import url(&quot;mambo.css&quot;);
@import url(&quot;deepmain.css&quot;);

:&#039;(

firoozmandan
07-05-2006, 06:58 AM
لطفا پوشه قالب رو به صورت کامل ZIP کنید و لینک دانلودش رو بدید تا چک کنیم .
یا علی

YTERR0R
07-05-2006, 07:41 AM
براتون ایمیل کردم

firoozmandan
07-05-2006, 09:27 AM
سلام

سطر زیر را در index2.php پیدا کنید :


&lt;td width=&quot;570&quot; valign=&quot;top&quot; class=&quot;mainleft&quot;&gt;



و با کد زیر جایگزین کنید :



&lt;td width=&quot;570&quot; valign=&quot;top&quot; class=&quot;mainleft&quot; dir=&quot;rtl&quot;&gt;



با این کار mainbody شما RTL میشه .( البته در صفحه اول باید فایل index1.php رو ویرایش کنید )

بقیه قسمت ها از داخل فایل CSS قابل تغییر هست به عنوان مثال اگر شما بخوایید 2 تگ LI , UL را RTL کنید باید فایل mambo.css رو به صورت زیر ویرایش کنید :



ul {
margin: 0;
padding: 0;
list-style: none;
direction:rtl;
text-align:right;
}

li {
list-style-type: none;
background-image: url(../images/arrow.gif) ;

background-repeat: no-repeat;
line-height: 17px;
text-indent: 18px;
padding-top: 0px;
background-position: 530px 5px;
direction:rtl;
text-align:right;
}


یا علی

YTERR0R
07-05-2006, 08:05 PM
سلام همه بخشها درست میشه

فقط بخش آخرین ارسالها که بصورت لیت ماند هست درست نمیشه آلکوناش سمت چپه ???اون و چکار کنم ؟

shikposh
02-21-2007, 01:14 PM
با سلام به جناب فيروز مندان و جناب رادمهر و بقيه مديران و دوستان
آقا در فايل CSS قالبي كه من دارم اصلا اين خطي كه ميگيد نيست !!!

&lt;div id=&quot;main_area_bord&quot; dir=&quot;rtl&quot;&gt;&lt;div dir=&quot;rtl&quot; id=&quot;main_area&quot;&gt;&lt;?php mosMainBody(); ?&gt;&lt;/div&gt;&lt;/div&gt;

اين محتويات فايل Css منه :

body {
color : #000000;
margin : 20px;
padding : 0px;
background-color : #FFFFFF;
font-family : arial, sans-serif;
font-size : 12px;

}
td, tr, p, div {
font-family : Arial, Helvetica, sans-serif;
font-size : 12px;
color : #996600;
}
hr {
color : #BCB778;
height : 1px;
width : 100%;
}
.mod {
background : #FFFFFF;
width : 2px;
}
.main {
float : left;
width : 100%;
margin : 0px;
padding : 0px;
}
.contentdescription {
width : auto !important;
display : block;
}
#buttons {
float : right;
margin : 0px;
padding : 0px;
width : 50%;
}
ul#mainlevel-nav {
font-size : 11px;
list-style : none;
padding : 0;
margin : 0;
font-size : 0.8em;
font-size: 12px;}
ul#mainlevel-nav li {
display : block;
background-image : none;
padding-left : 17px;
margin : 0;
font-size : 12px;
line-height : 25px;
white-space : nowrap;
height: 23px;
line-height: 23px;
text-align: center;background: url(../images/pro_foto_02.jpg) left;
float: left;}
ul#mainlevel-nav li a {
font-size : 14px;
display : block;
text-decoration : none;
background : transparent;
color: #fbb408;
background: url(../images/pro_foto_02.jpg) right;
padding-right: 1em;}
ul#mainlevel-nav li a:hover {
font-size : 14px;
color: #bb0000;}

.sublevel {
padding-left : 10px;
}
.leftrow {
background-color : #ECEBD9;
width : 168px;
height : 100%;
margin-right : 5px;
}
.rightrow {
background-color : #ECEBD9;
height : 100%;
width : 168px;
align : right;
margin-left : 5px;
}
table.moduletable {
width : 100%;
table-layout : auto;
}

table.moduletable-menu {
width : 100%;
table-layout : auto;
}

table.moduletable-advert {
width : 100%;
table-layout : auto;
color: #e3e1c6;}
table.moduletable-tab {
width : 100%;
table-layout : auto;
background-image: url(../images/pro_foto_round_rect.png);
background-position: left bottom;
background-repeat: no-repeat;
width: 304px;}
table.moduletable th {
font-size : 12px;
font-weight : bold;
text-transform : uppercase;
text-align : center;
height : 26px;
line-height : 26px;
letter-spacing: 1px;
color : #6b0300;
background-image : url(../images/pro_foto_20.jpg);
}
table.moduletable-advert th {
font-size : 12px;
font-weight : bold;
text-transform : uppercase;
text-align : center;
height : 26px;
line-height : 26px;
letter-spacing: 1px;
color : #6b0300;
color: #f0b627;
border-bottom: 3px #dd0202 solid;
margin-bottom: +1em;
}
table.moduletable-tab th {
font-size : 12px;
font-weight : bold;
text-transform : uppercase;
text-align : center;
height : 26px;
line-height : 26px;
letter-spacing: 1px;
color : #6b0300;
background-image : url(../images/pro_foto_round_rect.png);
background-repeat: no-repeat;
background-color: #ffffff;
width: 100%;
color: #c39525;
border-bottom: 2px #e20101 solid;
background-position: top left;}
table.moduletable-menu th {
font-size : 12px;
font-weight : bold;
text-transform : uppercase;
text-align : center;
height : 26px;
line-height : 26px;
letter-spacing: 1px;
color : #6b0300;
background-image : url(../images/pro_foto_20.jpg);
}
table.moduletable td {
padding-left : 0px;
padding-right : 0px;
padding-bottom: 5px;
padding-top: 3px;
color: #f6e5c0;}

table.moduletable-advert td {
padding-left : 0px;
padding-right : 0px;
padding-bottom: 10px;
padding-top: 3px;
color: #ecead8;}

table.moduletable-tab td {
padding-left : 0px;
padding-right : 0px;
padding-bottom: 1em;
padding-top: 3px;}
#search {
float : left;
margin-top : 5px;
border : 1px solid #cccccc;
padding : 0px;
width´ : 123px !important;
width : 125px;
height : 16px !important;
height : 16px;
overflow : hidden;
}
#search .inputbox {
border : 0px;
margin-top : 0px;
padding : 2px 3px 2px 6px !important;
padding : 0px 3px 2px 6px;
font-family : arial, helvetica, sans-serif;
font-size : 10px;
height : 12px !important;
height : 12px;
width : 123px !important;
width : 125px;
color : #666666;
background : #FFFFFF;
}
.back_button {
color : #996600;
font-family : Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
background : url(../images/bb.gif);
background-repeat: no-repeat;
white-space : normal;
font-weight : normal;
border : 1px solid #BCB778;
padding-bottom : 4px;
padding-left : 20px;
padding-right : 2px;
padding-top : 1px;
margin-right : 4px;
float : right;
font-weight : normal;
line-height : 10px;
text-decoration : none;
}
.button {
font-size : 11px;
color : #996600;
border : 1px solid #BCB778;
margin-bottom : 5px;
background-color : #E3E1C6;
padding : 1px;
}
.inputbox {
border : 1px solid #BCB778;
background : transparent url(../images/back.gif);
background-color : #ECEAD8;
margin-bottom : 5px;
color : #660000;
}
.sectiontableheader {
font-size : 11px;
font-weight : normal;
text-transform : uppercase;
letter-spacing : 1px;
color : #660000;
background : #E3E1C6;
padding : 1px;
}
.sectiontableentry1 {
vertical-align : top;
padding : 3px;
background : #ECEAD8;
border-top : 1px solid #FFFFFF;
border-bottom : 1px solid #BCB778;
background: #e1af2a;
color: #000;}

.sectiontableentry2 {
vertical-align : top;
padding : 3px;
border-top : 1px solid #FFFFFF;
border-bottom : 1px solid #BCB778;
}
a.mainlevel: {
margin : 0px;
padding : 0px;
font-size : 12px;
width : 174px;
background-color : transparent;
text-indent : 15px;
}
a.mainlevel: link {
padding : 0px 0px 0px 0px;
font-size : 12px;
width : 174px;
background-color : transparent;
text-indent : 15px;
}
a.mainlevel:link, a.mainlevel:visited {
display : block;
font-size : 12px;
background-color : transparent;
font-weight : normal;
width : 174px;
background-image: url(../images/pro_foto_16.jpg);
height: 27px;
line-height: 25px;
color: #e2a82d;
text-indent: 15px;
vertical-align: -2px;
text-transform: capitalize;}
a.mainlevel:hover {
background-color : #E3E1C6;
font-size : 12px;
font-weight : normal;
text-decoration : none;
text-indent : 15px;
color: #fefefd;
background-image: url(../images/pro_foto_18.jpg);
}
#active_menu {
font-size : 12px;
background-color : transparent;
font-weight : normal;
width : 174px;
background-image: url(../images/pro_foto_18.jpg);
height: 27px;
line-height: 25px;
color: #e2a82d;
text-indent: 15px;
vertical-align: -2px;
text-transform: capitalize;
}
a#active_menu:hover {
color : #333333;
}
a:link, a:visited {
font-size : 11px;
color : #CC9900;
text-decoration : none;
font-weight : bold;
}
a:hover {
font-size : 11px;
color : #996600;
text-decoration : none;
font-weight : bold;
}
a.category:link, a.category:visited {
font-size : 11px;
font-weight : bold;
}
a.readon:link, a.readon:visited {
color : #CC9900;
font-family : Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
background : url(../images/read.gif);
background-repeat: no-repeat;
white-space : normal;
font-weight : bold;
border : 1px solid #BCB778;
padding-bottom : 3px;
padding-left : 21px;
padding-right : 2px;
padding-top : 1px;
float : left;
line-height : 10px;
text-decoration : none;
}
a.readon:hover {
color : #996600;
font-family : Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
background : url(../images/read.gif);
background-repeat: no-repeat;
white-space : normal;
font-weight : bold;
border : 1px solid #BCB778;
padding-bottom : 3px;
padding-left : 21px;
padding-right : 2px;
padding-top : 1px;
float : left;
line-height : 10px;
text-decoration : none;
}
ul {float : left;
margin : 2px;
padding-left : 10px;
list-style : none;
}
li {

line-height : 15px;
padding-left : 15px;
padding-top : 0px;
background-image : url(../images/bullet.gif) ;
background-repeat: no-repeat;
background-position: 0px 3px;
}
table.contenttoc {
border : 1px solid #FFFFFF;
background : #ECEAD8;
padding : 5px;
margin-left : 2px;
margin-bottom : 2px;
}
.pagenavcounter {
font-size : 10px;
color : #CC0000;
}
.pagenavbar {
border-top : 1px solid #BCB778;
padding : 2px;
}
.pagenav {
font-weight : bold;
color : #DBD8B7;
}
a.pagenav:link, a.pagenav:visited {
text-decoration : none;
}
a.pagenav:hover {
text-decoration : none;
}
.date {
font-size : 10px;
color : #996600;
padding-right : 10px;
}
.small {
font-size : 10px;
color : #996600;
}
.smalldark {
font-size : 10px;
color : #996600;
}
.createdate, .modifydate {
font-size : 10px;
color : #CC9900;
}
.content_vote {
font-size : 10px;
height : 22px;
padding-top : 2px;
padding-bottom : 2px;
}
.content_rating {
font-size : 10px;
color : #CC9900;
}
.pathway {
font-size : 11px;
padding-left : 8px;
color: #f3bc2e;
font-weight: bold;}
a.pathway:link, a.pathway:visited {
font-size : 11px;
padding-left : 0px;
}
a.pathway:hover {
font-size : 11px;
padding-left : 0px;
}
table.content{
width : 100%;
padding : 0px;
border-collapse : collapse;
border-spacing : 0px;
margin-bottom : 10px;
}
table.contentpane {
width : 100%;
padding-left : 5px;
padding-right : 5px;
border-spacing : 0px;
margin-bottom : 5px;
}
table.contentpaneopen {
width : 100%;
padding-left : 5px;
padding-right : 5px;
border-spacing : 0px;
margin-bottom : 1px;
}
.pollstableborder{
border-color : #666666;
}
.contentheading, .componentheading {
background : url(../images/header.gif) repeat;
font-size : 14px;
font-weight : bold;
line-height : 20px;
text-transform : uppercase;
text-align : left;
color : #996600;
width : 100%;
border-bottom: 3px #b70003 solid;}
.title {
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-weight : bold;
text-transform : uppercase;
text-indent : 8px;
font-size : 20px;
text-align : left;
color : #FFFFFF;
}
.title a:link, .title a:visited {
font-size : 20px;
color : #FFFFFF;
text-decoration : none;
font-weight : bold;
}
.title a:hover {
font-size : 20px;
color : #FFFFFF;
text-decoration : none;
font-weight : bold;
}
.ontab {
border-left : 1px solid #404040;
text-align : center;
font-weight : bold;
color : #333333;
padding : 5px;
cursor : hand;
line-height : 40px;
}
.offtab {
border-left : 1px solid #404040;
text-align : center;
color : #666666;
font-weight : normal;
padding : 5px;
cursor : hand;
line-height : 40px;
}
.tabpadding {
border-left : 1px solid #404040;
}
.pagetext {
visibility : hidden;
position : relative;
top : -10;
background-color : #FFFFFF;
display : none;
}
.footer {
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
color : #FFFFFF;
font-size : 10px;
color : #FFFFFF;
font-weight : normal;
}
.footer a:link, .footer a:visited {
font-size : 11px;
color : #FFFFFF;
text-decoration : none;
font-weight : bold;
}
.footer a:hover {
font-size : 11px;
color : #996600;
text-decoration : none;
font-weight : bold;
}
.contact_email {
width : 100%;
}
.contact_email .inputbox {
width : 380px;
}

radmehr
02-21-2007, 01:16 PM
فایل index.php قالب رو باز کن . و

!!

shikposh
02-21-2007, 01:46 PM
فایل index.php قالب رو باز کن . و

!!


جناب رادمهر عزيز اين هم محتويات index.php


&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
&lt;html xmlns=&quot;<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
&lt;head&gt;
&lt;?php
/**
* Template name:zak_pro_foto
* Version: 1.0
* Creation Date: 20/11/2005
* @package Zak PRO Foto
* @copyright (C) 2005-20019 by <b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
* Copyright: This template is released under the GNU/GPL License (C) 2005-20019 by <b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
* Author Url: <b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
* Author Email: info@dizajn.biz
*/
defined( &#039;_VALID_MOS&#039; ) or die( &#039;Direct Access to this location is not allowed.&#039; );
$iso = split( &#039;=&#039;, _ISO );
echo &#039;&lt;?xml version=&quot;1.0&quot; encoding=&quot;&#039;. $iso[1] .&#039;&quot;?&#039; .&#039;&gt;&#039;;
?&gt;

&lt;script language=&quot;JavaScript&quot; type=&quot;text/JavaScript&quot;&gt;
&lt;!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&amp;&amp;i&lt;a.length&amp;&amp;(x=a[i])&amp;&amp;x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf(&quot;?&quot;))&gt;0&amp;&amp;parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&amp;&amp;d.all) x=d.all[n]; for (i=0;!x&amp;&amp;i&lt;d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&amp;&amp;d.layers&amp;&amp;i&lt;d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x &amp;&amp; d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i&lt;(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//--&gt;
&lt;/script&gt;
&lt;?php if ( $my-&gt;id ) initEditor(); ?&gt;
&lt;meta <b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b> content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;?php mosShowHead(); ?&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;&lt;?php echo $GLOBALS[&#039;mosConfig_live_site&#039;]; ?&gt;/templates/&lt;?php echo $cur_template; ?&gt;/css/template_css.css&quot; /&gt;
&lt;link rel=&quot;shortcut icon&quot; href=&quot;&lt;?php echo $GLOBALS[&#039;mosConfig_live_site&#039;]; ?&gt;/templates/&lt;?php echo $cur_template; ?&gt;/images/favicon.ico&quot;/&gt;
&lt;script language=&quot;JavaScript&quot; type=&quot;text/JavaScript&quot;&gt;
&lt;!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i&lt;a.length; i++)
if (a[i].indexOf(&quot;#&quot;)!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//--&gt;
&lt;/script&gt;
&lt;style type=&quot;text/css&quot;&gt;
&lt;!--
body {
margin-left: 0px;
margin-top: 10px;
margin-right: 0px;
margin-bottom: 0px;
background-image: url(templates/pro_photo/images/pro_foto_10.jpg);
background-color: #000000;
}
--&gt;
&lt;/style&gt;
&lt;link href=&quot;css/template_css.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
&lt;style type=&quot;text/css&quot;&gt;
&lt;!--
.style1 {color: #FFFFFF}
--&gt;
&lt;/style&gt;
&lt;/head&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;table width=&quot;854&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_10.jpg&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;20&quot; height=&quot;29&quot; align=&quot;left&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;492&quot; height=&quot;29&quot; align=&quot;left&quot;&gt;&lt;table width=&quot;492&quot; height=&quot;29&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td align=&quot;left&quot; valign=&quot;bottom&quot;&gt;&lt;?php mosLoadModules ( &#039;user3&#039; ); ?&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;td width=&quot;342&quot; height=&quot;29&quot; align=&quot;right&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_03.png&quot; width=&quot;342&quot; height=&quot;29&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot;&gt;&lt;table width=&quot;854&quot; height=&quot;130&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_04.jpg&quot; width=&quot;388&quot; height=&quot;130&quot; /&gt;&lt;/td&gt;
&lt;td&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_05.gif&quot; width=&quot;124&quot; height=&quot;130&quot; /&gt;&lt;/td&gt;
&lt;td&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_06.gif&quot; width=&quot;342&quot; height=&quot;130&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height=&quot;21&quot; colspan=&quot;3&quot; align=&quot;left&quot; valign=&quot;middle&quot; background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_07.gif&quot;&gt;&lt;table width=&quot;450&quot; height=&quot;17&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;19&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;431&quot; align=&quot;left&quot; valign=&quot;middle&quot;&gt;&lt;span class=&quot;pathway&quot;&gt;
&lt;?php include &quot;pathway.php&quot;; ?&gt;
&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;table width=&quot;854&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_10.jpg&quot;&gt;
&lt;tr&gt;
&lt;td align=&quot;center&quot; valign=&quot;bottom&quot;&gt;&lt;table width=&quot;854&quot; height=&quot;10&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;190&quot; height=&quot;10&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_08.gif&quot; width=&quot;190&quot; height=&quot;11&quot; /&gt;&lt;/td&gt;
&lt;td width=&quot;10&quot; height=&quot;10&quot; valign=&quot;top&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_10.jpg&quot; width=&quot;10&quot; height=&quot;10&quot; /&gt;&lt;/td&gt;
&lt;td height=&quot;10&quot; align=&quot;right&quot; valign=&quot;bottom&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_11.gif&quot; width=&quot;654&quot; height=&quot;10&quot; class=&quot;style1&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;table width=&quot;854&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;190&quot; align=&quot;left&quot; valign=&quot;top&quot; background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_27.gif&quot;&gt;&lt;table width=&quot;190&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td align=&quot;left&quot; valign=&quot;top&quot; background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_12.gif&quot;&gt;&lt;table width=&quot;190&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;174&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadModules ( &#039;menu&#039; ); ?&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_22.gif&quot; width=&quot;190&quot; height=&quot;10&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_24.gif&quot; width=&quot;190&quot; height=&quot;7&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_25.gif&quot; width=&quot;190&quot; height=&quot;11&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;table width=&quot;190&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;174&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadModules ( &#039;left&#039; ); ?&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;174&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadModules ( &#039;right&#039; ); ?&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;/table&gt;&lt;/td&gt;
&lt;td width=&quot;10&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;654&quot; align=&quot;left&quot; valign=&quot;top&quot; background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_14.gif&quot;&gt;&lt;table width=&quot;654&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;638&quot;&gt;&lt;table width=&quot;638&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;309&quot; align=&quot;right&quot; valign=&quot;top&quot;&gt;&lt;table width=&quot;305&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadModules ( &#039;user1&#039; ); ?&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;td width=&quot;20&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;309&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadModules ( &#039;user2&#039; ); ?&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;638&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php include (&quot;mainbody.php&quot;); ?&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;638&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadModules ( &#039;bottom&#039; ); ?&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td align=&quot;center&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadComponent( &quot;banners&quot; ); ?&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;table width=&quot;854&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;190&quot; height=&quot;21&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_28.gif&quot; width=&quot;190&quot; height=&quot;21&quot; /&gt;&lt;/td&gt;
&lt;td width=&quot;10&quot; height=&quot;21&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_29.gif&quot; width=&quot;10&quot; height=&quot;21&quot; /&gt;&lt;/td&gt;
&lt;td width=&quot;654&quot; height=&quot;21&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_30.gif&quot; width=&quot;654&quot; height=&quot;21&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;table width=&quot;854&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;8&quot; height=&quot;11&quot; colspan=&quot;3&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_31.gif&quot; width=&quot;854&quot; height=&quot;11&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width=&quot;415&quot; height=&quot;104&quot; align=&quot;right&quot; valign=&quot;top&quot; background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_32.gif&quot;&gt;&lt;table width=&quot;415&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;405&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadModules ( &#039;advert1&#039; ); ?&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;td background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_33.gif&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_33.gif&quot; width=&quot;24&quot; height=&quot;104&quot; /&gt;&lt;/td&gt;
&lt;td width=&quot;415&quot; height=&quot;104&quot; align=&quot;left&quot; valign=&quot;top&quot; background=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_34.gif&quot;&gt;&lt;table width=&quot;415&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;405&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php mosLoadModules ( &#039;advert2&#039; ); ?&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height=&quot;10&quot; colspan=&quot;3&quot;&gt;&lt;img src=&quot;templates/&lt;?php echo $cur_template; ?&gt;/images/pro_foto_35.gif&quot; width=&quot;854&quot; height=&quot;10&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;table width=&quot;854&quot; height=&quot;25&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; bgcolor=&quot;#000000&quot;&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;654&quot; align=&quot;center&quot; valign=&quot;middle&quot;&gt;&lt;span class=&quot;style1&quot;&gt;Design by Zak Mahuna&lt;/span&gt; &lt;span class=&quot;style1&quot;&gt;&amp;copy; 2005&lt;/span&gt; &lt;a href=&quot;<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b> target=&quot;_self&quot;&gt;<b><font color=red>فقط کاربران عضو انجمن می توانند لینک ها را مشاهده کنند</font></b>
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;


آيا ميشه اين كد در قالب اصلا موجود نباشه ؟

radmehr
02-21-2007, 06:35 PM
این قالب رو از کجا آوردید ؟!
این خطه:

&lt;td width=&quot;638&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php include (&quot;mainbody.php&quot;); ?&gt;&lt;/td&gt;

shikposh
02-21-2007, 07:14 PM
این قالب رو از کجا آوردید ؟!
این خطه:

&lt;td width=&quot;638&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;?php include (&quot;mainbody.php&quot;); ?&gt;&lt;/td&gt;


خوب جناب رادمهر براي راتچين كردن همين align=&quot;left رو بكنم Right راست چين ميشه ؟
ببخشيد من يه مقدار خنگ و تازه كارم و شما رو سوال پيچ مي كنم :-[

hossein.shokrzadeh
02-21-2007, 07:36 PM
شيك پوش جان سلام
نه آقا اين حرفا چيه؟ اينجا خيلي زود راه ميافته آدم
فقط يكم بايد سعي خودت رو بكني
اولين قدمش اينه كه اون left رو بكني right ببيني چي ميشه، بعد اگه نشد ببيني چه كاراي ديگه اي از دستت بر مياد
و دوستان هم كمك ميكنند
يا علي

shikposh
02-21-2007, 07:44 PM
شيك پوش جان سلام
نه آقا اين حرفا چيه؟ اينجا خيلي زود راه ميافته آدم
فقط يكم بايد سعي خودت رو بكني
اولين قدمش اينه كه اون left رو بكني right ببيني چي ميشه، بعد اگه نشد ببيني چه كاراي ديگه اي از دستت بر مياد
و دوستان هم كمك ميكنند
يا علي


با سپاس از لطف شما عزيز
آخه اينقدر سوال مي كنم خودم هم روم نميشه

hossein.shokrzadeh
02-21-2007, 07:49 PM
دوست من فروم جاي سواله :)
فقط قوانين.... (زدن پست تشكر...) ;)