مشكلة في التشكيلات

3 مشترك

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

مشكلة في التشكيلات Empty مشكلة في التشكيلات

مُساهمة من طرف ممببددععةة الإثنين 27 يوليو 2015 - 21:14

ادحلوو منتداي
في التشكيلات العامة لوحة ابداعنا جاية ع اليمين 
مع اني وضعت كود التوسيط 
ولا فائدة م المشكلة
ممببددععةة
ممببددععةة
 
 

انثى
عدد المساهمات : 166
معدل النشاط : 4147
السُمعة : 0

http://banot.hooxs.com/

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

مشكلة في التشكيلات Empty رد: مشكلة في التشكيلات

مُساهمة من طرف {Lone~Wolf} الإثنين 27 يوليو 2015 - 21:27

ممكن تضعي لنا هنا كافة أكواد التشكيلات العامه.
{Lone~Wolf}
{Lone~Wolf}
 
 

ذكر
عدد المساهمات : 3575
معدل النشاط : 9409
السُمعة : 160

https://help.ahlamontada.com/u16282

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

مشكلة في التشكيلات Empty رد: مشكلة في التشكيلات

مُساهمة من طرف ممببددععةة الإثنين 27 يوليو 2015 - 22:34

لم اضع سوا كود جعل الوان الاقسام كالقوس قزح بكل الالوان
في هذا الموضووع الكود
ولكن حذفتة ولا فائدة
ممببددععةة
ممببددععةة
 
 

انثى
عدد المساهمات : 166
معدل النشاط : 4147
السُمعة : 0

http://banot.hooxs.com/

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

مشكلة في التشكيلات Empty رد: مشكلة في التشكيلات

مُساهمة من طرف ruah الإثنين 27 يوليو 2015 - 22:40

ممببددععةة كتب:
لم اضع سوا كود جعل الوان الاقسام كالقوس قزح بكل الالوان
في هذا الموضووع الكود
ولكن حذفتة ولا فائدة
اجعلى فاصل بين الجدول الى قبلها والى بعدها عن طريق زر enter
ruah
ruah
 
 

انثى
عدد المساهمات : 1295
معدل النشاط : 6405
السُمعة : 0

http://7kawi-banat.womanforum.net/

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

مشكلة في التشكيلات Empty رد: مشكلة في التشكيلات

مُساهمة من طرف ممببددععةة الإثنين 27 يوليو 2015 - 23:03

لم يتغير شئ للأأسف
ممببددععةة
ممببددععةة
 
 

انثى
عدد المساهمات : 166
معدل النشاط : 4147
السُمعة : 0

http://banot.hooxs.com/

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

مشكلة في التشكيلات Empty رد: مشكلة في التشكيلات

مُساهمة من طرف {Lone~Wolf} الثلاثاء 28 يوليو 2015 - 4:36

ما قصدتة أختي الكريمه هو الدخول الى منتداك ووضع أكواد التشكيلات العامه هنا. لكي أقوم برفعها عندي وأنظر ما اللازم في الأمر لجعله متوسط دون التأثير على البقيه...
{Lone~Wolf}
{Lone~Wolf}
 
 

ذكر
عدد المساهمات : 3575
معدل النشاط : 9409
السُمعة : 160

https://help.ahlamontada.com/u16282

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

مشكلة في التشكيلات Empty رد: مشكلة في التشكيلات

مُساهمة من طرف ممببددععةة الثلاثاء 28 يوليو 2015 - 5:10

حسناً تفضل
الكود:
  <script language="JavaScript1.2">

    var rate = 20;  // Increase amount(The degree of the transmutation)

    ////////////////////////////////////////////////////////////////////
    // Main routine
    if (document.getElementById)
    window.onerror=new Function("return true")
    var objActive;  // The object which event occured in
    var act = 0;    // Flag during the action
    var elmH = 0;  // Hue
    var elmS = 128; // Saturation
    var elmV = 255; // Value
    var clrOrg;    // A color before the change
    var TimerID;    // Timer ID

    if (document.all) {
        document.onmouseover = doRainbowAnchor;
        document.onmouseout = stopRainbowAnchor;
    }
    else if (document.getElementById) {
        document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
        document.onmouseover = Mozilla_doRainbowAnchor;
        document.onmouseout = Mozilla_stopRainbowAnchor;
    }

    //=============================================================================
    // doRainbow
    //  This function begins to change a color.
    //=============================================================================
    function doRainbow(obj)
    {
        if (act == 0) {
            act = 1;
            if (obj)
                objActive = obj;
            else
                objActive = event.srcElement;
            clrOrg = objActive.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }

    //=============================================================================
    // stopRainbow
    //  This function stops to change a color.
    //=============================================================================
    function stopRainbow()
    {
        if (act) {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }

    //=============================================================================
    // doRainbowAnchor
    //  This function begins to change a color. (of a anchor, automatically)
    //=============================================================================
    function doRainbowAnchor()
    {
        if (act == 0) {
            var obj = event.srcElement;
            while (obj.tagName != 'A' && obj.tagName != 'BODY') {
                obj = obj.parentElement;
                if (obj.tagName == 'A' || obj.tagName == 'BODY')
                    break;
            }
            if (obj.tagName == 'A' && obj.href != '') {
                objActive = obj;
                act = 1;
                clrOrg = objActive.style.color;
                TimerID = setInterval("ChangeColor()",100);
            }
        }
    }

    //=============================================================================
    // stopRainbowAnchor
    //  This function stops to change a color. (of a anchor, automatically)
    //=============================================================================
    function stopRainbowAnchor()
    {
        if (act) {
            if (objActive.tagName == 'A') {
                objActive.style.color = clrOrg;
                clearInterval(TimerID);
                act = 0;
            }
        }
    }

    //=============================================================================
    // Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
    //  This function begins to change a color. (of a anchor, automatically)
    //=============================================================================
    function Mozilla_doRainbowAnchor(e)
    {
        if (act == 0) {
            obj = e.target;
            while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
                obj = obj.parentNode;
                if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
                    break;
            }
            if (obj.nodeName == 'A' && obj.href != '') {
                objActive = obj;
                act = 1;
                clrOrg = obj.style.color;
                TimerID = setInterval("ChangeColor()",100);
            }
        }
    }

    //=============================================================================
    // Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
    //  This function stops to change a color. (of a anchor, automatically)
    //=============================================================================
    function Mozilla_stopRainbowAnchor(e)
    {
        if (act) {
            if (objActive.nodeName == 'A') {
                objActive.style.color = clrOrg;
                clearInterval(TimerID);
                act = 0;
            }
        }
    }

    //=============================================================================
    // Change Color
    //  This function changes a color actually.
    //=============================================================================
    function ChangeColor()
    {
        objActive.style.color = makeColor();
    }

    //=============================================================================
    // makeColor
    //  This function makes rainbow colors.
    //=============================================================================
    function makeColor()
    {
        // Don't you think Color Gamut to look like Rainbow?
        // HSVtoRGB
        if (elmS == 0) {
            elmR = elmV;    elmG = elmV;    elmB = elmV;
        }
        else {
            t1 = elmV;
            t2 = (255 - elmS) * elmV / 255;
            t3 = elmH % 60;
            t3 = (t1 - t2) * t3 / 60;
            if (elmH < 60) {
                elmR = t1;  elmB = t2;  elmG = t2 + t3;
            }
            else if (elmH < 120) {
                elmG = t1;  elmB = t2;  elmR = t1 - t3;
            }
            else if (elmH < 180) {
                elmG = t1;  elmR = t2;  elmB = t2 + t3;
            }
            else if (elmH < 240) {
                elmB = t1;  elmR = t2;  elmG = t1 - t3;
            }
            else if (elmH < 300) {
                elmB = t1;  elmG = t2;  elmR = t2 + t3;
            }
            else if (elmH < 360) {
                elmR = t1;  elmG = t2;  elmB = t1 - t3;
            }
            else {
                elmR = 0;  elmG = 0;  elmB = 0;
            }
        }
        elmR = Math.floor(elmR).toString(16);
        elmG = Math.floor(elmG).toString(16);
        elmB = Math.floor(elmB).toString(16);
        if (elmR.length == 1)    elmR = "0" + elmR;
        if (elmG.length == 1)    elmG = "0" + elmG;
        if (elmB.length == 1)    elmB = "0" + elmB;
        elmH = elmH + rate;
        if (elmH >= 360)
            elmH = 0;
        return '#' + elmR + elmG + elmB;
    }

    </script>                                 <img src="http://i73.servimg.com/u/f73/17/96/71/06/7cfxn10.png" />
<div style="text-align: center;">
                                                                             
   <div style="text-align: center;">
                                            <span style="font-size: 16px;"><strong><span style="color: rgb(204, 0, 0);">آهلُآً ۆسهلُآً </span><span style="color: rgb(0, 204, 204);">با</span><span style="color: rgb(0, 204, 153);">آلُبدِعٍآت</span><span style="color: rgb(255, 0, 0);"> آلُجٍميَلُآت ..</span><span style="color: rgb(255, 102, 0);"> </span><span style="color: rgb(0, 204, 255);">ۆگلُ عٍآم ۆآنتم بخـيَرٍ</span><span style="color: rgb(255, 153, 255);"> </span></strong></span><img src="http://r12.imgfast.net/users/1212/21/03/03/smiles/3158090503.gif" />                                  
   </div>
                                                                             
   <div style="text-align: center;">
                                        <span style="font-size: 16px;"><strong><span style="color: rgb(0, 102, 255);">ۆهآ?ۆ آلُعٍيَدِ </span></strong></span><strong style="font-size: 16px;"><span style="color: rgb(204, 204, 204);">يذه?ب</span></strong><strong style="font-size: 16px;"><span style="color: rgb(204, 204, 204);"> </span><span style="color: rgb(0, 102, 255);">ۆذه?ب</span></strong><strong style="font-size: 16px;"><span style="color: rgb(0, 102, 255);"> معٍة </span></strong><strong style="font-size: 16px;"><span style="color: rgb(255, 51, 153);">آلُبهجٍة ۆآلُفَرٍحٍ</span></strong>                                  
   </div>
                                                                             
   <div style="text-align: center;">
                                            <img src="http://r23.imgfast.net/users/2316/46/83/40/smiles/269394746.gif" /><span style="font-size: 16px;"><strong><span style="color: rgb(0, 204, 255);">ۆلُگن فَيَ</span><span style="color: rgb(255, 0, 255);"> لُمسآت مبدِعٍة</span><span style="color: rgb(0, 204, 153);"> آيَآمنآ گلُهآ </span><span style="color: rgb(0, 153, 255);">عٍيَدِ </span>  </strong></span>                                    
   </div>
                                                                             
   <div style="text-align: center;">
                                        <span style="font-size: 16px;"><strong><span style="color: rgb(153, 0, 255);">ۆفَرٍحٍ</span><span style="color: rgb(204, 204, 204);"> </span><span style="color: rgb(255, 0, 255);">ۆمرٍحٍ</span><span style="color: rgb(153, 0, 255);"> آنظًميَ آلُﮯ </span><span style="color: rgb(255, 0, 255);">عٍآلُمگ</span>  </strong></span>                                    
   </div>
                                                                             
   <div style="text-align: center;">
                                            <span style="font-size: 16px;"><strong><span style="color: rgb(0, 204, 153);">معٍنآً </span><span style="color: rgb(255, 51, 153);">ۆآستمتعٍيَ</span></strong></span>                                  
   </div>
                                                                         
   <div style="text-align: center;">
                                          <span style="color: rgb(255, 51, 153);"><span style="font-size: 16px;"><strong><br /></strong></span></span>                                    
   </div>
                                                                         
   <div style="text-align: center;">
                                          <img src="http://www13.0zz0.com/2012/02/04/09/307496079.gif" /><span style="color: rgb(255, 51, 153);"><span style="font-size: 16px;"><strong><br /></strong></span></span>                                    
   </div>
                                                                             
   <div style="text-align: center;">
                                            <br />                                      
   </div>
                                                                         
   <div style="text-align: center;">
                                          <img src="http://i481.photobucket.com/albums/rr172/JJangella/line144.gif" /><br />                                    
   </div>
                                                                         
   <div style="text-align: center;">
                      <img src="http://www7.0zz0.com/2015/07/27/22/274838753.gif" /><br />                  
   </div>
                                     
   <div style="text-align: center;">
                         <br />        
      <table border="1">
                                   
         <tbody>
                                      
            <tr>
                                         
               <td>
                          <img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />              
               </td>
                                         
               <td>
                               <img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />              
               </td>
                                         
               <td>
                                <img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />              
               </td>
                                         
               <td>
                                <img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />              
               </td>
                                         
            </tr>
                                      
            <tr>
                                         
               <td>
                                <br />              
               </td>
                                         
               <td>
                                <br />              
               </td>
                                         
               <td>
                                <br />              
               </td>
                                         
               <td>
                                <br />              
               </td>
                                         
            </tr>
                                      
         </tbody>
                                   
      </table><br />              
   </div>
                                     
   <div style="text-align: center;">
                       <br />                        
   </div>
                                                                     
   <div>
                                         <img src="http://i395.photobucket.com/albums/pp40/colonoscarpeay/11Random%20Pixels/1552913dehu8u46uf.gif" /><br />                                    
   </div>
</div>

ممببددععةة
ممببددععةة
 
 

انثى
عدد المساهمات : 166
معدل النشاط : 4147
السُمعة : 0

http://banot.hooxs.com/

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

مشكلة في التشكيلات Empty رد: مشكلة في التشكيلات

مُساهمة من طرف {Lone~Wolf} الثلاثاء 28 يوليو 2015 - 5:54

والأن:
الكود:
      <script language="JavaScript1.2">

        var rate = 20;  // Increase amount(The degree of the transmutation)

        ////////////////////////////////////////////////////////////////////
        // Main routine
        if (document.getElementById)
        window.onerror=new Function("return true")
        var objActive;  // The object which event occured in
        var act = 0;    // Flag during the action
        var elmH = 0;  // Hue
        var elmS = 128; // Saturation
        var elmV = 255; // Value
        var clrOrg;    // A color before the change
        var TimerID;    // Timer ID

        if (document.all) {
            document.onmouseover = doRainbowAnchor;
            document.onmouseout = stopRainbowAnchor;
        }
        else if (document.getElementById) {
            document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
            document.onmouseover = Mozilla_doRainbowAnchor;
            document.onmouseout = Mozilla_stopRainbowAnchor;
        }

        //=============================================================================
        // doRainbow
        //  This function begins to change a color.
        //=============================================================================
        function doRainbow(obj)
        {
            if (act == 0) {
                act = 1;
                if (obj)
                    objActive = obj;
                else
                    objActive = event.srcElement;
                clrOrg = objActive.style.color;
                TimerID = setInterval("ChangeColor()",100);
            }
        }

        //=============================================================================
        // stopRainbow
        //  This function stops to change a color.
        //=============================================================================
        function stopRainbow()
        {
            if (act) {
                objActive.style.color = clrOrg;
                clearInterval(TimerID);
                act = 0;
            }
        }

        //=============================================================================
        // doRainbowAnchor
        //  This function begins to change a color. (of a anchor, automatically)
        //=============================================================================
        function doRainbowAnchor()
        {
            if (act == 0) {
                var obj = event.srcElement;
                while (obj.tagName != 'A' && obj.tagName != 'BODY') {
                    obj = obj.parentElement;
                    if (obj.tagName == 'A' || obj.tagName == 'BODY')
                        break;
                }
                if (obj.tagName == 'A' && obj.href != '') {
                    objActive = obj;
                    act = 1;
                    clrOrg = objActive.style.color;
                    TimerID = setInterval("ChangeColor()",100);
                }
            }
        }

        //=============================================================================
        // stopRainbowAnchor
        //  This function stops to change a color. (of a anchor, automatically)
        //=============================================================================
        function stopRainbowAnchor()
        {
            if (act) {
                if (objActive.tagName == 'A') {
                    objActive.style.color = clrOrg;
                    clearInterval(TimerID);
                    act = 0;
                }
            }
        }

        //=============================================================================
        // Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
        //  This function begins to change a color. (of a anchor, automatically)
        //=============================================================================
        function Mozilla_doRainbowAnchor(e)
        {
            if (act == 0) {
                obj = e.target;
                while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
                    obj = obj.parentNode;
                    if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
                        break;
                }
                if (obj.nodeName == 'A' && obj.href != '') {
                    objActive = obj;
                    act = 1;
                    clrOrg = obj.style.color;
                    TimerID = setInterval("ChangeColor()",100);
                }
            }
        }

        //=============================================================================
        // Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
        //  This function stops to change a color. (of a anchor, automatically)
        //=============================================================================
        function Mozilla_stopRainbowAnchor(e)
        {
            if (act) {
                if (objActive.nodeName == 'A') {
                    objActive.style.color = clrOrg;
                    clearInterval(TimerID);
                    act = 0;
                }
            }
        }

        //=============================================================================
        // Change Color
        //  This function changes a color actually.
        //=============================================================================
        function ChangeColor()
        {
            objActive.style.color = makeColor();
        }

        //=============================================================================
        // makeColor
        //  This function makes rainbow colors.
        //=============================================================================
        function makeColor()
        {
            // Don't you think Color Gamut to look like Rainbow?
            // HSVtoRGB
            if (elmS == 0) {
                elmR = elmV;    elmG = elmV;    elmB = elmV;
            }
            else {
                t1 = elmV;
                t2 = (255 - elmS) * elmV / 255;
                t3 = elmH % 60;
                t3 = (t1 - t2) * t3 / 60;
                if (elmH < 60) {
                    elmR = t1;  elmB = t2;  elmG = t2 + t3;
                }
                else if (elmH < 120) {
                    elmG = t1;  elmB = t2;  elmR = t1 - t3;
                }
                else if (elmH < 180) {
                    elmG = t1;  elmR = t2;  elmB = t2 + t3;
                }
                else if (elmH < 240) {
                    elmB = t1;  elmR = t2;  elmG = t1 - t3;
                }
                else if (elmH < 300) {
                    elmB = t1;  elmG = t2;  elmR = t2 + t3;
                }
                else if (elmH < 360) {
                    elmR = t1;  elmG = t2;  elmB = t1 - t3;
                }
                else {
                    elmR = 0;  elmG = 0;  elmB = 0;
                }
            }
            elmR = Math.floor(elmR).toString(16);
            elmG = Math.floor(elmG).toString(16);
            elmB = Math.floor(elmB).toString(16);
            if (elmR.length == 1)    elmR = "0" + elmR;
            if (elmG.length == 1)    elmG = "0" + elmG;
            if (elmB.length == 1)    elmB = "0" + elmB;
            elmH = elmH + rate;
            if (elmH >= 360)
                elmH = 0;
            return '#' + elmR + elmG + elmB;
        }

        </script>                                <img src="http://i73.servimg.com/u/f73/17/96/71/06/7cfxn10.png" />   
