اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

2 مشترك

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الأربعاء 1 يوليو 2015 - 21:43

انا استخدم هذا الكود
الكود:
    /***
    * Syntax Highlighter funtionality for Forumotion!
    * (c) hamsahaq
    * Version: 1.28082013-jq1.9.1
    * Made by JScript - 2013/12/16
    */
    jQuery(function () {
        var sCSS = '<style>' +
            '/***' +
            '* Syntax Highlighter funtionality for Forumotion!' +
            '* CSS: .codebox dd.cont_code' +
            '* (c)  hamsahaqo' +
            '* Version: 1.28082013-jq1.9.1' +
            '* Made by JScript - 2013/12/16' +
            '*/' +
            'code.punbb_block, pre.punbb_block {' +
            '  background-color: #FAFAFA !important;' +
            '  border: 1px solid #C9C9C9 !important;' +
            '  color: #000000;' +
            '  font-family: Consolas,"Bitstream Vera Sans Mono","Andale Mono",Monaco,"DejaVu Sans Mono","Lucida Console",monospace !important;' +
            '  font-size: 11px !important;' +
            '  line-height: 110% !important;' +
            '  max-height: 250px !important;' +
            '  overflow: auto !important;' +
            '  padding: 5px !important;' +
            '  white-space: pre-wrap !important;' +
            '  width: auto !important;' +
            '}' +
            '.punbbtop {' +
            '  background-color: #FFDEAD !important;' +
            '  color: #1D3652;' +
            '  font-size: 10px;' +
            '  font-weight: bold;' +
            '  line-height: 100%;' +
            '  margin-top: 5px;' +
            '  padding: 2px 1px 2px 3px;' +
            '}' +
            '.punbbtop button {' +
            '  background: -moz-linear-gradient(center top , #EDEDED 5%, #DFDFDF 100%) repeat scroll 0 0 #EDEDED;' +
            '  border: 1px solid #BBBBBB;' +
            '  border-radius: 3px 3px 3px 3px;' +
            '  color: #1D3652;' +
            '  cursor: pointer;' +
            '  display: inline-block;' +
            '  font-size: 10px;' +
            '  padding: 0 6px;' +
            '  text-decoration: none;' +
            '}' +
            '.punbbtop button:hover {' +
            '  background: -moz-linear-gradient(center top , #DFDFDF 5%, #EDEDED 100%) repeat scroll 0 0 #DFDFDF;' +
            '  border-color: #9A9A9A;' +
            '  color: #3D70A3;' +
            '}' +
            '.punbbtop button:active {' +
            '  position: relative;' +
            '  top: 1px;' +
            '}' +
            'pre.punbb_block.expand, code.punbb_block.expand {' +
            '  max-height: 100% !important;' +
            '}' +
            '.prettyprint ol.linenums {' +
            '  padding-left: 15px !important;' +
            '}' +
            '</style>';
        jQuery(sCSS).insertBefore('#page-body');
   
        if (jQuery('.cont_code').length) {
            var tagCode = jQuery('.cont_code');
        } else {
            if (jQuery('.cont_code').length) {
                var tagCode = jQuery('.code');
            } else {
                var tagCode = jQuery('code');       
            }
        }
        tagCode.each(function () {
            var sContent = jQuery(this).html();
            var codebox = jQuery(this).parent().parent();
            codebox.before('<div class="punbbtop">  تظليل المحتوى    <button onclick="punbbExpand(this); return false;">تكبير</button><button style="display: none" onclick="punbbCollapse(this); return false;">تصغير</button>  <button onclick="punbbSelect(this); return false;">انسخ</button>  <button onclick="punbbPopup(this); return false;">نافذة</button>  <button style="margin-right: 50px; float: right;" onclick="punbbAbout(this); return false;"></button></div><pre class="highlight punbb_block">' + sContent + '</pre>');
            codebox.remove();
        });
        jQuery.getScript('http://balupton.github.io/jquery-syntaxhighlighter/scripts/jquery.syntaxhighlighter.min.js', function () {
            jQuery.SyntaxHighlighter.init({
                'wrapLines': false
            })
        })
    });
    function punbbExpand(oThis) {
        jQuery(oThis).css('display', 'none');
        jQuery(oThis).next().css('display', '');
        jQuery(oThis).parent().next('pre.punbb_block').addClass('expand');
    }
    function punbbCollapse(oThis) {
        jQuery(oThis).css('display', 'none');
        jQuery(oThis).prev().css('display', '');
        jQuery(oThis).parent().next('pre.punbb_block').removeClass('expand');
    }
    function punbbPopup(oThis) {
        var content = jQuery(oThis).parent().next('pre.punbb_block').html();
        var my_window = window.open("","PunBB_Code","scrollbars=1,toolbar=no,menubar=no,personalbar=no,status=0,left=0,location=0,menubar=0,top=0,width=640,height=480");
   
        my_window.document.write('<pre>'+content+'</pre>');
    }
    function punbbAbout(oThis) {
        alert('Simple code to add Syntax Highlighter fuctionality for Forumotion\n\hamsahaq - 2013/12/16\n');
    }
    function punbbSelect(oThis) {
        var doc = document;
        var text = jQuery(oThis).parent().next('pre.punbb_block')[0];
        if (doc.body.createTextRange) {
            var range = doc.body.createTextRange();
            range.moveToElementText(text);
            range.select();
        } else if (window.getSelection) {
            var selection = window.getSelection();
            var range = doc.createRange();
            range.selectNodeContents(text);
            selection.removeAllRanges();
            selection.addRange(range);       
        }
    }


اريد التعديل عليه بحيث لا يظهر هذا الرقيم
اقصد
1.
2.
3.

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  15doy1z
https://2img.net/h/oi60.tinypic.com/15doy1z.png

و شكرا
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف YasirAyad الأربعاء 1 يوليو 2015 - 22:26

مرحبا بك

جرب الان
الكود:
/***
    * Syntax Highlighter funtionality for Forumotion!
    * (c) hamsahaq
    * Version: 1.28082013-jq1.9.1
    * Made by JScript - 2013/12/16
    */
    jQuery(function () {
        var sCSS = '<style>' +
            '/***' +
            '* Syntax Highlighter funtionality for Forumotion!' +
            '* CSS: .codebox dd.cont_code' +
            '* (c)  hamsahaqo' +
            '* Version: 1.28082013-jq1.9.1' +
            '* Made by JScript - 2013/12/16' +
            '*/' +
            'code.punbb_block, pre.punbb_block {' +
            '  background-color: #FAFAFA !important;' +
            '  border: 1px solid #C9C9C9 !important;' +
            '  color: #000000;' +
            '  font-family: Consolas,"Bitstream Vera Sans Mono","Andale Mono",Monaco,"DejaVu Sans Mono","Lucida Console",monospace !important;' +
            '  font-size: 11px !important;' +
            '  line-height: 110% !important;' +
            '  max-height: 250px !important;' +
            '  overflow: auto !important;' +
            '  padding: 5px !important;' +
            '  white-space: pre-wrap !important;' +
            '  width: auto !important;' +
            '}' +
            '.punbbtop {' +
            '  background-color: #FFDEAD !important;' +
            '  color: #1D3652;' +
            '  font-size: 10px;' +
            '  font-weight: bold;' +
            '  line-height: 100%;' +
            '  margin-top: 5px;' +
            '  padding: 2px 1px 2px 3px;' +
            '}' +
            '.punbbtop button {' +
            '  background: -moz-linear-gradient(center top , #EDEDED 5%, #DFDFDF 100%) repeat scroll 0 0 #EDEDED;' +
            '  border-radius: 3px 3px 3px 3px;' +
            '  color: #1D3652;' +
            '  cursor: pointer;' +
            '  display: inline-block;' +
            '  font-size: 10px;' +
            '  padding: 0 6px;' +
            '  text-decoration: none;' +
            '}' +
            '.punbbtop button:hover {' +
            '  background: -moz-linear-gradient(center top , #DFDFDF 5%, #EDEDED 100%) repeat scroll 0 0 #DFDFDF;' +
            '  border-color: #9A9A9A;' +
            '  color: #3D70A3;' +
            '}' +
            '.punbbtop button:active {' +
            '  position: relative;' +
            '  top: 1px;' +
            '}' +
            'pre.punbb_block.expand, code.punbb_block.expand {' +
            '  max-height: 100% !important;' +
            '}'  +
            '</style>';
        jQuery(sCSS).insertBefore('#page-body');
   
        if (jQuery('.cont_code').length) {
            var tagCode = jQuery('.cont_code');
        } else {
            if (jQuery('.cont_code').length) {
                var tagCode = jQuery('.code');
            } else {
                var tagCode = jQuery('code');       
            }
        }
        tagCode.each(function () {
            var sContent = jQuery(this).html();
            var codebox = jQuery(this).parent().parent();
            codebox.before('<div class="punbbtop">  تظليل المحتوى    <button onclick="punbbExpand(this); return false;">تكبير</button><button style="display: none" onclick="punbbCollapse(this); return false;">تصغير</button>  <button onclick="punbbSelect(this); return false;">انسخ</button>  <button onclick="punbbPopup(this); return false;">نافذة</button>  <button style="margin-right: 50px; float: right;" onclick="punbbAbout(this); return false;"></button></div><pre class="highlight punbb_block">' + sContent + '</pre>');
            codebox.remove();
        });
        jQuery.getScript('http://balupton.github.io/jquery-syntaxhighlighter/scripts/jquery.syntaxhighlighter.min.js', function () {
            jQuery.SyntaxHighlighter.init({
                'wrapLines': false
            })
        })
    });
    function punbbExpand(oThis) {
        jQuery(oThis).css('display', 'none');
        jQuery(oThis).next().css('display', '');
        jQuery(oThis).parent().next('pre.punbb_block').addClass('expand');
    }
    function punbbCollapse(oThis) {
        jQuery(oThis).css('display', 'none');
        jQuery(oThis).prev().css('display', '');
        jQuery(oThis).parent().next('pre.punbb_block').removeClass('expand');
    }
    function punbbPopup(oThis) {
        var content = jQuery(oThis).parent().next('pre.punbb_block').html();
        var my_window = window.open("","PunBB_Code","scrollbars=1,toolbar=no,menubar=no,personalbar=no,status=0,left=0,location=0,menubar=0,top=0,width=640,height=480");
   
        my_window.document.write('<pre>'+content+'</pre>');
    }
    function punbbAbout(oThis) {
        alert('Simple code to add Syntax Highlighter fuctionality for Forumotion\n\hamsahaq - 2013/12/16\n');
    }
    function punbbSelect(oThis) {
        var doc = document;
        var text = jQuery(oThis).parent().next('pre.punbb_block')[0];
        if (doc.body.createTextRange) {
            var range = doc.body.createTextRange();
            range.moveToElementText(text);
            range.select();
        } else if (window.getSelection) {
            var selection = window.getSelection();
            var range = doc.createRange();
            range.selectNodeContents(text);
            selection.removeAllRanges();
            selection.addRange(range);       
        }
    }

