منتدى الدعم و المساعدة لأحلى المنتديات
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

3 مشترك

اذهب الى الأسفل

ãÚáæãÉ يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف عماد72 الجمعة 11 أبريل 2014 - 13:52

السلام عليكم

يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية من هذا الكود

الكود:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
<head>
   <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
   <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
   <meta http-equiv="content-script-type" content="text/javascript" />
   <meta http-equiv="content-style-type" content="text/css" />
   <!-- BEGIN switch_compat_meta -->
   <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
   <!-- END switch_compat_meta -->
   <!-- BEGIN switch_canonical_url -->
   <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
   <!-- END switch_canonical_url -->
   {META_FAVICO}
   {META}
   {META_FB_LIKE}
   <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
   {T_HEAD_STYLESHEET}
   {CSS}
   <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
   <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
   <script src="{JQUERY_PATH}" type="text/javascript"></script>
   <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>

   <!-- BEGIN switch_fb_login -->
   <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
   <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
   <!-- END switch_fb_login -->

   <!-- BEGIN switch_ticker -->
   <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
   <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
   <!-- END switch_ticker -->

   <!-- BEGIN switch_ticker_new -->
   <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
   <script type="text/javascript">//<![CDATA[
      /* Definir le sens de direction en fonction du panneau admin */
      var tickerDirParam = "{switch_ticker.DIRECTION}";
      var slid_vert = false;
      var auto_dir = 'next';
      var h_perso = parseInt({switch_ticker.HEIGHT});

      switch( tickerDirParam )
      {
         case 'top' :
            slid_vert = true;
            break;

         case 'left':
            break;

         case 'bottom':
            slid_vert = true;
            auto_dir = 'prev';
            break;

         case 'right':
            auto_dir = 'prev';
            break;

         default:
            slid_vert = true;
      }

      $(document).ready(function() {
         var w_cont = $('#fa_ticker_container').width();

         if (w_cont > 0)
         {
            $('#fa_ticker_container').width(w_cont);

            /* Affichage de la liste */
            $('#fa_ticker_content').css('display','block');

            /* Calcul des dimensions du conteneur et des elements */
            var width_max = $('ul#fa_ticker_content').width();
            var width_item = Math.floor(width_max / {switch_ticker.SIZE});
            var height_max = h_perso;

            /* Calcul de la hauteur maximale du conteneur en fonction des elements et de la hauteur personnalisee dans l'admin */
            $('ul#fa_ticker_content li').each( function () {
               if ($(this).height() > height_max)
               {
                  height_max = $(this).height();
               }
            } );

            /* Redimensionnement des elements et des images trop larges */
            $('ul#fa_ticker_content li').width(width_item).height(height_max).find('img').each(function () {
               if ($(this).width() > width_item)
               {
               var ratio      = $(this).width() / width_item;
               var new_height = Math.round($(this).height() / ratio);
               $(this).height(new_height).width(width_item);
               }
            });

            /* Redimensionnement et centrage du conteneur en mode vertical */
            if (slid_vert)
            {
               $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
            }

            /* Initialisation du caroussel */
            $('#fa_ticker_content').jcarousel({
                  vertical: slid_vert,
               wrap: 'circular',
               auto: {switch_ticker.STOP_TIME},
               auto_direction: auto_dir,
            scroll: 1,
            size: {switch_ticker.SIZE},
            height_max: height_max,
            animation: {switch_ticker.SPEED}
            });
         }
         else
         {
            $('ul#fa_ticker_content li:not(:first)').css('display','none');
            $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
         }
      });
   //]]>
   </script>
   <!-- END switch_ticker_new -->

   <script type="text/javascript">//<![CDATA[
   $(document).ready(function(){
      <!-- BEGIN switch_enable_pm_popup -->
         pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
         pm.focus();
      <!-- END switch_enable_pm_popup -->
      <!-- BEGIN switch_report_popup -->
         report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
         report.focus();
      <!-- END switch_report_popup -->
      <!-- BEGIN switch_ticker -->
         ticker_start({switch_ticker.HEIGHT}, {switch_ticker.SPACING}, {switch_ticker.SPEED}, '{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
      <!-- END switch_ticker -->
   });

   <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = true, logInBackgroundClass = false;
   <!-- END switch_login_popup -->

   <!-- BEGIN switch_login_popup -->
   $(document).ready( function() {
      $(window).resize(function() {
         var windowWidth = document.documentElement.clientWidth;
         var popupWidth = $("#login_popup").width();
         var mypopup = $("#login_popup");

         $("#login_popup").css({
         "left": windowWidth/2 - popupWidth/2
            });
      });
   });
   <!-- END switch_login_popup -->
   //]]>
   </script>
   {GREETING_POPUP}
   <!-- BEGIN switch_ticker_new -->
   <style>
   .jcarousel-skin-tango .jcarousel-item {
      text-align:center;
      width: 10px;
   }

   .jcarousel-skin-tango .jcarousel-item-horizontal {
      margin-right: {switch_ticker.SPACING}px;
   }

   .jcarousel-skin-tango .jcarousel-item-vertical {
      margin-bottom: {switch_ticker.SPACING}px;
   }
   </style>
   <!-- END switch_ticker_new -->
   {HOSTING_JS}
   <!-- BEGIN google_analytics_code -->
   <script type="text/javascript">
   //<![CDATA[
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', '{G_ANALYTICS_ID}']);
    _gaq.push(['_trackPageview']);
   _gaq.push(['_trackPageLoadTime']);

   <!-- BEGIN google_analytics_code_bis -->
   _gaq.push(['b._setAccount', '{G_ANALYTICS_ID_BIS}']);
   _gaq.push(['b._trackPageview']);
   <!-- END google_analytics_code_bis -->

    (function() {
      var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
      var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();
   //]]>
   </script>
   <!-- END google_analytics_code -->
</head>
<body background="{T_BODY_BACKGROUND}" bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
   <!-- BEGIN hitskin_preview -->
   <div id="hitskin_preview" style="display: block;">
      <h1><img src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> Hit<em>skin</em>.com</h1>
      <div class="content">
         <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
         </p>
      </div>
   </div>
   <!-- END hitskin_preview -->

   <!-- BEGIN switch_login_popup -->
   <div id="login_popup">
      <table class="forumline" width="{LOGIN_POPUP_WIDTH}" height="{LOGIN_POPUP_HEIGHT}" border="0" cellspacing="1" cellpadding="0">
         <tr height="25">
            <td class="catLeft">
               <span class="genmed module-title">{SITENAME}</span>
            </td>
         </tr>
         <tr height="{LOGIN_POPUP_MSG_HEIGHT}">
            <td class="row1" align="left" valign="top">
               <div id="login_popup_buttons">
                  <form action="{S_LOGIN_ACTION}" method="get">
                     <input type="submit" class="mainoption" value="{L_LOGIN}" />
                     <input type="button" class="mainoption" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
                     <input id="login_popup_close" type="button" class="button" value="{L_DONT_DISPLAY_AGAIN}" />
                  </form>
               </div>
               <span class="genmed">{LOGIN_POPUP_MSG}</span>
            </td>
         </tr>
      </table>
   </div>
   <!-- END switch_login_popup -->

   <a name="top"></a>
   {JAVASCRIPT}
<head>
<!-- CSS Stylesheet -->
<link rel="stylesheet" type="text/css" href="http://demo.shbkat.com/vbulletin/saqiruae-shbkat/css/style.css" />

<!-- / CSS Stylesheet -->
<title>شركة فور يمنى</title>
</head>
<body>
<!-- start header -->
<div class="HeaderCon">
   <div class="Header">
      <div class="HeaderTop">
         <div class="HeaderTopRight">
         </div>
         <div class="Menu">
            <ul>
<li class="select"><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
            </ul>
         </div>
         <div class="HeaderTopLeft">
         </div>
      </div>
      <div class="TopShadw">
         <div class="TopShadwRight">
         </div>
         <div class="TopShadwLeft">
         <div class="Adv468">
         <a title="تحويل شركة فور يمنى" href="http://www.4egy.net" target="_blank"><img src="http://im17.gulfup.com/tuuR1.gif" alt="4egy.net" /></a>
            </div>
         </div>
      </div>
      <div class="NavBar">
         <div class="NavBarRight">
         </div>
         <div class="Search">
<form action="/search" method="post">
                        <input type="hidden" name="do" value="process" />
                        <input type="hidden" name="quicksearch" value="1" />
                        <input type="hidden" name="childforums" value="1" />
                        <input type="hidden" name="exactname" value="1" />
                        <input type="hidden" name="s" value="" />
                        <input type="hidden" name="securitytoken" value="guest" />                        
<input type="text" class="Box" onblur="if(this.value=='')this.value='ضع كلمة البحث هنا ..' " onfocus="if(this.value=='ضع كلمة البحث هنا ..')this.value=''" value="ضع كلمة البحث هنا .." name="query" size="25" tabindex="1001" />
<input type="hidden" name="showposts" value="1" id="rb_nb_sp1" tabindex="1003" />                           
<input style="background: transparent !important;"class="Go" src="http://demo.shbkat.com/vbulletin/saqiruae-shbkat/shbkat/spacer.gif" type="image" />
                     </form>
            </div>
                  <style>
                    .select {
border: none !important;
overflow: visible !important;
position: static !important;
width: 950px !important;
                    }</style>
         <div class="NavBarMenu">
            <ul>
<li class="select"><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
<li><a title="" href="">رابط نصي</a></li>
            </ul>
         </div>
      </div>
      <div class="NavBarShadow">
         <map id="FPMap0" name="FPMap0">
         <area coords="122, 27, 17" href="twt" shape="circle" />
         <area coords="81, 27, 17" href="fb" shape="circle" />
         <area coords="39, 27, 17" href="rss" shape="circle" />
         </map>
         <img alt="" height="55" src="http://demo.shbkat.com/vbulletin/saqiruae-shbkat/shbkat/spacer.gif" usemap="#FPMap0" width="200" /></div>
   </div>
</div>
<div class="Page">
<div align="center">
   <div class="page" style="width:960px; text-align:right">
      <div style="padding:0px 0px 0px 0px" align="right">
<br />
   <!-- Start Cat -->
   <div class="Cat">
      <!-- Start Cat Top -->
      <div class="CatTop">
         <div class="CatTop_Right">
            <h1>اهلا بك فى شركة فور يمنى</h1>
         </div>
         <div class="CatTop_Left">
         </div>
      </div>
      <!-- Start Cat Center -->
      <div class="CatCenter_Right">
         <div class="CatCenter_Left">
            <!-- Start Cat Body -->
            <div class="CatBody">
<!-- breadcrumb, login, pm info -->
<table class="tborder" cellpadding="2" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%">
<div class="nav"><img src="http://demo.shbkat.com/vbulletin/saqiruae-shbkat/misc/navbits_start.gif" class="inlineimg" alt="" border="0" height="15" width="15" /> {L_INDEX}{NAV_CAT_DESC}</div>
<font face="Tahoma" font-size="10pt" font-weight="bold">
<img src="http://demo.shbkat.com/vbulletin/saqiruae-shbkat/misc/navbits_finallink_rtl.gif" height="15" width="30" /> {PAGE_TITLE}</font>
   </td>
   <td class="alt2" nowrap="nowrap" style="padding:0px">
<!-- BEGIN switch_user_logged_in -->
<div align="center">
  <strong>{LOGGED_AS}</strong><br />
  {CURRENT_TIME}
  <div> <strong>{LAST_VISIT_DATE}</strong></div>
</div>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_user_logged_out -->
      <!-- login form -->
<form action="/login.forum?redirect=h15-page" method="post" name="form_login">
      <table cellpadding="0" cellspacing="2" border="0">
      <tr>
         <td class="smallfont" style="white-space: nowrap;"><label for="navbar_username">اسم العضو</label></td>
         <td><input id="post" type="text" class="bginput" style="font-size: 11px" name="username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="اسم العضو" onfocus="if (this.value == 'اسم العضو') this.value = '';" /></td>
         <td class="smallfont" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input name="autologin" type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />حفظ البيانات؟</label></td>
      </tr>
      <tr>
         <td class="smallfont"><label for="navbar_password">كلمة المرور</label></td>
         <td><input id="post" type="password" class="bginput" style="font-size: 11px" name="password" id="navbar_password" size="10" tabindex="102" /></td>
<td><input name="login" type="submit" class="button" value="تسجيل الدخول" tabindex="104" title="ادخل اسم العضو وكلمة المرور الخاصة بك في الحقول المجاورة لتسجيل الدخول, أو اضغط على رابط 'التسجيل' لإنشاء حساب خاص بك." accesskey="s" /></td>
      </tr>
      </table>
      <input type="hidden" name="s" value="" />
      <input type="hidden" name="securitytoken" value="guest" />
      <input type="hidden" name="do" value="login" />
      <input type="hidden" name="vb_login_md5password" />
      <input type="hidden" name="vb_login_md5password_utf" />
      </form>
      <!-- / login form -->
 <!-- END switch_user_logged_out -->
   </td>
</tr>
</table>
<div class="tborder" style="padding:1px; border-top-width:0px">
   <table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
   <tr align="center">
<td class="vbmenu_control">{GENERATED_NAV_BAR}</td>
</tr>
   </table>
</div></div>
</div>
      </div>
      <!-- Start Cat Bottom -->
      <div class="CatBottom">
         <div class="CatBottom_Right">
         </div>
         <div class="CatBottom_Left">
         </div>
      </div>
   </div>
   <!-- End Cat -->
<!-- main -->
<!-- BEGIN switch_user_logged_in -->
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_user_logged_out -->
<br />
<!-- Start Cat -->
   <div class="Cat">
      <!-- Start Cat Top -->
      <div class="CatTop">
         <div class="CatTop_Right">
            <h1>اهلا بك فى شركة فور يمنى</h1>
         </div>
         <div class="CatTop_Left">
         </div>
      </div>
      <!-- Start Cat Center -->
      <div class="CatCenter_Right">
         <div class="CatCenter_Left">
            <!-- Start Cat Body -->
            <div class="CatBody">


<table class="tborder" cellpadding="2" cellspacing="1" border="0" width="100%" align="center">
<tr>
   <td class="tcat">أهلا وسهلا بك إلى معرض اعمال استايلات شبكات.</td>
</tr>
<tr>
   <td class="alt1">
      
   </td>
</tr>
</table>
</div>
         </div>
      </div>
      <!-- Start Cat Bottom -->
      <div class="CatBottom">
         <div class="CatBottom_Right">
         </div>
         <div class="CatBottom_Left">
         </div>
      </div>
   </div>
   <!-- End Cat -->
<!-- END switch_user_logged_out -->
<br />
   <table class="bodylinewidth" width="{T_BODY_TABLE_WIDTH}" cellspacing="0" cellpadding="1" border="0" align="center">
        <tr>
            <td class="bodyline">
                <table width="100%" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                        <!-- BEGIN switch_logo_left -->
                        <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
                        <!-- END switch_logo_left -->
                        <td align="center" width="100%" valign="middle">
                            <!-- BEGIN switch_logo_center -->
                            <a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a>

                            <!-- END switch_logo_center -->

                            <span class="gen"><br />  </span>
                        </td>
                        <!-- BEGIN switch_logo_right -->
                        <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
                        <!-- END switch_logo_right -->
                    </tr>
                </table>

                <div style="clear: both;"></div>

                <!-- BEGIN switch_ticker_new -->
                <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                        <tr>
                            <td {CLASS_TABLE_TYPE} align="left" class="row1">
                                <div id="fa_ticker_container">
                                    <ul id="fa_ticker_content"  class="jcarousel-skin-tango" style="display:none;">
                                        <!-- BEGIN ticker_row -->
                                        <li>{switch_ticker.ticker_row.ELEMENT}</li>
                                        <!-- END ticker_row -->
                                    </ul>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!-- END switch_ticker_new -->

                <!-- BEGIN switch_ticker -->
                <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                        <tr>
                            <td {CLASS_TABLE_TYPE} align="left" class="row1">
                                <div id="fa_ticker_container">
                                    <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
                                        <div class="fa_ticker_content">
                                            <!-- BEGIN ticker_row -->
                                            <div>{switch_ticker.ticker_row.ELEMENT}</div>
                                            <!-- END ticker_row -->
                                        </div>
                                    </div>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!-- END switch_ticker -->

                <div id="page-body">
                    <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                        <table cellpadding="0" cellspacing="0" width="100%" class="three-col">
                            <tbody>
                                <tr>
                                        <td valign="top" width="100%">
                                  <div id="center">
                                    <!-- BEGIN giefmod_index1 -->
                                    {giefmod_index1.MODVAR}
                                        <!-- BEGIN saut -->
                                        <div style="height:{SPACE_ROW}px"></div>
                                        <!-- END saut -->
                                    <!-- END giefmod_index1 -->
                                  </div>
                              </td></tr><tr>
                            <td valign="top" width="100%">
                                                                          <!-- BEGIN html_validation -->
                                    </td>

                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </td>
        </tr>
    </table>

</body>
</html>
<!-- END html_validation -->




و لكم مني جزيل الشكر


عدل سابقا من قبل عماد72 في الجمعة 11 أبريل 2014 - 17:51 عدل 1 مرات (السبب : تم الحل)
عماد72
عماد72
 
 

ذكر
عدد المساهمات : 422
معدل النشاط : 6274
السُمعة : 1

https://www.ahlamontada.com/

الرجوع الى أعلى الصفحة اذهب الى الأسفل

ãÚáæãÉ رد: يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف عماد72 الجمعة 11 أبريل 2014 - 14:03

رابط صفحة css

http://demo.shbkat.com/vbulletin/saqiruae-shbkat/css/style.css

الكود:
/* Start Shbkat Css */
html, body {
   margin: 0px;
   padding: 0px;
   background: #ffd0a2 url('../shbkat/bg.jpg') fixed;
   font-family: tahoma;
   font-size: 11px;
   color: #5f301b;
}
ul, li, h1, h2, h3, h4 {
   margin: 0px;
   padding: 0px;
   list-style: none;
   list-style-position: inside;
}
img {
   border: none;
}
a, input, a:hover, textarea, sub, select {
   text-decoration: none;
   outline: 0px none;
   margin: 0px;
   padding: 0px;
}
input, textarea, sub, select {
   font: Normal 11px Tahoma;
   text-decoration: none;
   outline: 0px none;
   margin: 0px;
   padding: 0px;
}
legend {
   background: transparent url(../shbkat/tit.jpg) repeat-x top left;
   color: #ffead0;
   font: bold 11px tahoma;
   border-style: none;
   border-color: transparent;
   padding: 3px 8px;
   text-shadow: 0 1px 0 #83472b;
}
fieldset {
   margin-bottom: 6px;
   border: 1px #fdcc93 dashed;
}
hr {
   background: #fdcc93 ;
   border-color: #FFFFFF;
}
a {
   color: #90502f;
   text-decoration: none;
}
a:link, body_alink {
   color: #90502f;
   text-decoration: none;
}
a:visited, body_avisited {
   color: #90502f;
   text-decoration: none;
}
a:hover, a:active {
   color: #5b2d19;
   text-decoration: none;
}
.page {
   margin: auto;
}
.page a:link, .page_alink {
   text-decoration: none;
}
.page a:visited, .page_avisited {
   text-decoration: none;
}
.page a:hover, .page a:active, .page_ahover {
   text-decoration: none;
}
.floatcontainer {
   margin: auto;
   overflow: hidden;
   width: 99%;
}
td, th, p, li {
   font: 11px tahoma, arial, helvetica,verdana;
}
.tborder {
   background: none;
}
.tcat {
   background: transparent url('../shbkat/tab.jpg') repeat-x center -1px;
   color: #dbe6bf;
   font: bold 12px tahoma, arial, helvetica,verdana;
   text-align: center;
   height:20px;
   padding:5px;
   text-shadow: 0 1px 0 #21241e;
}
.tcat a:link, .tcat_alink {
   color: #dbe6bf;
   text-decoration: none;
}
.tcat a:visited, .tcat_avisited {
   color: #FFFFFF;
   text-decoration: none;
}
.tcat a:hover, .tcat a:active {
   color: #FF0000;
   text-decoration: none;
}
.thead {
   background: transparent url('../shbkat/tit.jpg') repeat-x center -1px;
   color: #5c2e19;
   font: bold 11px tahoma, arial, helvetica,verdana;
   padding:5px;
   height:20px;
   text-shadow: 0 1px 0 #e5a063;
}
.thead a:link, .thead_alink {
   text-decoration: none;
   color: #5c2e19;
}
.thead a:visited, .thead_avisited {
   text-decoration: none;
   color: #5c2e19;
}
.thead a:hover, .thead a:active, .thead_ahover {
   text-decoration: none;
   color: #402011;
}
.tfoot {
   background: transparent;
   color: #7c4026;
   font: 11px tahoma, arial, helvetica,verdana;
   padding: 5px;
}
.tfoot a:link, .tfoot_alink {
   color: #7c4026;
   text-decoration: none;
}
.tfoot a:visited, .tfoot_avisited {
   color: #7c4026;
   text-decoration: none;
}
.tfoot a:hover, .tfoot a:active, .tfoot_ahover {
   color: #9a5d3c;
   text-decoration: none;
}
.alt1, .alt1Active {
   background: #FFF5EA;
   font: bold 17px arial, helvetica,verdana;
   border-top: 1px #ffffff solid;
   border-left: 1px #ffffff solid;
   border-right: 1px #f5d8b6 solid;
   border-bottom: 1px #f5d8b6 solid;
}
.alt1 a:link, .alt1_alink, .alt1Active a:link, .alt1Active_alink {
   text-decoration: none;
}
.alt1 a:visited, .alt1_avisited, .alt1Active a:visited, .alt1Active_avisited {
   text-decoration: none;
}
.alt1 a:hover, .alt1 a:active, .alt1_ahover, .alt1Active a:hover, .alt1Active a:active, .alt1Active_ahover {
   text-decoration: none;
}
.alt2, .alt2Active {
   background: #FFEBD5;
   font: bold 16px arial, helvetica,verdana;
   border-top: 1px #ffffff solid;
   border-left: 1px #ffffff solid;
   border-right: 1px #f5d8b6 solid;
   border-bottom: 1px #f5d8b6 solid;
}
.alt2 a:link, .alt2_alink, .alt2Active a:link, .alt2Active_alink {
   text-decoration: none;
}
.alt2 a:visited, .alt2_avisited, .alt2Active a:visited, .alt2Active_avisited {
   text-decoration: none;
}
.alt2 a:hover, .alt2 a:active, .alt2_ahover, .alt2Active a:hover, .alt2Active a:active, .alt2Active_ahover {
   text-decoration: none;
}
.inlinemod {
   background: #FFFFCC;
   color: #90502F;
}
.wysiwyg {
   background: #FFFFFF;
   color: #90502F;
   font: bold 16px arial, helvetica,verdana;
   margin: 0px 0px 0px 0px;
   padding: 0px;
}
.wysiwyg a:link, .wysiwyg_alink {
   color: #90502F;
   text-decoration: none;
}
.wysiwyg a:visited, .wysiwyg_avisited {
   color: #90502F;
   text-decoration: none;
}
.wysiwyg a:hover, .wysiwyg a:active, .wysiwyg_ahover {
   color: #5B2D19;
   text-decoration: none;
}
textarea, .bginput {
   font: 11px tahoma, arial, helvetica,verdana;
}
.bginput option, .bginput optgroup {
   font-size: 11px;
   font-family: tahoma, arial, helvetica,verdana;
}
.button {
   font: 11px Tahoma,Verdana,Arial,Helvetica,sans-serif;
}
select {
   font: 11px Tahoma,Verdana,Arial,Helvetica,sans-serif;
}
option, optgroup {
   font-size: 11px;
   font-family: Tahoma,Verdana,Arial,Helvetica,sans-serif;
}
.smallfont {
   font: 11px Tahoma;
   color: #a66230;
}
.time {
   color: #542B1A;
   font: 11px Tahoma,Verdana,Arial,Helvetica,sans-serif;
}
.navbar {
   font: bold 9px tahoma, arial, helvetica,verdana;
}
.navbar a:link, .navbar_alink {
   text-decoration: none;
}
.navbar a:visited, .navbar_avisited {
   text-decoration: none;
}
.navbar a:hover, .navbar a:active, .navbar_ahover {
   text-decoration: none;
}
.highlight {
   color: #90502F;
   font-weight: bold;
}
.fjsel {
   background: #ffdeb6;
   color: #90502F;
}
.fjdpth0 {
   background: #ffe9cd;
   color: #90502F;
}
.panel {
   background: #ffe7cc;
   color: #90502F;
   padding: 10px;
   border: 0px;
   margin: 5px;
}
.panel a:link, .panel_alink {
   text-decoration: none;
}
.panel a:visited, .panel_avisited {
   text-decoration: none;
}
.panel a:hover, .panel a:active, .panel_ahover {
   text-decoration: none;
}
.panelsurround {
   background: #f7d8b4;
   color: #542B1A;
   font-size: 16px;
   font-weight: bold;
}
.vBulletin_editor {
   
}
.vbmenu_control {
   background: transparent url('../shbkat/tab.jpg') repeat-x center -1px;
   color: #dbe6bf;
   font: bold 12px tahoma, arial, helvetica,verdana;
   text-align: center;
   height:20px;
   padding:5px;
   text-shadow: 0 1px 0 #21241e;
   white-space: nowrap;
}
.vbmenu_control a:link, .vbmenu_control_alink {
   color: #dbe6bf;
   text-decoration: none;
}
.vbmenu_control a:visited, .vbmenu_control_avisited {
   color: #dbe6bf;
   text-decoration: none;
}
.vbmenu_control a:hover, .vbmenu_control a:active, .vbmenu_control_ahover {
   color: #FFFFFF;
   text-decoration: none;
}
.vbmenu_popup {
   background: #ffdaad;
   color: #b01e6f;
   font-family: tahoma, arial, helvetica,verdana;
}
.vbmenu_option {
   background: #ffdaad;
   color: #90502F;
   font: 11px tahoma, arial, helvetica,verdana;
   white-space: nowrap;
   cursor: pointer;
}
.vbmenu_option a:link, .vbmenu_option_alink {
   color: #90502F;
   text-decoration: none;
}
.vbmenu_option a:visited, .vbmenu_option_avisited {
   color: #90502F;
   text-decoration: none;
}
.vbmenu_option a:hover, .vbmenu_option a:active, .vbmenu_option_ahover {
   color: #90502F;
   text-decoration: none;
}
.vbmenu_hilite {
   background: #FFFFFF;
   color: #B67451;
   font: 11px tahoma, arial, helvetica,verdana;
   white-space: nowrap;
   cursor: pointer;
}
.vbmenu_hilite a:link, .vbmenu_hilite_alink {
   color: #B67451;
   text-decoration: none;
}
.vbmenu_hilite a:visited, .vbmenu_hilite_avisited {
   color: #B67451;
   text-decoration: none;
}
.vbmenu_hilite a:hover, .vbmenu_hilite a:active, .vbmenu_hilite_ahover {
   color: #B67451;
   text-decoration: none;
}
/* ***** styling for 'big' usernames on postbit etc. ***** */
.bigusername {
   font-size: 14pt;
}
/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead {
   padding: 4px;
}
/* ***** basic styles for multi-page nav elements */
.pagenav a {
   text-decoration: none;
}
.pagenav td {
   padding: 2px 4px 2px 4px;
}
/* ***** de-emphasized text */
.shade, a.shade:link, a.shade:visited {
   color: #777777;
   text-decoration: none;
}
a.shade:active, a.shade:hover {
   color: #FF0000;
   text-decoration: underline;
}
.tcat .shade, .thead .shade, .tfoot .shade {
   color: #DDDDDD;
}
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset {
   margin-bottom: 6px;
}
.fieldset, .fieldset td, .fieldset p, .fieldset li {
   font-size: 11px;
}
/* Css */
.button {
   color: #666666;
   padding: 5px;
}
.infouser {
   font: normal 11px "tahoma";
   letter-spacing: 0px;
   vertical-align: middle;
   padding: 1px 2px;
   margin: 0 2px 2px;
}
.avataruser {
}
.avataruser img {
   margin: auto;
   border: 1px #FFFFFF solid;
   margin-top: 15px;
   padding: 5px;
   background: #FFF4E8;
}
/* - shbkat - */
:hover.tcat {
}
:hover.alt1 {
   background: #FFFFFF;
}
:hover.alt2 {
   background: #FFFFFF;
}
:hover.alt1Active {
   background: #FFFFFF;
}
:hover.button {
   color: #333333;
}
:hover.vbmenu_control {
}
/* Start Cat */
.Cat {
   overflow: hidden;
   background-color: #fff;
   width: 912px;
   margin: auto;
}
.Cat h1 {
   font-size: 20px;
}
.CatTop {
   background: transparent url('../shbkat/blocktop.jpg') no-repeat scroll center center;
   height: 60px;
}
.CatTop_Right {
   float: right;
   height: 60px;
   width: 333px;
}
.CatTop_Right h1 {
   color: #e5a063;
   padding-top: 17px;
   margin-right: 20px;
   text-align: center;
   width: 280px;
   font: bold 12px tahoma;
   text-shadow: 0 1px 0 #331d13;
   float: right;
}
.CatTop_Right h1 a {
   color: #e5a063;
}
.CatTop_Right h1 a:hover {
   color: #fbc799;
}
.CatTop_Left {
   float: left;
   width: 55px;
   height: 60px;
   display: none;
}
.CatCenter_Right {
   background: #f7d8b4 url('../shbkat/blockdash.jpg') repeat-y scroll right;
   padding-right: 10px;
}
.CatCenter_Left {
   background: #f7d8b4 url('../shbkat/blockdash.jpg') repeat-y scroll center left;
   padding-left: 10px;
}
.CatBody {
   padding: 0px;
   overflow: hidden;
   margin-left: 2px;
   background-color: #fff7ed;
}
.CatBottom {
   background: transparent url('../shbkat/blockfoot.jpg') repeat-x scroll;
   height: 50px;
}
.CatBottom_Right {
   background: transparent url('../shbkat/b8.jpg') no-repeat scroll right;
   width: 11px;
   height: 26px;
   float: right;
   display:none;
}
.CatBottom_Left {
   background: transparent url('../shbkat/b6.jpg') no-repeat scroll left;
   width: 181px;
   height: 26px;
   float: left;
   display:none;
}
/* End Cat */
/* Shbkat Start */
.Page {
   width: 985px;
   height: auto;
   overflow: hidden;
   margin: auto;
   background: transparent url('../shbkat/pagebg.jpg') repeat-y scroll center top;
}
.PageTop {
   width: 920px;
   margin: auto;
}
.HeaderCon {
   width: 100%;
   height: 393px;
   margin: auto;
   background: transparent url('../shbkat/hedbg.jpg') repeat-x scroll center top;
}
.Header {
   width: 985px;
   height: 393px;
   margin: auto;
}
.HeaderTop {
   width: 985px;
   height: 80px;
   background: transparent url('../shbkat/top2.jpg') repeat-x scroll center top;
}
.HeaderTopLeft {
   background: transparent url('../shbkat/top1.jpg') repeat-x scroll center top;
   float: left;
   width: 12px;
   height: 80px;
}
.HeaderTopRight {
   background: transparent url('../shbkat/top3.jpg') repeat-x scroll center top;
   float: right;
   width: 12px;
   height: 80px;
}
.Menu {
   height: 80px;
   float: right;
   width: 945px;
   margin-right: 15px;
}
.Menu ul {
}
.Menu li {
   display: inline;
}
.Menu li a {
   float: right;
   background: transparent url('../shbkat/topbtn.jpg') repeat-x scroll right top;
   width: 125px;
   height: 81px;
   line-height: 65px;
   text-align: center;
   margin: 0 0 0 9px;
   font-weight: bold;
   color: #e5eddb;
   text-shadow: 0 1px 0 #4e5745;
}
.Menu li a:hover, .Menu li.select a {
   background: transparent url('../shbkat/topbtn.jpg') repeat-x scroll left top;
   color: #FFF;
   text-shadow: 0 1px 0 #616b55;
}
.TopShadw {
   width: 985px;
   height: 177px;
   float: right;
}
.TopShadwRight {
   background: transparent url('../shbkat/hlogo.jpg') repeat-x scroll left top;
   width: 394px;
   height: 177px;
   float: right;
}
.TopShadwLeft {
   background: transparent url('../shbkat/topshadow.jpg') repeat-x scroll left top;
   width: 591px;
   height: 177px;
   float: left;
}
.NavBar {
   width: 985px;
   float: right;
   height: 58px;
   background: transparent url('../shbkat/navbg.jpg') repeat-x scroll left top;
}
.NavBarRight {
   width: 29px;
   float: right;
   height: 58px;
   background: transparent url('../shbkat/navright.jpg') repeat-x scroll left top;
}
.NavBar .Search {
   background: transparent url('../shbkat/navsearch.jpg') no-repeat scroll left top;
   width: 355px;
   height: 58px;
   float: left;
   padding: 7px 0 0 20px;
}
.NavBar .Search .Box {
   width: 212px;
   height: 35px;
   line-height: 35px;
   margin-top: 6px;
   border: none 0px;
   background: none;
   color: #cd824b;
   float: right;
   margin-right: 30px;
   direction: rtl;
   cursor: pointer;
}
.NavBar .Search .Go {
   width: 82px;
   height: 44px;
   float: left;
}
.NavBarMenu {
   height: 108px;
   display: block;
}
.NavBarMenu {
   height: 58px;
   display: block;
}
.NavBarMenu ul {
   padding: 11px 14px 0 0;
}
.NavBarMenu li a {
   float: right;
   width: 117px;
   height: 40px;
   line-height: 33px;
   text-align: center;
   color: #542b1a;
   background: transparent;
   margin: 0 0 0 10px;
   text-shadow: 0 1px 0 #e2a969;
   font-weight: bold;
}
.NavBarMenu li a:hover, .NavBarMenu li.select a {
   background: transparent url('../shbkat/navbtn.jpg') no-repeat scroll right top;
   color: #f7dcbd;
   text-shadow: 0 1px 0 #24130c;
}
.NavBarShadow {
   width: 985px;
   float: right;
   height: 78px;
   background: transparent url('../shbkat/unav.jpg') repeat-x scroll left top;
}
/* Css */
.Adv468 {
   width: 468px;
   height: 90px;
   float: left;
   margin-top: 55px;
   margin-left: 33px;
   filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( enabled=true , sizingMethod=scale src='../shbkat/468shdow.png');
   background-position: left bottom;
   background-repeat: repeat-x;
}
.Adv468[class] {
   background: transparent url('../shbkat/468shdow.png') repeat-x scroll left bottom;
}
/* Css */
.Footer {
   width: 100%;
   background: transparent url('../shbkat/footbag.jpg') repeat-x scroll left top;
   float: right;
}
.Footer .Center {
   width: 985px;
   height: auto;
   margin: 0 auto;
}
.Footer .Center .Top {
   height: 72px;
   background: transparent url('../shbkat/footstart.jpg') repeat-x scroll left top;
   width: 985px;
}
.Footer .Center .Center {
   background: transparent url('../shbkat/footlogo.jpg') no-repeat scroll left top;
   height: 157px;
}
.Footer .Center .Center ul {
   float: right;
   width: 196px;
   direction: rtl;
   margin-right: 15px;
   margin-top: 18px;
}
.Footer .Center .Center li {
   display: inline;
}
.Footer .Center .Center li a {
   float: right;
   width: 196px;
   height: 28px;
   line-height: 26px;
   text-shadow: 0 1px 0 #2c1b13;
   border-bottom: 1px #845136 dotted;
   background-position: 10px;
   color: #b67451;
}
.Footer .Center .Center li a:hover {
   color: #e09168;
   border-bottom: 1px #e09168 dotted;
}
.Footer .Center .Bototm {
   height: 57px;
}
.Footer .Center .Bototm .Left {
   background: transparent url('../shbkat/footshbkat.jpg') no-repeat scroll right top;
   float: left;
   height: 57px;
   width: 123px;
   float: left;
}
.Footer .Center .Bototm .Right {
   float: right;
   width: 777px;
   height: 57px;
}
.Footer .Center .Bototm .Right ul {
   padding: 11px 14px 0 0;
}
.Footer .Center .Bototm .Right li {
   display: inline;
}
.Footer .Center .Bototm .Right li a {
   float: right;
   width: 107px;
   height: 42px;
   line-height: 33px;
   text-align: center;
   color: #eaf4d3;
   text-shadow: 0 1px 0 #383e2f;
   background: transparent;
   margin-left: 8px;
}
.Footer .Center .Bototm .Right li a:hover, .Footer .Center .Bototm .Right li.select a {
   background: transparent url('../shbkat/footnav.jpg') no-repeat scroll right top;
   text-shadow: 0 1px 0 #28130b;
   color: #eca78b;
}
/* css */
.Chat {
   float: right;
   width: 463px;
   height: 218px;
   margin-right: 25px;
   margin-left: 25px;
}
.ChatRight {
   float: right;
   width: 95px;
   height: 218px;
   background: transparent url('../shbkat/chat3.jpg') no-repeat scroll right top;
}
.ChatCenter {
   float: right;
   width: 237px;
   height: 218px;
   background: transparent url('../shbkat/chat2.jpg') no-repeat scroll right top;
}
.ChatApplet {
   width: 210px;
   height: 66px;
   margin: auto;
   margin-top: 66px;
}
.ChatLeft {
   float: right;
   width: 131px;
   height: 218px;
   background: transparent url('../shbkat/chat1.jpg') no-repeat scroll right top;
}
/* css */

هل من مساعد
عماد72
عماد72
 
 

ذكر
عدد المساهمات : 422
معدل النشاط : 6274
السُمعة : 1

https://www.ahlamontada.com/

الرجوع الى أعلى الصفحة اذهب الى الأسفل

ãÚáæãÉ رد: يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف Kimo Mimo الجمعة 11 أبريل 2014 - 14:37

تم مراسلتك ع الخاص
والأن عزيزي هل تم الحل .. ؟
Kimo Mimo
Kimo Mimo
 
 

ذكر
عدد المساهمات : 6840
معدل النشاط : 20068
السُمعة : 728

https://help.ahlamontada.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

ãÚáæãÉ رد: يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف عماد72 الجمعة 11 أبريل 2014 - 15:04

Kimo Mimo كتب:تم مراسلتك ع الخاص
والأن عزيزي هل تم الحل .. ؟

ليس بعد احي كما تعلم ان صفحة css مليئة بالكواد و يجب ان اعيد رفعها في كل مرة

عماد72
عماد72
 
 

ذكر
عدد المساهمات : 422
معدل النشاط : 6274
السُمعة : 1

https://www.ahlamontada.com/

الرجوع الى أعلى الصفحة اذهب الى الأسفل

ãÚáæãÉ رد: يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف Kimo Mimo الجمعة 11 أبريل 2014 - 15:20

نعم اعلم عزيزي ان الإمر قد يتطلب منك جهد ووقت كبير
لكن في النهاية ستحل المشكل في الطريقه مجربه عزيزي Cool
Kimo Mimo
Kimo Mimo
 
 

ذكر
عدد المساهمات : 6840
معدل النشاط : 20068
السُمعة : 728

https://help.ahlamontada.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

ãÚáæãÉ رد: يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف Michael_vx الجمعة 11 أبريل 2014 - 15:30

بعد اذنك كيمو
بحسب معرفتى الحاليه بالاكواد لو انت بتتكلم عن كود الخلفيه فانا ارى انه الكود ده
الكود:
    .Page {
      width: 985px;
      height: auto;
      overflow: hidden;
      margin: auto;
      background: transparent url('../shbkat/pagebg.jpg') repeat-y scroll center top;
    }
وممكن كمان تجمع اللى انت عايزه بسهوله يعنى مثلا لو انت عايز كل شىء بيتحكم بلون او صورة فقط ابحث عن background
وباذن الله تكون مشكله سهله
avatar
Michael_vx
 
 

ذكر
عدد المساهمات : 1066
معدل النشاط : 7940
السُمعة : 69

https://www.vxblog.eu

الرجوع الى أعلى الصفحة اذهب الى الأسفل

ãÚáæãÉ رد: يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف عماد72 الجمعة 11 أبريل 2014 - 16:41

اخي Michael_vx بعد التجربة

ليس هو الكود المقصود
عماد72
عماد72
 
 

ذكر
عدد المساهمات : 422
معدل النشاط : 6274
السُمعة : 1

https://www.ahlamontada.com/

الرجوع الى أعلى الصفحة اذهب الى الأسفل

ãÚáæãÉ رد: يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف Kimo Mimo الجمعة 11 أبريل 2014 - 16:42

عزيزي شرحت لك طريقه
لا يمكن بعدها ان تحصل ع كود غير صحيح بل سيكون هو بالضبط ما تريده
Kimo Mimo
Kimo Mimo
 
 

ذكر
عدد المساهمات : 6840
معدل النشاط : 20068
السُمعة : 728

https://help.ahlamontada.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

ãÚáæãÉ رد: يمكن من احد الخبراء ان يستخرج لي الكود الذي يغير لون الخلفية

مُساهمة من طرف عماد72 الجمعة 11 أبريل 2014 - 17:49

شكرااا اخواني Kimo Mimo و Michael_vx

تم الحل بفضل الله ثم توجهاتكم و تعاونكم شكرااا
الكود هو

الكود:
:hover.alt1 {
   background: #FFFFFF;
}
:hover.alt2 {
   background: #FFFFFF;
}
:hover.alt1Active {
   background: #FFFFFF;
}


جعلها الله في ميزان حسناتكم
عماد72
عماد72
 
 

ذكر
عدد المساهمات : 422
معدل النشاط : 6274
السُمعة : 1

https://www.ahlamontada.com/

الرجوع الى أعلى الصفحة اذهب الى الأسفل

الرجوع الى أعلى الصفحة

- مواضيع مماثلة

 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى