بحث متقدم | التسجيل
الويب العربي
  تسجيل دخول
 
   
   

  ملاحظة
الموقع متاح للإطلاع والقراءة فقط، المشاركة والمواضيع الجديدة غير متاحة حالياً لحين تطوير الموقع.




الموقع متاح للإطلاع والقراءة فقط، المشاركة والمواضيع الجديدة غير متاحة حالياً لحين تطوير الموقع.

عـودة للخلف   الويب العربي سوق البرمجة والتصميم طلبات البرمجة والتصميم والتطوير

طلبات البرمجة والتصميم والتطوير هل تبحث عن مبرمج أو مصمم ؟
طلبات برمجه ، طلبات تصميم ، طلبات تطوير ، طلبات دعم فني وحماية

موضوع مغلق اضف موضوع جديد
 
خيارات الموضوع طريقة العرض
  #1  
قديم 03-10-2008, 03:39 PM
الصورة الشخصية لـ نبض الحروف
نبض الحروف نبض الحروف غير متصل
عضو
 
تاريخ التسجيل: Mar 2008
مشاركة: 87
مستوى تقييم العضوية: 17
نبض الحروف is on a distinguished road
Awt9 مطلوب مصمم محترف لحل مشكله بمقابل

السلام عليكم ورحمة الله وبركاته :

عندي تصميم ستايل خاص للمنتدى وطلع فيه مشكلة في الهيدر

وهي عباره عن ثقل وتعليق خاصة لما اسحب الصفحة على فوق الى الاخير

ويتوقف كل شي متحرك بما في ذلك البنرات وشريط الاهداءات ونحوها

أتمنى أن اجد لها حل مهما كان الثمن ومن يستطيع حل هذه المشكلة

يضيفني

وهذا ايميلي :

vip_m_222@hotmail.com


وهذا رابط المنتدى والاستايل الموجودة فيه المشكلة


http://alhorof.com/vb/index.php?styleid=30


تحياتي ..






التوقيع
شبكة نبض الحروف الثقافية

www.alhorof.com

منتديات نبض الحروف الثقافية

www.alhorof.com/vb

رابط البنر الاعلاني :

http://www.imslm.net/up/r1N41992.gif
  #2  
قديم 03-10-2008, 03:59 PM
الصورة الشخصية لـ زريان كردي
زريان كردي زريان كردي غير متصل
عضو
 
تاريخ التسجيل: Jan 2007
المدينة: Iraq \ Region of Kurdistan
مشاركة: 172
مستوى تقييم العضوية: 18
زريان كردي is on a distinguished road
إرسال رسالة عبر MSN إلى زريان كردي
الافتراضي

تمت اضافتك يا اخي






  #3  
قديم 03-10-2008, 06:12 PM
الصورة الشخصية لـ زريان كردي
زريان كردي زريان كردي غير متصل
عضو
 
تاريخ التسجيل: Jan 2007
المدينة: Iraq \ Region of Kurdistan
مشاركة: 172
مستوى تقييم العضوية: 18
زريان كردي is on a distinguished road
إرسال رسالة عبر MSN إلى زريان كردي
الافتراضي

كود:
<!-- logo -->
<if condition="$show[guest]">
<!-- Improve registration Rates -->
<style type="text/css">

#topbar{
position:absolute;
border: 1px solid black;
padding: 4px;
background-color: white;
width: 380px;
visibility: hidden;
z-index: 0;
}

</style>

<script type="text/javascript">
var persistclose=0 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session
var startX = 30 //set x offset of bar in pixels
var startY = 4 //set y offset of bar in pixels
var verticalpos="fromtop" //enter "fromtop" or "frombottom"

function iecompattest(){
return (dcidocument.compatMode && dcidocument.compatMode!="BackCompat")? dcidocument.dcidocumentElement : dcidocument.body
}

function get_dcicookie(Name) {
var search = Name + "="
var returnvalue = "";
if (dcidocument.dcicookie.length > 0) {
offset = dcidocument.dcicookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = dcidocument.dcicookie.indexOf(";", offset);
if (end == -1) end = dcidocument.dcicookie.length;
returnvalue=unescape(dcidocument.dcicookie.substring(offset, end))
}
}
return returnvalue;
}

function closebar(){
if (persistclose)
dcidocument.dcicookie="remainclosed=1"
dcidocument.getElementById("topbar").style.visibility="hidden"
}