اذا لم ينجح الامر اعطيني الموضوع الذي وضعته به هذه الاكواد
YasirAyad
YasirAyad
 
 

ذكر
عدد المساهمات : 10113
معدل النشاط : 15293
السُمعة : 297

http://yasirayad.com/

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الأربعاء 1 يوليو 2015 - 22:37

لم ينجح رابط الموضوع : اى موضوع عندى فى المنتدى فيه كود و ليكن هذا : http://l7ty-opar.montadalitihad.com/t1763-topic

و إن كنت تقصد رابط مواضوع مصدر الكود نفسه : http://alhoub.arab.st/t2807-topic
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف YasirAyad الأربعاء 1 يوليو 2015 - 22:48

حسننا جرب الان

الكود:
  /***
    * Syntax Highlighter funtionality for Forumotion!
    * (c)
    * Version: 1.28082013-jq1.9.1
    * Made by JScript - 2013/12/16
    */
    jQuery(function () {
        var sCSS = '<style>' +
            '/***' +
            '* Syntax Highlighter funtionality for Forumotion!' +
            '* CSS: .codebox dd.cont_code' +
            '* (c)  hamsahaqo' +
            '* Version: 1.28082013-jq1.9.1' +
            '* Made by JScript - 2013/12/16' +
            '*/' +
            'code.punbb_block, pre.punbb_block {' +
            '  background-color: #FAFAFA !important;' +
            '  border: 1px solid #C9C9C9 !important;' +
            '  color: #000000;' +
            '  font-family: Consolas,"Bitstream Vera Sans Mono","Andale Mono",Monaco,"DejaVu Sans Mono","Lucida Console",monospace !important;' +
            '  font-size: 11px !important;' +
            '  line-height: 110% !important;' +
            '  max-height: 250px !important;' +
            '  overflow: auto !important;' +
            '  padding: 5px !important;' +
            '  white-space: pre-wrap !important;' +
            '  width: auto !important;' +
            '}' +
            '.punbbtop {' +
            '  background-color: #FFDEAD !important;' +
            '  color: #1D3652;' +
            '  font-size: 10px;' +
            '  font-weight: bold;' +
            '  line-height: 100%;' +
            '  margin-top: 5px;' +
            '  padding: 2px 1px 2px 3px;' +
            '}' +
            '.punbbtop button {' +
            '  background: -moz-linear-gradient(center top , #EDEDED 5%, #DFDFDF 100%) repeat scroll 0 0 #EDEDED;' +
            '  border: 1px solid #BBBBBB;' +
            '  border-radius: 3px 3px 3px 3px;' +
            '  color: #1D3652;' +
            '  cursor: pointer;' +
            '  display: inline-block;' +
            '  font-size: 10px;' +
            '  padding: 0 6px;' +
            '  text-decoration: none;' +
            '}' +
            '.punbbtop button:hover {' +
            '  background: -moz-linear-gradient(center top , #DFDFDF 5%, #EDEDED 100%) repeat scroll 0 0 #DFDFDF;' +
            '  border-color: #9A9A9A;' +
            '  color: #3D70A3;' +
            '}' +
            '.punbbtop button:active {' +
            '  position: relative;' +
            '  top: 1px;' +
            '}' +
            'pre.punbb_block.expand, code.punbb_block.expand {' +
            '  max-height: 100% !important;' +
            '}' +
            '.prettyprint ol.linenums {' +
            '  padding-left: 15px !important;' +
            '}' +
            '</style>';
        jQuery(sCSS).insertBefore('#page-body');
   
        if (jQuery('.cont_code').length) {
            var tagCode = jQuery('.cont_code');
        } else {
            if (jQuery('.cont_code').length) {
                var tagCode = jQuery('.code');
            } else {
                var tagCode = jQuery('code');       
            }
        }
        tagCode.each(function () {
            var sContent = jQuery(this).html();
            var codebox = jQuery(this).parent().parent();
            codebox.before('<div class="punbbtop">  تظليل المحتوى    <button onclick="punbbExpand(this); return false;">تكبير</button><button style="display: none" onclick="punbbCollapse(this); return false;">تصغير</button>  <button onclick="punbbSelect(this); return false;">انسخ</button>  <button onclick="punbbPopup(this); return false;">نافذة</button>  <button style="margin-right: 50px; float: right;" onclick="punbbAbout(this); return false;"></button></div><pre class="highlight punbb_block">' + sContent + '</pre>');
            codebox.remove();
        });
        jQuery.getScript('http://balupton.github.io/jquery-syntaxhighlighter/scripts/jquery.syntaxhighlighter.min.js', function () {
            jQuery.SyntaxHighlighter.init({
                'wrapLines': false
            })
        })
    });
    function punbbExpand(oThis) {
        jQuery(oThis).css('display', 'none');
        jQuery(oThis).next().css('display', '');
        jQuery(oThis).parent().next('pre.punbb_block').addClass('expand');
    }
   
    function punbbPopup(oThis) {
        var content = jQuery(oThis).parent().next('pre.punbb_block').html();
        var my_window = window.open("","PunBB_Code","scrollbars=1,toolbar=no,menubar=no,personalbar=no,status=0,left=0,location=0,menubar=0,top=0,width=640,height=480");
   
        my_window.document.write('<pre>'+content+'</pre>');
    }
    function punbbAbout(oThis) {
        alert('Simple code to add Syntax Highlighter fuctionality for Forumotion\n\hamsahaq - 2013/12/16\n');
    }
    function punbbSelect(oThis) {
        var doc = document;
        var text = jQuery(oThis).parent().next('pre.punbb_block')[0];
        if (doc.body.createTextRange) {
            var range = doc.body.createTextRange();
            range.moveToElementText(text);
            range.select();
        } else if (window.getSelection) {
            var selection = window.getSelection();
            var range = doc.createRange();
            range.selectNodeContents(text);
            selection.removeAllRanges();
            selection.addRange(range);       
        }
    }
YasirAyad
YasirAyad
 
 

ذكر
عدد المساهمات : 10113
معدل النشاط : 15293
السُمعة : 297

http://yasirayad.com/

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الأربعاء 1 يوليو 2015 - 22:52

لم ينجح
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الأربعاء 1 يوليو 2015 - 22:53

هل يمكن ان يكون السبب كود CSS ؟
اضع لك كود ال CSS إن كان ذلك
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف YasirAyad الأربعاء 1 يوليو 2015 - 22:54

انا عند وضعه في منتداي التجريبي وعلى css الاصلي للمنتدى لا تظهر لدي الأرقام

عموما ضع لي اكواد css
YasirAyad
YasirAyad
 
 

ذكر
عدد المساهمات : 10113
معدل النشاط : 15293
السُمعة : 297

http://yasirayad.com/

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الأربعاء 1 يوليو 2015 - 22:56

اتفضل ارجو حذف الترقيم فقط

الكود:
 

/*-----وضع خلفية لاسم الموضوع و لون له -----*/
h1.cattitle {
          display: inline;
          margin: 0;
          padding: 0;
          padding: 4px 6px;
          font-size: 100%;
          color: #fff;
          background-color: #323;
          border-radius: 3px;
          -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
          box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
        } 

/*-----وضع خلفية لاسم الموضوع و لون له -----*/