<div style="text-align: center;">
                                                                                            
   <div style="text-align: center;">
                                                      <span style="font-size: 16px;"><strong><span style="color: rgb(204, 0, 0);">آهلُآً ۆسهلُآً </span><span style="color: rgb(0, 204, 204);">با</span><span style="color: rgb(0, 204, 153);">آلُبدِعٍآت</span><span style="color: rgb(255, 0, 0);"> آلُجٍميَلُآت ..</span><span style="color: rgb(255, 102, 0);"> </span><span style="color: rgb(0, 204, 255);">ۆگلُ عٍآم ۆآنتم بخـيَرٍ</span><span style="color: rgb(255, 153, 255);"> </span></strong></span><img src="http://r12.imgfast.net/users/1212/21/03/03/smiles/3158090503.gif" />                                         
   </div>
                                                                                            
   <div style="text-align: center;">
                                                  <span style="font-size: 16px;"><strong><span style="color: rgb(0, 102, 255);">ۆهآ?ۆ آلُعٍيَدِ </span></strong></span><strong style="font-size: 16px;"><span style="color: rgb(204, 204, 204);">يذه?ب</span></strong><strong style="font-size: 16px;"><span style="color: rgb(204, 204, 204);"> </span><span style="color: rgb(0, 102, 255);">ۆذه?ب</span></strong><strong style="font-size: 16px;"><span style="color: rgb(0, 102, 255);"> معٍة </span></strong><strong style="font-size: 16px;"><span style="color: rgb(255, 51, 153);">آلُبهجٍة ۆآلُفَرٍحٍ</span></strong>                                         
   </div>
                                                                                            
   <div style="text-align: center;">
                                                      <img src="http://r23.imgfast.net/users/2316/46/83/40/smiles/269394746.gif" /><span style="font-size: 16px;"><strong><span style="color: rgb(0, 204, 255);">ۆلُگن فَيَ</span><span style="color: rgb(255, 0, 255);"> لُمسآت مبدِعٍة</span><span style="color: rgb(0, 204, 153);"> آيَآمنآ گلُهآ </span><span style="color: rgb(0, 153, 255);">عٍيَدِ </span>  </strong></span>                                           
   </div>
                                                                                            
   <div style="text-align: center;">
                                                  <span style="font-size: 16px;"><strong><span style="color: rgb(153, 0, 255);">ۆفَرٍحٍ</span><span style="color: rgb(204, 204, 204);"> </span><span style="color: rgb(255, 0, 255);">ۆمرٍحٍ</span><span style="color: rgb(153, 0, 255);"> آنظًميَ آلُﮯ </span><span style="color: rgb(255, 0, 255);">عٍآلُمگ</span>  </strong></span>                                           
   </div>
                                                                                            
   <div style="text-align: center;">
                                                      <span style="font-size: 16px;"><strong><span style="color: rgb(0, 204, 153);">معٍنآً </span><span style="color: rgb(255, 51, 153);">ۆآستمتعٍيَ</span></strong></span>                                         
   </div>
                                                                                        
   <div style="text-align: center;">
                                                    <span style="color: rgb(255, 51, 153);"><span style="font-size: 16px;"><strong><br /></strong></span></span>                                           
   </div>
                                                                                        
   <div style="text-align: center;">
                                                    <img src="http://www13.0zz0.com/2012/02/04/09/307496079.gif" /><span style="color: rgb(255, 51, 153);"><span style="font-size: 16px;"><strong><br /></strong></span></span>                                           
   </div>
                                                                                            
   <div style="text-align: center;">
                                                      <br />                                             
   </div>
                                                                                        
   <div style="text-align: center;">
                                                    <img src="http://i481.photobucket.com/albums/rr172/JJangella/line144.gif" /><br />                                           
   </div>
                                                                                        
   <div style="text-align: center;">
                                <img src="http://www7.0zz0.com/2015/07/27/22/274838753.gif" /><br />                         
   </div>
                                                                               <br />                 
   <div align="center">
      <table border="1">
                                                              
         <tbody>
                                                                       
            <tr>
                                                                                
               <td>
                                                <img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />                                 
               </td>
                                                                                
               <td>
                                                      <img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />                                 
               </td>
                                                                                
               <td>
                                                      <img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />                                 
               </td>
                                                                                
               <td>
                                                      <img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />                                 
               </td>
                                                                              
            </tr>
                                                                       
            <tr>
                                                                                
               <td>
                                                      <br />                                 
               </td>
                                                                                
               <td>
                                                      <br />                                 
               </td>
                                                                                
               <td>
                                                      <br />                                 
               </td>
                                                                                
               <td>
                                                      <br />                                 
               </td>
                                                                              
            </tr>
                                                                     
         </tbody>
                                                            
      </table><br />                                          <br />                             
   </div>
                                                                                  
   <div>
                                                    <img src="http://i395.photobucket.com/albums/pp40/colonoscarpeay/11Random%20Pixels/1552913dehu8u46uf.gif" /><br />                                         
   </div>
      
</div>
{Lone~Wolf}
{Lone~Wolf}
 
 

ذكر
عدد المساهمات : 3575
معدل النشاط : 9409
السُمعة : 160

https://help.ahlamontada.com/u16282

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

مشكلة في التشكيلات Empty رد: مشكلة في التشكيلات

مُساهمة من طرف ممببددععةة الثلاثاء 28 يوليو 2015 - 10:26

الحييييييين تمااام شكراًً لكك اخووي
Laughing Cool
ممببددععةة
ممببددععةة
 
 

انثى
عدد المساهمات : 166
معدل النشاط : 4147
السُمعة : 0

http://banot.hooxs.com/

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

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

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

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