function staticbar(){
barheight=dcidocument.getElementById("topbar").offsetHeight
var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
var d = dcidocument;
function ml(id){
var el=d.getElementById(id);
if (!persistclose || persistclose && get_dcicookie("remainclosed")=="")
el.style.visibility="visible"
if(d.layers)el.style=el;
el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
el.x = startX;
if (verticalpos=="fromtop")
el.y = startY;
else{
el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
el.y -= startY;
}
return el;
}
window.stayTopLeft=function(){
if (verticalpos=="fromtop"){
var pY = ns ? pageYOffset : iecompattest().scrollTop;
ftlObj.y += (pY + startY - ftlObj.y)/8;
}
else{
var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
ftlObj.y += (pY - startY - ftlObj.y)/8;
}
ftlObj.sP(ftlObj.x, ftlObj.y);
setTimeout("stayTopLeft()", 10);
}
ftlObj = ml("topbar");
stayTopLeft();
}

if (window.addEventListener)
window.addEventListener("load", staticbar, false)
else if (window.attachEvent)
window.attachEvent("onload", staticbar)
else if (dcidocument.getElementById)
window.onload=staticbar
</script>



<div id="topbar">
<a href="" onClick="closebar(); return false"><img src="images/close.gif" border="0" /></a>
<font face="Arial Black">هذه الرسالة تفيد بأنك غير مشترك معنا. للتسجيل الرجاء اضغط</font> <a href="register.php"><font color="#FF0000">هنـا</font></a> 
</div></if>
<!-- logo -->
<a name="top"></a>
<table width="100%" border="0" cellpadding="0" cellspacing="0" dir=ltr align=center>
	<tr>
		<td background="alhorof2008/mnafe-alhorof_01.jpg" width="248" height="210">
<img src="http://www.sahand-music.com/blsn.gif" >
		</td>
		<td background="alhorof2008/mnafe-alhorof_02.jpg">
			<img src="alhorof2008/mnafe-alhorof_02.jpg" width="11" height="210"></td>
		<td background="alhorof2008/mnafe-alhorof_03.jpg" width="259" height="210">
			
		</td>
		<td background="alhorof2008/mnafe-alhorof_04.jpg">
			<img src="alhorof2008/mnafe-alhorof_04.jpg" width="11" height="210"></td>
		<td background="alhorof2008/mnafe-alhorof_05.jpg" width="248" height="210">
			
		</td>
	</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0" dir=ltr align=center>
	<tr>
		<td background="alhorof2008/mnafe-alhorof_06.jpg" width="52" height="23">
		<if condition="$show['member']">
			<a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]">
			<img src="alhorof2008/mnafe-alhorof_06.jpg" width="52" height="23" border=0 alt="تسجيل الخروج"></a></if></td>
		<td width="40" height="23">
			<img src="alhorof2008/mnafe-alhorof_07.jpg" width="40" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_08.jpg" width="61" height="23">
		<if condition="$show['member']">
			<a href="search.php?do=process&showposts=1&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">
			<img src="alhorof2008/mnafe-alhorof_08.jpg" width="61" height="23" border=0 alt="مشاركاتي"></a></if></td>
		<td width="23" height="23">
			<img src="alhorof2008/mnafe-alhorof_09.jpg" width="23" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_10.jpg" width="63" height="23">
		<if condition="$show['member']">
			<a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">
			<img src="alhorof2008/mnafe-alhorof_10.jpg" width="63" height="23" border=0 alt="مواضيعي"></a></if></td>
		<td width="9" height="23">
			<img src="alhorof2008/mnafe-alhorof_11.jpg" width="9" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_12.jpg">
			<img src="alhorof2008/mnafe-alhorof_12.jpg" width="11" height="23"></td>
		<td width="37" height="23">
			<img src="alhorof2008/mnafe-alhorof_13.jpg" width="37" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_14.jpg" width="82" height="23" id="usercptools">
		<if condition="$show['member']"><a href="$show[nojs_link]#usercptools" accesskey="3"></a><script type="text/javascript"> vbmenu_register("usercptools"); </script></if></td>
		<td width="31" height="23">
			<img src="alhorof2008/mnafe-alhorof_15.jpg" width="31" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_16.jpg" width="91" height="23">
		<if condition="$show['member']"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">
			<img src="alhorof2008/mnafe-alhorof_16.jpg" width="91" height="23" border=0 alt="$vbphrase[new_posts_nav]"></a></if></td>
		<td width="18" height="23">
			<img src="alhorof2008/mnafe-alhorof_17.jpg" width="18" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_18.jpg">
			<img src="alhorof2008/mnafe-alhorof_18.jpg" width="11" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_19.jpg" width="60" height="23" id="navbar_search">
		<a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow"></a><if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search"); </script></if></td>
		<td width="42" height="23">
			<img src="alhorof2008/mnafe-alhorof_20.jpg" width="42" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_21.jpg" width="51" height="23">
		<if condition="$show['member']"><a href="usercp.php$session[sessionurl_q]">
			<img src="alhorof2008/mnafe-alhorof_21.jpg" width="51" height="23" border=0 alt="$vbphrase[user_cp]"></a></if></td>
		<td width="36" height="23">
			<img src="alhorof2008/mnafe-alhorof_22.jpg" width="36" height="23"></td>
		<td background="alhorof2008/mnafe-alhorof_23.jpg" width="59" height="23">
		<if condition="$show['registerbutton']"><a href="register.php$session[sessionurl_q]" rel="nofollow">
			<img src="alhorof2008/mnafe-alhorof_23.jpg" width="59" height="23" border=0 alt="$vbphrase[register]"></a></if></td>
	</tr>
