View Single Post
ישן 16-11-10, 14:52   # 4
Insane
Winner
 
מיני פרופיל
תאריך הצטרפות: Feb 2007
מיקום: דרום
גיל: 32
הודעות: 605

Insane לא מחובר  

כדי שהוא ידבק למעלה תוסיף את זה ל- CSS:
קוד:
body {
	margin:0;
	padding:0px;
}
כדי לעצב את הבאר תוסיף את זה ל- css:
קוד:
.toolbar {
	background: #000000;
	font-family: Arial;
	font-size: 12px;
	color: #ffffff;
	height: 15px;
	width: 100%;
	margin:0;
	padding: 5px;
	text-align:center;
}}
כדי לעצב את הלינקים בטוח הבאר, תוסיף את זה ל- css:
קוד:
.toolbar a:link,
.toolbar a:visited,
.toolbar a:active,
.toolbar a:hover {
	color: #ffffff;
	text-decoration: none;
}
כדי להציג את באר תוסיף את הקוד הזה לאתרך, חושב שהוא יהיה מעל כל התוכן:
קוד:
<div class="toolbar">
	<a href="#">לינק ראשון</a> .
	<a href="#">לינק שני</a> .
	<a href="#">לינק שלישי</a> .
	<a href="#">לינק רביעי</a> .
	<a href="#">לינק חמישי</a>
</div>
  Reply With Quote