/*-----Programming code byMahmoud TalaaT& sam hameed-----*/
    #lbOverlay{
      position:fixed;z-index: 999;
      left:0;
      top:0;
      width:100%;
      height:100%;
      Mahmoud TalaaT;
      background-color:#000;
      cursor:pointer;
    }
    #lbCenter,#lbBottomContainer{
      position:absolute;
    Mahmoud TalaaT;
      z-index: 999;overflow:hidden;
      background-color:#fff;
    }
    .lbLoading{
      background:#fff url(http://i27.servimg.com/u/f27/14/67/90/38/novfao10.gif) no-repeat center;
    }
    #lbImage{
      position:absolute;left:0;top:0;border:10px solid #fff;background-repeat:no-repeat;}
    #lbPrevLink,#lbNextLink{
      display:block;
    Mahmoud TalaaT;
      position:absolute;
      top:0;
      width:50%;
      outline:none;
    }
    #lbPrevLink{
      left:0;
    }
    #lbPrevLink:hover{
      background:transparent url(http://i41.servimg.com/u/f41/14/81/17/27/211.png) no-repeat 0 15%;
    }
    #lbNextLink{
      right:0;}
    #lbNextLink:hover{
      background:transparent url(http://i41.servimg.com/u/f41/14/81/17/27/310.png) no-repeat 100% 15%;
    }
    #lbBottom{
      font-family:Verdana, Arial, Geneva, Helvetica, sans-serif;font-size:10px;color:#666;line-height:1.4em;
      text-align:left;
      Mahmoud TalaaT;
      border:10px solid #fff;
      border-top-style:none;
    }
    #lbCloseLink{
      display:block;
      float:right;
      Mahmoud TalaaT;
      width:66px;height:22px;
      background:transparent url(http://i41.servimg.com/u/f41/14/81/17/27/110.png) no-repeat center;
      outline:none;
      Mahmoud TalaaT;
      margin:5px 0;
    }
    #lbCaption,#lbNumber{
      margin-right:71px;
    }
    .postbody img{
      max-width:450px;
    }
    /*-----Programming code byMahmoudTalaat&samhamed-----*/





    .vote {        float: right;        width: 9px;        margin-right: 4px;        } 


    /*-----ahlamontada-----*/
   
   
   
    .ahlamontada {
          background-image:url("http://i66.servimg.com/u/f66/12/46/69/62/ice10.png");
        border-top-style: solid;
        border-right-style: solid;
        border-bottom-style: solid;
        border-top-color: #F8E5B2;
        border-right-color: #F8E5B2;
        border-bottom-color: #F8E5B2;
        height:18px;
        -moz-border-radius: 5px 5px 5px 5px;
       
    }
   
   
    /*-----ahlamontada- نهايه كود خلفيه عنوان المواضيع----*/
    #A7medvirus  {
            background-image: url("http://i66.servimg.com/u/f66/12/46/69/62/ice10.png");
            border: 1px solid #C0C0C0;
            border-radius: 15px 15px 15px 15px;
            margin: 0 auto;
            padding-bottom: 1px;
            padding-top: 1px;
            width: 20%;
   
        }
   
        #HiMa-ElMaSrY {
            background-image: url("http://i66.servimg.com/u/f66/12/46/69/62/ice10.png");
            border: 1px solid #C0C0C0;
            border-radius: 15px 15px 15px 15px;
            margin: 0 auto;
            padding-bottom: 1px;
            padding-top: 1px;
            width: 20%;
   
        }
 /*-----ahlamontada- نهايه كود خلفيه عنوان المواضيع----*/


    //*البيانات*/

    .twrank{
        -moz-border-radius-bottomleft: 8px;
        -moz-border-radius-bottomright: 8px;
        -moz-border-radius-topleft: 8px;
        -moz-border-radius-topright: 8px;
        border : 1px dashed #ff0404;
        border-width : 1px
        border-color : #fc0c0c;
        padding : 2px 2px;
        background-repeat : repeat;
        background-color : #f0feff;
        background-image : url();
        background-position : top;
        overflow : visible;
        vertical-align : middle;
        }
        /*Copyright a7medvirus*/
        .tw{
        -moz-border-radius-bottomleft: 8px;
        -moz-border-radius-bottomright: 8px;
        -moz-border-radius-topleft: 8px;
        -moz-border-radius-topright: 8px;
        border : 1px dashed #ff00b4;
        border-width : 1px
        border-color : #0d2477;
        padding : 2px 2px;
        background-repeat : repeat;
        background-color : #ffffff;
        background-image : url();
        background-position : top;
        overflow : visible;
        vertical-align : middle;
        }
    /* -2-hamsa-haq--كود لوضع خلفية الاقتباسات تشبه صفحات الدفتر وللجميع النسخ*/
        .codebox {
        display:block;
        border: 9px solid #EEEBDC;
        margin: 10px;
        padding: 0 10px 0 20px;
        background: #FFFEEE url('http://i56.servimg.com/u/f56/15/82/36/69/noteye10.gif') repeat;
        -moz-box-shadow: 1px 1px 0 #cfc9b7; 
          -webkit-box-shadow: 1px 1px 0 #CFC9B7;
        box-shadow: 1px 1px 0 #CFC9B7;
        font-size: 12px !important; 
        line-height: 21px;
        font-family: arial, helvetica, sans-serif !important; 
          font-style: italic !important;
          color: #696765; 
          position: relative;
        }
        .codebox dd, .codebox dt {
          border-top: none;
          border-bottom: none;
          border-right: none;
          border-left: 4px double #F3B3A9 !important;
        font-size: 12px !important; 
        padding-left: 15px; 
          background-color: transparent !important;
        line-height: 21px;
        }
        .codebox dt, .codebox dt span {
        font-weight: bold !important;
        color: #F00 !important;
        font-size: 12px !important;
        }
        .spoiler_content {
        background-color: transparent !important;
        border: none !important;
        font-size: 12px !important;
        color: #444;
        display: block;
        line-height: 21px;
        padding: 0;
        }
        /* css-2-hamsa-haq--كودالاقتباسات  وللجميع النسخ*/




        .post {
    text-align: center;
        }
   
    /*-----كود البينات الشخصية المطورة-----*/
    .name{
    background-image: url(http://i19.servimg.com/u/f19/19/19/65/30/untitl12.png);
    -moz-border-radius:15px;
    background-color: #f7f7f7;
    border-left:10px solid #15A9E8;
    border-right:10px solid #15A9E8;
    -webkit-box-shadow: 4px 4px 10px #333;
    -moz-box-shadow: 4px 4px 10px #333;
    box-shadow:  4px 4px 10px #333;
    font-size: 16px;
    font-weight: bold;
    display: block;
    overflow: auto;
    padding: 7px;
    }
   
    .poster-profile{
    background-image: url(http://i72.servimg.com/u/f72/14/92/70/14/sans_t10.png);
    -moz-border-radius:15px;
    background-color: #f7f7f7;
    border-left:10px solid #15A9E8;
    border-right:10px solid #15A9E8;
    -webkit-box-shadow: 4px 4px 10px #333;
    -moz-box-shadow: 4px 4px 10px #333;
    box-shadow:  4px 4px 10px #333;
    font-size: 16px;
    font-weight: bold;
    display: block;
    overflow: auto;
    padding: 7px;
    }
   
    .postdetails.poster-profile a img {
    max-width:700px;
    max-height:600px;
    -moz-box-shadow : 0 0 2px #666;
    -webkit-box-shadow : 0 0 2px #666;
    box-shadow : 0 0 6px #666;
    background-color: #feffc4 ;
    background-image: url('http://r11.imgfast.net/users/1114/51/96/65/smiles/46441.gif');
    background-repeat: repeat;
    border: 5px solid #FFFFFF;
    }
    /*-----كود البينات الشخصية المطورة-----*/


    /*a[href="/search?search_id=newposts"]

    ,a[href="/search?search_id=egosearch"]

    ,a[href="/search?search_id=unanswered"]

    ,a[href="/search?search_id=activetopics"]

    ,a[href="/memberlist?mode=today_posters"]

    ,a[href="/memberlist?mode=overall_posters"]

    ,a[href="/?mode=delete_cookies"]

    ,a[href="/?mark=forums"]

    ,a[href="/privmsg?folder=savebox"]

    {display:none;}تم التعطيل*/

/*

        .selectCode { float:right; text-transform: uppercase; cursor:pointer; } /*تحديد المحتوى*/
     

    /*a7medvirus Tutorial*/
        .code{
        max-height: 200px;
          overflow: auto;
          direction: ltr;
            display: block;
        }
    /*by: Traid web*/
       

        .postbody{font-size:16px;font-weight:700}
        .postbody img{max-width:650px}
        hr{-moz-border-radius:7px;
        background:url(http://im30.gulfup.com/2012-09-03/1346664374761.bmp);
        border:1px solid #fff;
        border-top-width:1px;
        height:5px
        }
        /*-----ط®ظ„ظپظ?ط© ظ„ظ„ظ…ط³ظ‡ظ…ط§ط?-----*/
        .poster-profile{
        -moz-border-radius-bottomleft:8px;
        -moz-border-radius-bottomright:8px;
        -moz-border-radius-topleft:8px;
        -moz-border-radius-topright:8px;
        background-image:url(http://i46.servimg.com/u/f46/17/46/68/31/sans_t28.jpg);
        border:1px dotted #000000;
        border-bottom:medium solid #1B507A;
        border-top:medium solid #1B507A;
        display:block;font-size:11px;font weight:700;margin:3px;padding:7px}
        /*-----mytet1-----*/
        .postdetails.poster-profile a img {
        background-image: url(  );
        width: 110px;
        height: 240px;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 20px;
        }
        /*** ظƒظˆط¯ ظˆط¶ط¹ ط§ظ„ط¨ط³ظ…ظ„ظ‡ ط¨ط¯ظˆظ† ط®ط·ظˆط· ***/
    .hr {
    background: url(http://i15.servimg.com/u/f15/17/99/30/93/n2hr3a10.gif) no-repeat;
    background-position: top;
    text-align: center;
    vertical-align: text-bottom;
    padding: 0px 325px 210px;
    line-height: normal;
    }
    /*** ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط© ***/
        /*----- ط¸ظ„ ظ„ط±ظˆط§ط¨ط· ط§ظ„ط£ظ‚ط³ط§ظ… ط¹ظ†ط¯ ظ…ط±ظˆط± ط§ظ„ظ…ط§ظˆط³ -----*/
    a.forumlink:hover{
    -moz- text-shadow: 4px 4px 4px #000;
    -webkit- text-shadow: 4px 4px 4px #000;
    text-shadow: 4px 4px 4px #000;
    filter:progid:DXImageTransform.Microsoft.Shadow(color='#848282', Direction=115, Strength=2);
    zoom: 1;
    }
        body {
          background-attachment:fixed;
          background-repeat:no-repeat;
          background-position:top center;
          cursor: url("http://illiweb.com/Forum/cible.cur");
        }



    /***ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط©***/
        .postbody{font-size:17px;font-weight:700;line-height:2em;text-
        align:center;text-shadow:#FFFFFF 5px 5px 5px}a:link{text-decoration:none}



        #chatbox_main_options, #chatbox_main_options a, #chatbox_main_options span{
        color: #9a9a9a;
        text-shadow: 1px 1px 1px #ffffff;
        text-decoration:none;
        font-family: Arial Black;
        text-transform: uppercase;
        }
        #chatbox_main_options a:hover{
        color: grey;
        text-shadow: 1px 1px 1px #b8b8b8;
        text-decoration:none !important;
        font-family: Arial Black;
        text-transform: uppercase;
        }

        #chatbox_main_options {
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/untitl21.jpg) repeat-x;
        float: right;
        border: 1px solid #c9c9c9;
        margin-right: 50px;
        margin-top: -17px;
        padding: 2px 3px 1px 5px;
        border-radius: 0px 0px 5px 5px;
        -moz-border-radius: 0px 0px 5px 5px;
        -webkit-box-shadow: 0px 0px 4px #c6c6c6;
        box-shadow: 0px 0px 4px #c6c6c6;
        -moz-box-shadow: 0px 0px 4px #c6c6c6;
        }


        /* ط§ظ„ط§ظ‚ط³ط§ظ… ط¯ط§ط¦ط±ظ?ط© by c.ronaldo */
        td.row1 {
    background: url()[/url] no-repeat scroll right top #F4F4F4;
    border: 1px solid #C7C7C7;
    border-radius: 18px 18px 18px 18px;
    color: #707070;
    font-family: arial,helvetica,verdana;
    font-size: 16px;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    text-shadow: 2px 1px 1px #CECECE;
        }
        td.row2 {
    background: url()[/url] no-repeat scroll right top #F4F4F4;
    border: 1px solid #C7C7C7;
    border-radius: 18px 18px 18px 18px;
    color: #707070;
    font-family: arial,helvetica,verdana;
    font-size: 16px;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    text-shadow: 2px 1px 1px #CECECE;
        }
        td.row3 {
    background: url()[/url] no-repeat scroll right top #F4F4F4;
    border: 1px solid #C7C7C7;
    border-radius: 18px 18px 18px 18px;
    color: #707070;
    font-family: arial,helvetica,verdana;
    font-size: 16px;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    text-shadow: 2px 1px 1px #CECECE;
       
       
          #chatbox_main_options, #chatbox_main_options a, #chatbox_main_options span{
        color: #9a9a9a;
        text-shadow: 1px 1px 1px #ffffff;
        text-decoration:none;
        font-family: Arial Black;
        text-transform: uppercase;
        }
        #chatbox_main_options a:hover{
        color: grey;
        text-shadow: 1px 1px 1px #b8b8b8;
        text-decoration:none !important;
        font-family: Arial Black;
        text-transform: uppercase;
        }

        #chatbox_main_options {
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/untitl21.jpg) repeat-x;
        float: right;
        border: 1px solid #c9c9c9;
        margin-right: 50px;
        margin-top: -17px;
        padding: 2px 3px 1px 5px;
        border-radius: 0px 0px 5px 5px;
        -moz-border-radius: 0px 0px 5px 5px;
        -webkit-box-shadow: 0px 0px 4px #c6c6c6;
        box-shadow: 0px 0px 4px #c6c6c6;
        -moz-box-shadow: 0px 0px 4px #c6c6c6;
        }
        #chatbox_main_options:hover {
        margin-top: -7px;
        }

        /*----------------ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط©----------------*/
        #chatbox_messenger .catBottom{
        background: none !important;
        }
        #chatbox_messenger_form {
        width: 550px;
        background: none !important;
        float: none !important;
        bottom: 0px ;
        position: fixed;
        z-index: 999;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        }
        .chatfootertable {
        -webkit-box-shadow: 0px 0px 4px #d4d4d4;
        box-shadow: 0px -0px 4px #d4d4d4;
        -moz-box-shadow: 0px 0px 4px #d4d4d4;
        box-shadow: 0px 0px 4px #c6c6c6;
        -moz-box-shadow: 0px 0px 4px #c6c6c6;
        border-top: 1px solid #c9c9c9;
        border-left: 1px solid #c9c9c9;
        border-right: 1px solid #c9c9c9;
        border-bottom: 0px;
        height: 30px;
        border-radius: 5px 5px 0px 0px;
        -moz-border-radius: 5px 5px 0px 0px;
        background-color: #ffffff;
        background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f9f9f9));
        background: -moz-linear-gradient(top, #ffffff, #e2e2e2);
        }
        .chatfootertable:hover {
        border-top: 1px solid #a7a7a7;
        border-left: 1px solid #a7a7a7;
        border-right: 1px solid #a7a7a7;
        }
        .text-styles {
        color: grey;
        }
        #divbold, #divitalic, #divunderline, #divstrike, #divcolor, #divsmilies {
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/110.jpg) repeat-x;
        border: 1px solid #c9c9c9;
        background-color: #ffffff;
        border-radius: 3px;
        -moz-border-radius: 3px;
        }
        #divbold:hover, #divitalic:hover, #divunderline:hover, #divstrike:hover, #divcolor:hover, #divsmilies:hover {
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/hover10.jpg) repeat-x;
        border: 1px solid #a2a2a2;
        }
        #divbold:active, #divitalic:active, #divunderline:active, #divstrike:active, #divcolor:active, #divsmilies:active {
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/active10.jpg) repeat-x;
        }
        .gen label input#message {
        height: 17px;
        font-size: 12px;
        border: 1px solid #c9c9c9;
        background-color: #ffffff;
        border-radius: 3px;
        -moz-border-radius: 3px;
        }
        .gen label input#message:hover {
        border: 1px solid #b2b2b2;
        background-color: #f5f5f5;
        }
        .gen label input#message:focus {
        border: 1px solid #a4a4a4;
        background-color: #e0fdff;
        }
        .gen input#submit_button {
        cursor: pointer;
        color: #929292;
        font-family: Arial Black;
        text-transform: uppercase;
        font-size: 12px;
        padding-left: 2px;
        padding-right: 2px;
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/110.jpg) repeat-x;
        border: 1px solid #c9c9c9;
        background-color: #ffffff;
        border-radius: 3px;
        -moz-border-radius: 3px;
        }
        .gen input#submit_button:hover {
        color: #2c2c2c;
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/hover10.jpg) repeat-x;
        border: 1px solid #a2a2a2;
        }
        .gen input#submit_button:active {
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/active10.jpg) repeat-x;
        }
        }


        /*-----ط§ظ„ط§ظ‚ط³ط§ظ… ظپظˆظ‚-----*/
        span.forumlink,Ali Nani  {
        display: block;
        width: 400px;
        Ali Nani;
        height: 23px;
        vertical-align: middle;
        text-align: center;
        Ali Nani;
        background-image: url('http://i30.servimg.com/u/f30/17/80/83/35/sans_t40.png');
        background-color: transparent;
        margin-top: -5px;
        Ali Nani;
        margin-left: auto;
        margin-right: auto;
        Ali Nani;
        border: 0;
        }



        #quick_reply #text_editor_controls {
    background-color: #E5F1F9;
    border-radius: 8px 8px 8px 8px;
    height: 35px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    width: 500px;
        }
        #quick_reply #text_editor_controls .button2 {
    background-color: transparent;
    background-image: none;
    border: 0 none;
    border-radius: 7px 7px 7px 7px;
    opacity: 0.7;
    padding: 1px !important;
        }
        #quick_reply a.button2:hover, #quick_reply button.button2:hover {
    background-color: #DCEAF5 !important;
    border: 0 none;
    opacity: 1 !important;
        }
        #quick_reply button.bbcode.button2 {
    background-color: #E3CED2 !important;
    box-shadow: 0 0 10px #E3ADAD;
    opacity: 1;
        }
        #quick_reply button.bbcode:hover {
    background-color: #E3CED2;
        }
        #servimg_upload_gui p {
    margin: 0 !important;
        }
        #servimg_upload_gui iframe {
    border: 0 none;
    margin: 0;
        }
        #servimg_upload_gui, div#color.select, div#img.select, div#other.select, div#sel_smilies.select, div#url.select {
    box-shadow: 0 0 4px;
        }
        /*---------ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط©-----------*/
        a:visited
        {
        text-decoration: none;
        }

        a:active
        {
        text-decoration: none;
        }

        a:hover
        {
        text-decoration: none;
        }
        /*---------طµظˆط±ط© ظ„ظ„ط­ظ‚ظˆظ‚ ط§ط³ظپظ„ ط§ظ„ظ…ظ†ط?ط¯ظ‰-----------*/
        .forumline{
    background-color: #C2C2C2;
    border: 0;
          background: #109CCD url(http://i36.servimg.com/u/f36/17/06/15/26/oouu_o34.png) no-repeat;
        padding: 64px 5px 5px 5px;
        background-position: top;
        -moz-border-radius-bottomleft: 1px;
        -moz-border-radius-bottomright: 1px;
        -moz-border-radius-topleft: 1px;
        -moz-border-radius-topright: 1px;
        border:5px solid #;
        }
        .bodyline{
        background:#fff url(http://i36.servimg.com/u/f36/17/06/15/26/sokar116.jpg) repeat scroll !important;
    background-color: #ffffff;
      border:1px solid #E6E6E6;
        border:0;
        padding:0;
        margin:0;
          }
        body{
        padding:0;
        margin:0;
        background-position:center;
        }

        .row1

        {
        border:1px outset#E6E6E6;
        background : url(http://i36.servimg.com/u/f36/17/06/15/26/sokar116.jpg);
        }
        .row2
        {
        border:1px outset#E6E6E6;
        background : url(http://i36.servimg.com/u/f36/17/06/15/26/ouuus310.jpg);
        }
        .row3
        {
        border:1px outset#E6E6E6;
        background : url(http://i36.servimg.com/u/f36/17/06/15/26/ouuus311.jpg);
        }
        td.row3Right,td.spaceRow {
        border:1px outset#E6E6E6;
        background : url(http://i36.servimg.com/u/f36/17/06/15/26/ouuus311.jpg);
        }
        tr.post td {

    text-align: center;

        }
        a{
        text-decoration:none;
        }
        a:hover{
        text-decoration:none;
        }
        a:focus{
        outline:none;
        }
        a.forumlink:hover{
        text-decoration:none;
        }







        /*ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط© */
    tr.post td {

        text-align: center;

    }
      .fade {
        display:inline-block;
        background: -moz-linear-gradient(left, rgb(250,250,250) 0%, rgba(250,250,250,0) 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0.00, rgb(250,250,250)), color-stop(1.00, rgba(250,250,250,0)));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fafafa, endColorstr=#00fafafa, GradientType=1);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#fafafa, endColorstr=#00fafafa, GradientType=1)";
      }
      .blur {
        display:inline-block;
        color:#ddd;
        text-shadow: 0 0 2px #aaaaaa;
        text-shadow: 0 0 4px #aaaaaa;
        text-shadow: 0 0 6px #aaaaaa;
        -ms-filter: "progid:DXImageTransform.Microsoft.Blur(pixelradius=2)";
        filter:
            progid:DXImageTransform.Microsoft.MotionBlur(strength=1,direction=310)
            progid:DXImageTransform.Microsoft.Blur(pixelradius=2);
      }
      .flipH {
        display:inline-block;
        -moz-transform:scale(-1,1);
        -o-transform:scale(-1,1);
        -webkit-transform:scale(-1,1);
        transform:scale(-1,1);
        -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=-1, M12=0, M21=0, M22=1, SizingMethod='auto expand')";
        filter: progid:DXImageTransform.Microsoft.Matrix(
            M11=-1,
            M12=0,
            M21=0,
            M22=1,
            SizingMethod="auto expand");
      }
      .flipV {
        display:inline-block;
        -moz-transform:scale(1,-1);
        -o-transform:scale(1,-1);
        -webkit-transform:scale(1,-1);
        transform:scale(1,-1);
        -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=-1, SizingMethod='auto expand')";
        filter: progid:DXImageTransform.Microsoft.Matrix(
            M11=1,
            M12=0,
            M21=0,
            M22=-1,
            SizingMethod="auto expand");
      }






    /*--------------ط§ظ„ط§ظ?ط© ط§ظ„ظƒط±ظ?ظ…ط© ---------------*/
    form#quick_reply{
    background:url(http://i12.servimg.com/u/f12/14/62/10/11/uousuu11.gif) no-repeat right ;
    padding:30px 10px 10px 10px;
    background-position: top center;
    }
          /*---------ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط© -----------*/



        function stop(){
        if(TimerRunning)
        clearTimeout(timerID);
        TimerRunning = false;
        }
        function display() {
        var thedate = new Date();
        var hours = thedate.getHours();
        var Min = thedate.getMinutes();
        var Sec = thedate.getSeconds();
        var TimeV = "" + ((hours >12) ? hours -12 :hours)
        TimeV += ((Min < 10) ? ":0" : ":") + Min
        TimeV += ((Sec < 10) ? ":0" : ":") + Sec
        TimeV += (hours >= 12) ? " PM" : " AM"
        window.status = TimeV;
        timerID = setTimeout("display()",1000);
        TimerRunning = true;
        }
        function start() {
        stop();
        display();
        }
        .qreply {
        background:url(http://i12.servimg.com/u/f12/14/62/10/11/uousuu11.gif) no-repeat right ;
        padding:30px 10px 10px 10px;
        background-position: top center;
        background-color: #ffbbe1;
        border: 1px Dotted #000000;
        }
        .messaging-box {
        background:url(http://i12.servimg.com/u/f12/14/62/10/11/uousuu11.gif) no-repeat right ;
        padding:30px 10px 10px 10px;
        background-position: top center;
        background-color: #ffd7ed;
        border: 1px Dotted #000000;
        }




        .postdetails.poster-profile a img {
        background-image: url('http://i88.servimg.com/u/f88/11/88/59/12/2iscw010.png');

        -moz-border-radius:7px;
        -webkit-border-radius:7px;
        border: 3px solid #000000;
        }




        #page-footer {
        border : 0px dashed #C9C8C8;
        background : #E6E6E6 url(ط?ط?);
        .renklibar {
        color : #000000;
        background : #000000
        url(http://i45.tinypic.com/14nfrjs.jpg) no-repeat 0 5px;
        border : 1px
        solid #000000;
        margin : 1px;
        padding : 10px 5px 10px 40px;
        font-size
        : x-small;
        line-height : 1.4em;
        }

        .resize_process
        .resizebox  {
        display : none;
        margin-left : 15px;
        }
        .resizebox
        div {
        font-weight : normal;
        font-style : normal;
        margin : 0;
        }
        .resizebox.enlarged
        a.enlarge {
        display : none;
        }
        .resizebox.enlarged a.resize {
        display
        : inline-block;
        }
        .resizebox a.resize {
        display : none;
        }
        .resizebox
        {
        background : #000000 url("http://i43.tinypic.com/af9egz.gif")
        no-repeat 7px 4px;
        max-width : 100%;
        line-height : 1.1em;
        cursor
        : default;
        font-weight : normal;
        font-style : normal;
        margin :
        0;
        text-align : center;
        display : inline-block;
        }
        .resizebox
        .resize_border {
        border : 1px solid #BDBDBD;
        display : block;
        }
       

        .eklentiler {
        color : #000000;
        background : #ffffff;
        border
        : 1px solid #000000;
        margin : 1px;
        padding : 10px 5px 10px 40px;
        font-size
        : x-small;
        line-height : 1.4em;
        }
        }


        function stop(){
        if(TimerRunning)
        clearTimeout(timerID);
        TimerRunning = false;
        }
        function display() {
        var thedate = new Date();
        var hours = thedate.getHours();
        var Min = thedate.getMinutes();
        var Sec = thedate.getSeconds();
        var TimeV = "" + ((hours >12) ? hours -12 :hours)
        TimeV += ((Min < 10) ? ":0" : ":") + Min
        TimeV += ((Sec < 10) ? ":0" : ":") + Sec
        TimeV += (hours >= 12) ? " PM" : " AM"
        window.status = TimeV;
        timerID = setTimeout("display()",1000);
        TimerRunning = true;
        }
        function start() {
        stop();
        display();
        }


        /*ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط© */
    .name{
    background-image: url(http://i36.servimg.com/u/f36/17/06/15/26/ouuus311.jpg);
    -moz-border-radius:15px;
    background-color: #f7f7f7;
    border-left:5px solid #129FD4;
    border-right:5px solid #129FD4;
    -webkit-box-shadow: 4px 4px 10px #333;
    -moz-box-shadow: 4px 4px 10px #333;
    box-shadow:  4px 4px 10px #333;
    copyright:virus;
    font-size: 11px;
    font-weight: bold;
    display: block;
    overflow: auto;
    padding: 7px;
    }
    .poster-profile{
    background-image: url(http://i36.servimg.com/u/f36/17/06/15/26/ouuus311.jpg);
    -moz-border-radius:15px;
    ahlasokar,ahmed samer;
    background-color: #f7f7f7;
    border-left:5px solid #129FD4;
    copyright:ahlasokar.0wn0.com;
    border-right:10px solid #129FD4;
    -webkit-box-shadow: 4px 4px 10px #333;
    -moz-box-shadow: 4px 4px 10px #333;
    box-shadow:  4px 4px 10px #333;
    font-size: 11px;
    font-weight: bold;
    display: block;
    overflow: auto;
    padding: 7px;
    }

        #right{
        position: absolute;
        top: 5px;right: 5px;
        width: 18%;
        float: right;
        }

       
        #page-footer
        {
        border:7px width: 100%; height:8em; ridge #120D0B;
        background:#100C0A url();
        }
       
    /*---------ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط©---------*/

        a.nav {
        background : url(http://i36.servimg.com/u/f36/17/06/15/26/navbit15.gif) no-repeat right;
        ahlasokar,ahmed samer;
        padding-right : 23px;
        padding-left : 1px;
        ahlasokar.0wn0.com;
        font-size : 13px;
        float : right;
        }

    /*---------ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط© -----------*/
        div#page-footer:after {
      display: center;
        float: left;
        font-family: Trebuchet MS,Tahoma,Arial;
        font-style: bold;
        font-weight: normal;
        margin-left:790px;
        font-size: 10px;
        content: " http://l7ty-opar.montadalitihad.com/";}



        /*---------ط­ظ‚ظˆظ‚ ط§ظ„ط§ط³ط?ط§ظ?ظ„ -----------*/
    .content {
    background: url() no-repeat;
    background-position: top;
    text-align: center;
    vertical-align: text-bottom;
    padding: 190px 10px 10px 10px;
    line-height: normal;
    }
        button.button2, input.button2 {
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-box-shadow: 5px 5px rgba(0,0,0,0.5);
        -webkit-box-shadow: 5px 5px rgba(0,0,0,0.5);
        box-shadow: 5px 5px rgba(0,0,0,0.5);
        }
        input {

        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-box-shadow: inset -5px -5px 5px #888;
        -webkit-box-shadow: inset -5px -5px 5px #888;
        box-shadow: inset -5px -5px 5px #888;
        }

        form#quick_reply textarea#text_editor_textarea {
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-box-shadow: 0 0 5px 5px #888;
        -webkit-box-shadow: 0 0 5px 5px#888;
        box-shadow: 0 0 5px 5px #888;
        }
        form#quick_reply iframe#text_editor_iframe {
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-box-shadow: 0 0 5px 5px #888;
        -webkit-box-shadow: 0 0 5px 5px#888;
        box-shadow: 0 0 5px 5px #888;
        }
        *+html form#quick_reply iframe#text_editor_iframe {
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-box-shadow: 0 0 5px 5px #888;
        -webkit-box-shadow: 0 0 5px 5px#888;
        box-shadow: 0 0 5px 5px #888;
        }
        /*** ظ…ظ†ط?ط¯ظ‰ ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط©***/

          input  {
    background: url(http://i36.servimg.com/u/f36/17/46/68/31/htr_bm10.jpg);
    font: 11px georgia !important;
    border-color : #2DB9E3 !important;
    border-width:1px !important;
    border-style:solid !important;
    -moz-border-radius: 9px !important;
    }
        .postdetails.poster-profile a img {
        -webkit-transform:scale(0.9);
    -moz-transform:scale(0.9);
    -o-transform:scale(0.9);
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    opacity: 0.9;
    margin: 0 10px 5px 0;
    }
        .postdetails.poster-profile a img:hover {
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);    box-shadow:0px 0px 30px gray;
    -webkit-box-shadow:0px 0px "AQUI EL TAMAأ‘O EN PIXELES DEL SHADOW" px "AQUI COLOR HEXADECIMAL DE PREFERENCIA";
    -moz-box-shadow:0px 0px "AQUI EL TAMAأ‘O EN PIXELES DEL SHADOW"px "AQUI COLOR HEXADECIMAL DE PREFERENCIA";
    opacity: 1;
    }
        #chatbox_main_options, #chatbox_main_options a, #chatbox_main_options span{
        color: #9a9a9a;
        text-shadow: 1px 1px 1px #ffffff;
        text-decoration:none;
        font-family: Arial Black;
        text-transform: uppercase;
        }
        #chatbox_main_options a:hover{
        color: grey;
        text-shadow: 1px 1px 1px #b8b8b8;
        text-decoration:none !important;
        font-family: Arial Black;
        text-transform: uppercase;
        }

        #chatbox_main_options {
        background: url(http://i25.servimg.com/u/f25/14/45/99/41/untitl21.jpg) repeat-x;
        float: right;
        border: 1px solid #c9c9c9;
        margin-right: 50px;
        margin-top: -17px;
        padding: 2px 3px 1px 5px;
        border-radius: 0px 0px 5px 5px;
        -moz-border-radius: 0px 0px 5px 5px;
        -webkit-box-shadow: 0px 0px 4px #c6c6c6;
        box-shadow: 0px 0px 4px #c6c6c6;
        -moz-box-shadow: 0px 0px 4px #c6c6c6;
        }
        #chatbox_main_options:hover {
        margin-top: -7px;
        }

        {
        background-color: #000000;

        -moz-border-radius: 0px 0px 14px 14px ;

        border-bottom: 2px #000000 solid;

        border-top: 2px #000000 dotted;

        border-right: 2px #000000 solid;

        border-left: 2px #000000 dotted;}

        tr.post td{
        text-align: center;
        }

        a.mainmenu:focus
        {
        color:blue;
        text-decoration:none;
        }
        tr.post span.gensmall { display: none; }

        /*ط¹ظ?ظ† ظ„ظ‚ط±ط§ط¬ ظ„ظ„ط¹ظ„ظ… ظˆ ط§ظ„ظ…ط¹ط±ظپط©*/
        .forumline{
          border:2px solid #EEE;
        width:98%;
        margin: 10px;
        padding: 3px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        -khtml-border-radius: 10px;
        border-radius: 10px;
        -moz-box-shadow: 0px 0px 10px #000;
        box-shadow: 0px 0px 10px #000;
        -webkit-box-shadow: 0px 0px 10px #000;
        -khtml-box-shadow: 0px 0px 10px #000;
        }
        td {
        font-family : tahoma, tahoma, sans-serif;
        font-weight : bold;
        }
        tr.post td{
        text-align: center;
        }
        .glossymenu li a{
        float: left;
        display: block;
        color:#000;
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: bold;
        padding:0 0 0 16px; /*Padding to accomodate left tab image. Do not change*/
        height: 46px;
        line-height: 46px;
        text-align: center;
        cursor: pointer;
        text-transform: uppercase;
        text-align: center;
        }

        .quote {
          -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-bottomleft: 9px;
    -webkit-border-bottom-left-radius: 9px;
    -moz-border-radius-bottomright: 25px;
    -webkit-border-bottom-rightright-radius: 25px;
      border-top: 1px solid #ADC8E5;;
      border-right: 2px solid #ADC8E5;
      border-bottom: 3px solid #ADC8E5;
      border-left: 5px solid #ADC8E5;
      background-color: #dfe6ef;
    -webkit-box-shadow: 4px 4px 10px #333;
    -moz-box-shadow: 4px 4px 10px #333;
    box-shadow:  4px 4px 10px #333;
        }
        #right{
        position: absolute;
        top: 5px;right: 5px;
        width: 18%;
        float: right;
        }
        .profile_field_list li {
        display: inline;
        }
        /*** ظƒظˆط¯ ظˆط¶ط¹ ط§ظ„ط¨ط³ظ…ظ„ظ‡ ط¨ط¯ظˆظ† ط®ط·ظˆط· ***/
    .hr {
    background: url(http://i15.servimg.com/u/f15/17/99/30/93/n2hr3a10.gif) no-repeat;
    background-position: top;
    text-align: center;
    vertical-align: text-bottom;
    padding: 0px 325px 210px;
    line-height: normal;
    }
    /*** ط§ظ†ط?ظ‡ط§ط، ظƒظˆط¯ ظˆط¶ط¹ ط§ظ„ط¨ط³ظ…ظ„ظ‡ ط¨ط¯ظˆظ† ط®ط·ظˆط·  ***/
        /*----- ط¸ظ„ ظ„ط±ظˆط§ط¨ط· ط§ظ„ط£ظ‚ط³ط§ظ… ط¹ظ†ط¯ ظ…ط±ظˆط± ط§ظ„ظ…ط§ظˆط³ -----*/
    a.forumlink:hover{
    -moz- text-shadow: 4px 4px 4px #000;
    -webkit- text-shadow: 4px 4px 4px #000;
    text-shadow: 4px 4px 4px #000;
    filter:progid:DXImageTransform.Microsoft.Shadow(color='#848282', Direction=115, Strength=2);
    zoom: 1;
    }
        body {
          background-attachment:fixed;
          background-repeat:no-repeat;
          background-position:top center;
          cursor: url("http://illiweb.com/Forum/cible.cur");
        }

       
       
       



       
       
          /*ط¸ظ„ ظ„ظ„ط±ظˆط§ط¨ط· HIMA ELMASRY
    */
      a:link, a:visited, a:active{
    text-decoration : none;
    }
    a:hover{
    text-shadow:0 0 20px;
    }
        /*ط¸ظ„ ظ„ظ„ط±ظˆط§ط¨ط· HIMA ELMASRY
    */
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
          .forumline{

    background-color: #0032D2;
    border: 0;
    background:  #0032D2 url(http://i40.servimg.com/u/f40/14/90/50/18/oooooo11.png) no-repeat;
        padding: 76px 4px 4px 4px;
        background-position: top;
        -moz-border-radius-bottomleft: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border:1px solid#000000;
        }


        a strong {
    background : url() no-repeat right;
    padding : 0 15px 0 20px;
    }


        أ‡أ،أ‡أ?أ‡أ‘ أ‌أ¦أ?أ“
        th {
        height: 37px;
        border: 8px double #0032D2;
        -moz-border-radius: 7px;
        }
        .forumline,
        .row1, .row2, .row3 {
        border: 5px double #0032D2;
        -moz-border-radius: 7px;
        }



        hr{
        height: 8px;
        border: solid #e1effa 1px;
        border-top-width: 1px;
        background: url(http://i46.servimg.com/u/f46/12/76/15/84/ucoe_c10.jpg
         
    );
        }
        a.copyright
        {
        border:0;
        background:none;
        }
       


        tr.post td {

    text-align: center;

        }







       
       
       
       
       
       
       
       
       

        /*----- كود إزالة الخط من تحت الروابط -----*/
    a:link
    {
    text-decoration: none;
    }

    a:visited
    {
    text-decoration: none;
    }

    a:active
    {
    text-decoration: none;
    }

    a:hover
    {
    text-decoration: none;
    }

        /*----- أ‡أژأ‌أ‡أپ أ‡أ،أ?أ¦أ‍أ­أ? -----*/




        /*----- أ‡أ،أ•أ¦أ‘ أ¦أ‡أ–أچأ‰ -----*/
    .postbody img {
    max-width:600px;
    }

        /*----- أ‡أژأ‌أ‡أپ أ‡أ،أ?أ¦أ‍أ­أ? -----*/









    .profile_field_list li{
    display: inline-block;
    }


















    /* الايطار حول مساهمة العضوالاحمر*/
    .postbody{font-size:20px;font-weight:700; background: #f52641;  -moz-border-radius-bottomleft:15px;
        -moz-border-radius-bottomright:15px;
        -moz-border-radius-topleft:15px;
        -moz-border-radius-topright:15px;
          border:3px  solid #FF0000;
    background:
        url();
        background-position:top;
        background-repeat: no-repeat;
        display: block;
        overflow: auto;
        padding:60px;);
        .forumline{
        width:97%;
        margin:3px;
        padding: 4px;
        -moz-box-shadow: 0px 0px 30px  #FF0000;
        box-shadow: 0px 0px 30px #FF0000;
        -webkit-box-shadow: 0px 0px 30px #FF0000;
        -khtml-box-shadow: 0px 0px 30px  #FF0000;
        }
        }
    /* By Bebo*/








        .postbody{
        font-weight: bold;
        line-height: 1.5em;
        }

       

         
        /*-----كود وضع اطار دائري وصورة حول الفئات hamsa-haq ----*/
            th {
            height: 9px;
            border: 9px double #ffEEEE;
            -moz-border-radius: 100px;
            }
            .forumline {
            -moz-border-radius:10px;
            -khtml-border-radius:10px;
            -webkit-border-radius:10px;
            border-radius:122px;
            border:7px solid#fffcc6;

        background-image: url(http://i.imm.io/I9Ko.jpeg)
            margin-top:1px;
            margin-bottom:100px;
            padding:35px;
            }


        /*-----أخر تعديل باللون الاحمر ات hamsa-haq ----*/
       


        a:hover {
            color: #FF00FF;
            font-size: 20px;
            font-weight : bold;
            }

        /*----- [كود Css]لمسة خاصة من Yassine Bablil لجعل اسماء الاعضاء في مشاركات وداخل اقسام بشكل احترافي ----*/
     
        .name{
            border-radius: 9px;
            -webkit-border-radius: 9px;
            -moz-border-radius: 9px;
            margin: 5px;
            background-color: rgb(236,236,236);
            border: 1px solid rgb(212,212,212);
            color: rgb(0,0,0);
            text-align: center;
            padding: 6px;
            font-size: 11px;
            text-shadow: 0px 0px 2px #837d87;
            font-style: normal;
            line-height: normal;
            font-weight: bold;
            font-variant: normal;
            font-family: Tahoma, Geneva, sans-serif;
        }



              /***Mr.TnT***/
                          .quote{
                          max-height: 200px;
                            overflow: auto;
                            direction: ltr;
                              display: block;
                          }
                      /*by: Mr.TnT*/

Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الخميس 2 يوليو 2015 - 0:46

up
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف YasirAyad الخميس 2 يوليو 2015 - 0:52

لو الارقام تظهر لكنت عاينتها وحللته لك بشكل افضل لاكنها لا تظهر لي لا اعلم لماذا 

عموما سنقوم بعده تجارب 

اذهب الى css
الكود:
media="screen"
.prettyprint ol.linenums {
  padding-left: 47px;
  color: rgba(37, 20, 20, 0);
}

الجافا سكربت

الكود:
/***
    * Syntax Highlighter funtionality for Forumotion!
    * (c)
    * Version: 1.28082013-jq1.9.1
    * Made by JScript - 2013/12/16
    */
    jQuery(function () {
        var sCSS = '<style>' +
            '/***' +
            '* Syntax Highlighter funtionality for Forumotion!' +
            '* CSS: .codebox dd.cont_code' +
            '* (c)  hamsahaqo' +
            '* Version: 1.28082013-jq1.9.1' +
            '* Made by JScript - 2013/12/16' +
            '*/' +
            'code.punbb_block, pre.punbb_block {' +
            '  background-color: #FAFAFA !important;' +
            '  border: 1px solid #C9C9C9 !important;' +
            '  color: #000000;' +
            '  font-family: Consolas,"Bitstream Vera Sans Mono","Andale Mono",Monaco,"DejaVu Sans Mono","Lucida Console",monospace !important;' +
            '  font-size: 11px !important;' +
            '  line-height: 110% !important;' +
            '  max-height: 250px !important;' +
            '  overflow: auto !important;' +
            '  padding: 5px !important;' +
            '  white-space: pre-wrap !important;' +
            '  width: auto !important;' +
            '}' +
            '.punbbtop {' +
            '  background-color: #FFDEAD !important;' +
            '  color: #1D3652;' +
            '  font-size: 10px;' +
            '  font-weight: bold;' +
            '  line-height: 100%;' +
            '  margin-top: 5px;' +
            '  padding: 2px 1px 2px 3px;' +
            '}' +
            '.punbbtop button {' +
            '  background: -moz-linear-gradient(center top , #EDEDED 5%, #DFDFDF 100%) repeat scroll 0 0 #EDEDED;' +
            '  border: 1px solid #BBBBBB;' +
            '  border-radius: 3px 3px 3px 3px;' +
            '  color: #1D3652;' +
            '  cursor: pointer;' +
            '  display: inline-block;' +
            '  font-size: 10px;' +
            '  padding: 0 6px;' +
            '  text-decoration: none;' +
            '}' +
            '.punbbtop button:hover {' +
            '  background: -moz-linear-gradient(center top , #DFDFDF 5%, #EDEDED 100%) repeat scroll 0 0 #DFDFDF;' +
            '  border-color: #9A9A9A;' +
            '  color: #3D70A3;' +
            '}' +
            '.punbbtop button:active {' +
            '  position: relative;' +
            '  top: 1px;' +
            '}' +
            'pre.punbb_block.expand, code.punbb_block.expand {' +
            '  max-height: 100% !important;' +
            '}'  +
            '</style>';
        jQuery(sCSS).insertBefore('#page-body');
   
        if (jQuery('.cont_code').length) {
            var tagCode = jQuery('.cont_code');
        } else {
            if (jQuery('.cont_code').length) {
                var tagCode = jQuery('.code');
            } else {
                var tagCode = jQuery('code');       
            }
        }
        tagCode.each(function () {
            var sContent = jQuery(this).html();
            var codebox = jQuery(this).parent().parent();
            codebox.before('<div class="punbbtop">  تظليل المحتوى    <button onclick="punbbExpand(this); return false;">تكبير</button><button style="display: none" onclick="punbbCollapse(this); return false;">تصغير</button>  <button onclick="punbbSelect(this); return false;">انسخ</button>  <button onclick="punbbPopup(this); return false;">نافذة</button>  <button style="margin-right: 50px; float: right;" onclick="punbbAbout(this); return false;"></button></div><pre class="highlight punbb_block">' + sContent + '</pre>');
            codebox.remove();
        });
        jQuery.getScript('http://balupton.github.io/jquery-syntaxhighlighter/scripts/jquery.syntaxhighlighter.min.js', function () {
            jQuery.SyntaxHighlighter.init({
                'wrapLines': false
            })
        })
    });
    function punbbExpand(oThis) {
        jQuery(oThis).css('display', 'none');
        jQuery(oThis).next().css('display', '');
        jQuery(oThis).parent().next('pre.punbb_block').addClass('expand');
    }
   
    function punbbPopup(oThis) {
        var content = jQuery(oThis).parent().next('pre.punbb_block').html();
        var my_window = window.open("","PunBB_Code","scrollbars=1,toolbar=no,menubar=no,personalbar=no,status=0,left=0,location=0,menubar=0,top=0,width=640,height=480");
   
        my_window.document.write('<pre>'+content+'</pre>');
    }
    function punbbAbout(oThis) {
        alert('Simple code to add Syntax Highlighter fuctionality for Forumotion\n\hamsahaq - 2013/12/16\n');
    }
    function punbbSelect(oThis) {
        var doc = document;
        var text = jQuery(oThis).parent().next('pre.punbb_block')[0];
        if (doc.body.createTextRange) {
            var range = doc.body.createTextRange();
            range.moveToElementText(text);
            range.select();
        } else if (window.getSelection) {
            var selection = window.getSelection();
            var range = doc.createRange();
            range.selectNodeContents(text);
            selection.removeAllRanges();
            selection.addRange(range);       
        }
    }
YasirAyad
YasirAyad
 
 

ذكر
عدد المساهمات : 10113
معدل النشاط : 15293
السُمعة : 297

http://yasirayad.com/

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الخميس 2 يوليو 2015 - 1:03

طيب انا متأكد من حاجة ان السبب فى الترقميم كود الجافا

لانى لما عطلت كود الجافا اخفتى الترقيم

ولكن هناك شئ ما أرجو ان تفحص
الكود له مصدر داخلى و هوه هذا
الكود:

/*
 MIT License {@link http://creativecommons.org/licenses/MIT/}
 MIT License {@link http://creativecommons.org/licenses/MIT/}
 MIT License {@link http://creativecommons.org/licenses/MIT/}
 MIT License {@link http://creativecommons.org/licenses/MIT/}
 MIT License {@link http://creativecommons.org/licenses/MIT/}
 MIT License {@link http://creativecommons.org/licenses/MIT/}
*/
"undefined"===typeof window.console&&(window.console={});
"undefined"===typeof window.console.emulated&&("function"===typeof window.console.log?window.console.hasLog=!0:("undefined"===typeof window.console.log&&(window.console.log=function(){}),window.console.hasLog=!1),"function"===typeof window.console.debug?window.console.hasDebug=!0:("undefined"===typeof window.console.debug&&(window.console.debug=!window.console.hasLog?function(){}:function(){for(var a=["console.debug:"],b=0;b<arguments.length;b++)a.push(arguments[b]);window.console.log.apply(window.console,
a)}),window.console.hasDebug=!1),"function"===typeof window.console.warn?window.console.hasWarn=!0:("undefined"===typeof window.console.warn&&(window.console.warn=!window.console.hasLog?function(){}:function(){for(var a=["console.warn:"],b=0;b<arguments.length;b++)a.push(arguments[b]);window.console.log.apply(window.console,a)}),window.console.hasWarn=!1),"function"===typeof window.console.error?window.console.hasError=!0:("undefined"===typeof window.console.error&&(window.console.error=function(){var a=
"An error has occured.";if(window.console.hasLog){for(var a=["console.error:"],b=0;b<arguments.length;b++)a.push(arguments[b]);window.console.log.apply(window.console,a);a="An error has occured. More information is available in your browser's javascript console."}for(b=0;b<arguments.length;++b){if(typeof arguments[b]!=="string")break;a=a+("\n"+arguments[b])}if(typeof Error!=="undefined")throw Error(a);throw a;}),window.console.hasError=!1),"function"===typeof window.console.trace?window.console.hasTrace=
!0:("undefined"===typeof window.console.trace&&(window.console.trace=function(){window.console.error("console.trace does not exist")}),window.console.hasTrace=!1),window.console.emulated=!0);
(function(a){a.appendStylesheet=a.appendStylesheet||function(b,c){if(!document.body){setTimeout(function(){a.appendStylesheet.apply(a,[b,c])},500);return a}var d="stylesheet-"+b.replace(/[^a-zA-Z0-9]/g,""),e=a("#"+d);typeof c==="undefined"&&(c=false);if(e.length===1)if(c)e.remove();else return a;var e=document.getElementsByTagName(a.browser.safari?"head":"body")[0],f=document.createElement("link");f.type="text/css";f.rel="stylesheet";f.media="screen";f.href=b;f.id=d;e.appendChild(f);return a};a.appendScript=
a.appendScript||function(b,c){if(!document.body){setTimeout(function(){a.appendScript.apply(a,[b,c])},500);return a}var d="script-"+b.replace(/[^a-zA-Z0-9]/g,""),e=a("#"+d);typeof c==="undefined"&&(c=false);if(e.length===1)if(c)e.remove();else return a;var e=document.getElementsByTagName(a.browser.safari?"head":"body")[0],f=document.createElement("script");f.type="text/javascript";f.src=b;f.id=d;e.appendChild(f);return a}})(jQuery);
(function(a){a.fn.findAndSelf=a.fn.findAndSelf||function(b){return a(this).find(b).andSelf().filter(b)};Number.prototype.replace=Number.prototype.replace||function(){return(""+this).replace.apply(this,arguments)};a.SyntaxHighlighter?window.console.warn("SyntaxHighlighter has already been defined..."):a.SyntaxHighlighter={config:{load:true,highlight:true,debug:false,wrapLines:true,lineNumbers:true,stripEmptyStartFinishLines:true,stripInitialWhitespace:true,alternateLines:false,defaultClassname:"highlight",
theme:"balupton",themes:["balupton"],addSparkleExtension:true,prettifyBaseUrl:"http://balupton.github.com/jquery-syntaxhighlighter/prettify",baseUrl:"http://balupton.github.com/jquery-syntaxhighlighter"},init:function(b){var c=this.config,d=c.baseUrl;if(d[d.length-1]==="/")c.baseUrl=d.substr(0,d.length-2);delete d;a.extend(true,this.config,b||{});a.Sparkle&&a.Sparkle.addExtension("syntaxhighlighter",function(){a(this).syntaxHighlight()});a.fn.syntaxHighlight=a.fn.SyntaxHighlight=this.fn;c.load&&this.load();
c.highlight&&this.highlight();return this},load:function(){var b=this.config,c=b.prettifyBaseUrl,d=b.baseUrl,b=b.themes;if(!this.loaded()){a.appendScript(c+"/prettify.min.js");a.appendStylesheet(c+"/prettify.min.css");a.appendStylesheet(d+"/styles/style.min.css");a.each(b,function(b,c){a.appendStylesheet(d+"/styles/theme-"+c+".min.css")});a.browser.msie&&a.appendStylesheet(d+"/styles/ie.min.css");this.loadedExtras=true}return this},loadedExtras:false,loaded:function(){return typeof prettyPrint!==
"undefined"&&this.loadedExtras},determineLanguage:function(a){for(var c=null,d=/lang(uage)?-([a-z0-9]+)/g,e=d.exec(a);e!==null;){c=e[2];e=d.exec(a)}return c},fn:function(){var b=a(this);a.SyntaxHighlighter.highlight({el:b});return this},highlight:function(b){typeof b!=="object"&&(b={});var c=this,d=c.config,e=b.el||false;e instanceof jQuery||(e=a("body"));if(c.loaded()){var f=d.defaultClassname,g="";if(typeof f==="array"){g="."+f.join(",.");f=f.join(" ")}else{f=""+f;g="."+f.replace(" ",",.")}if(g===
"."||!f){window.console.error("SyntaxHighlighter.highlight: Invalid defaultClassname.",[this,arguments],[d.defaultClassname]);window.console.trace()}e=e.findAndSelf("code,pre").filter("[class*=lang],"+g).filter(":not(.prettyprint)");e.css({"overflow-y":"visible","overflow-x":"visible","white-space":"pre"}).addClass("prettyprint "+f).each(function(){var b=a(this),d=b.attr("class"),d=c.determineLanguage(d);b.addClass("lang-"+d)});d.lineNumbers&&e.addClass("linenums");d.theme&&e.addClass("theme-"+d.theme);
d.alternateLines&&e.addClass("alternate");prettyPrint();d.stripEmptyStartFinishLines&&e.find("li:first-child > :first-child, li:last-child > :first-child").each(function(){var b=a(this),d=/^([\r\n\s\t]|\&nbsp;)*$/.test(b.html()),c=b.parent(),c=b.siblings();if(d&&(c.length===0||c.length===1&&c.filter(":last").is("br"))){c=b.parent();b=c.val();c.next().val(b);c.remove()}});d.stripInitialWhitespace&&e.find("li:first-child > :first-child").each(function(){var b=a(this),c=(b.html().match(/^(([\r\n\s\t]|\&nbsp;)+)/)||
[])[1]||"";c.length&&b.parent().siblings().children(":first-child").add(b).each(function(){var b=a(this),d=b.html(),d=d.replace(RegExp("^"+c,"gm"),"");b.html(d)})});d.wrapLines?e.css({"overflow-x":"hidden","overflow-y":"hidden","white-space":"pre-wrap","max-height":"none"}):e.css({"overflow-x":"auto","overflow-y":"auto","white-space":"normal","max-height":"500px"});return this}d.debug&&window.console.debug("SyntaxHighlighter.highlight: Chosen SyntaxHighlighter is not yet defined. Waiting 1200 ms then trying again.");
setTimeout(function(){c.highlight.apply(c,[b])},1200)}}})(jQuery);


و المتمثل بهذا الكود فى الكود الذى أنا واضعه

فى هذا الرابط
http://balupton.github.io/jquery-syntaxhighlighter/scripts/jquery.syntaxhighlighter.min.js

Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الخميس 2 يوليو 2015 - 1:06

إن بحثت فى الكود الذى انا واضعه فى الموضوع فى الاول خالص عن الرابط الذى يحتوى على الكود السابق ذكره ستجد ان هذا الكود الذى فى الرابط مصدر للكود الاول الذى انا واضعه
ارجو ان تكو ن فهمت Laughing
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الخميس 2 يوليو 2015 - 1:06

و الكود ده اقدر اعدله عن طريقة إضافته لصفحة جافا لدى

فهل يمكن التعديل على هذا الكود لإزالة الترقيم
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الخميس 2 يوليو 2015 - 5:00

up
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الخميس 2 يوليو 2015 - 16:44

up
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الخميس 2 يوليو 2015 - 19:09

up
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف YasirAyad الخميس 2 يوليو 2015 - 19:12

مرحبا عوده من جديد

من الممكن في الرابط الذي تضعه لاكن هل تجرب الكود css التالي
الكود:
.prettyprint ol.linenums {
  color: rgba(255, 0, 0, 0);
  font-size: 12px;
YasirAyad
YasirAyad
 
 

ذكر
عدد المساهمات : 10113
معدل النشاط : 15293
السُمعة : 297

http://yasirayad.com/

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الخميس 2 يوليو 2015 - 19:46

جربت و لكن لم ينجح فى حذف الترقيم
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط  Empty رد: اريد التعديل على هذا الكود و ذلك بحذف الترقيم فقط

مُساهمة من طرف Ahmed_helal الجمعة 3 يوليو 2015 - 19:13

طب بلاش حذف الترقيم ممكن الكلام اللى فى الكود بما فيه الترقيم يجى شمال ؟
كله
Ahmed_helal
Ahmed_helal
 
 

ذكر
عدد المساهمات : 282
معدل النشاط : 3928
السُمعة : 0

http://l7ty-opar.montadalitihad.com

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

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

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

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