</table>
<!-- /logo -->
<div align=center>
<div class="page1" align="center">
<div class="page2" align="center">
<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_dcilocation[ad_header_end]






  #4  
قديم 03-10-2008, 07:15 PM
الصورة الشخصية لـ زريان كردي
زريان كردي زريان كردي غير متصل
عضو
 
تاريخ التسجيل: Jan 2007
المدينة: Iraq \ Region of Kurdistan
مشاركة: 172
مستوى تقييم العضوية: 18
زريان كردي is on a distinguished road
إرسال رسالة عبر MSN إلى زريان كردي
الافتراضي

بحمد الله تم حل المشكلة

تقبل احترامي






  #5  
قديم 04-10-2008, 10:26 PM
الصورة الشخصية لـ h-design
h-design h-design غير متصل
عضو
 
تاريخ التسجيل: Aug 2008
مشاركة: 258
مستوى تقييم العضوية: 16
h-design is on a distinguished road
الافتراضي

اضفنا واحنا هنسهل عليك كل حاجه
ـــــــــــــــــــــــــ ــــــــــــ
السعر = $ مفاجئه

مدة العمل = 24 ساعه للتصميم الواحد
ـــــــــــــــــــــــــ ـــــــــــ

للتواصل
ـــــــــــــ

s.hesham75@yahoo.com
ـــــــــــــــــــــــــ ـــــــــــــــــ
s.hesham75@hotmail.com
ـــــــــــــــــــــــــ ــــــــــ






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

اكيد بتفكر فى الفن والخبره

فمن سيعطيها لك ......... ؟

عندنا حل

للتفاهم
ـــــــــــــــــــــــــ ـ
0020192115910
ـــــــــــــــــــــــــ ــ
h.sleem158@hotmail.com

h.sleem158@yahoo.com
  #6  
قديم 05-10-2008, 06:31 AM
amr_1_2008 amr_1_2008 غير متصل
عضو
 
تاريخ التسجيل: Jul 2008
مشاركة: 46
مستوى تقييم العضوية: 0
amr_1_2008 is on a distinguished road
الافتراضي

بالتوفيق يالغالى





  #7  
قديم 05-10-2008, 06:32 AM
amr_1_2008 amr_1_2008 غير متصل
عضو
 
تاريخ التسجيل: Jul 2008
مشاركة: 46
مستوى تقييم العضوية: 0
amr_1_2008 is on a distinguished road
الافتراضي

تمت الاضافة





  #8  
قديم 06-10-2008, 04:44 AM
فنار99 فنار99 غير متصل
عضو
 
تاريخ التسجيل: Nov 2007
مشاركة: 94
مستوى تقييم العضوية: 17
فنار99 is on a distinguished road
الافتراضي

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





موضوع مغلق




قوانين المشاركة
لا يمكنك إضافة موضوع جديد
لا يمكنك الرد على المواضيع
لا يمكنك إضافة مرفقات
لا يمكنك تعديل مشاركاتك

كود vB متاح
كود [IMG] متاح
كود HTML مغلق
إنتقل إلى


جميع الأوقات بتوقيت مكة المكرمة. الساعة الآن » 11:33 PM.

Powered by vBulletin
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.


 
 »  خدمات البرمجة   »  رئيسية الدليل
  »  خدمات التصميم   »  الأمن والحماية
  »  الدعاية والتسويق
  »  الدعم والتطوير
  »  الشركات الرسمية
  »  حجز دومينات
  »  خدمات الإستضافة
 
 
  »  مكتبة الإستايلات   »  رئيسية المكتبة
  »  أكواد برمجية   »  أدوات الويب ماسترز
  »  مكتبة الهاكات   »  أدوات المصممين
  »  سكربتات متنوعة
  »  مجلات إلكترونية
  »  بلوكات متنوعة
  »  ثيمات مختلفة
 
 

صحيفة متخصصة في متابعة أخبار وجديد الإنترنت العربي
والحوارات الصحفية ومعلومات تقنية متنوعة .

   
 
 

للتواصل مع فريق عمل الويب العربي
يمكنك ذالك من خلال مركز الدعم والمساندة.

 الدعم الفني |  اعتماد العضويات |  قوانين الإنتساب |  إتفاقية الإستخدام |  أهداف الويب العربي |  دليل الشركات |  مكتبة الويب |  صحيفة الويب العربي |  الرئيسية