Click here to Skip to main content
15,912,932 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Developers Code Library Pin
Vimalsoft(Pty) Ltd30-Jul-09 1:08
professionalVimalsoft(Pty) Ltd30-Jul-09 1:08 
GeneralRe: Developers Code Library Pin
Rajeshwar Code- Developer30-Jul-09 2:52
Rajeshwar Code- Developer30-Jul-09 2:52 
GeneralRe: Developers Code Library Pin
Vimalsoft(Pty) Ltd30-Jul-09 2:55
professionalVimalsoft(Pty) Ltd30-Jul-09 2:55 
QuestionControl value from one page to the other Pin
LucBite29-Jul-09 23:01
LucBite29-Jul-09 23:01 
AnswerRe: Control value from one page to the other Pin
Blikkies29-Jul-09 23:10
professionalBlikkies29-Jul-09 23:10 
AnswerRe: Control value from one page to the other Pin
Blue_Boy30-Jul-09 2:09
Blue_Boy30-Jul-09 2:09 
AnswerRe: Control value from one page to the other Pin
amitabha12331-Jul-09 0:05
amitabha12331-Jul-09 0:05 
QuestionDesign Problem html Pin
Ersan Ercek29-Jul-09 22:39
Ersan Ercek29-Jul-09 22:39 
I have a problem in Asp.net..

here is my page: site

the problem is when I designed it, the header and footer was aligned at left, but now somehow they are not.

here is its html:

<title>Üye Kayıt</title>
<link href="style.css" rel="stylesheet" type="text/css" />

</head>
<body>
<form id="form1" runat="server">
<div id="centrallarge">
<h1><img src="images\digersayfa.jpg" alt="photo" /></h1>
</div>
<div id="central">

<div id="rightsub"
style="font-size: large; color: #FF0000; font-family: Tahoma; float:right; padding-right:50px" >
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />

ÇOK YAKINDA HİZMETİNİZDEYİZ!!!
</div>
<div id="footersub">
<ul>
<li>
<a href="Default.aspx">Anasayfa </a>
</li>
</ul>
</div>
</div>

what went wrong you think?

Thanks alot

And css file:

* {margin:0px;padding:0px;top:0px;left:0px;}
body{
text-align: center;
background-color: #fff;
}
#central{
margin-right: auto;
margin-left: auto;
margin-top: 10px;
position: relative;
width: 761px;
text-align: left;
}

#centrallarge{
margin-right: auto;
margin-left: auto;
margin-top: 10px;
position: relative;
width: 900px;
text-align: left;
}
#centrallarge h1
{
float:none;
width:800px;
height:20px;
position: relative;
color:#fff;

}

#leftside{float: left;
width:390px;
height:618px;
}
#leftsub{
float:left;
width:300px;
height:500px;
position: relative;

}

#leftsub h1{
float:left;
width:300px;
height:270px;
position: relative;
}

#leftsub p
{
float:none;
padding:10px;
padding-left:10px;

}

#rightside{
float: right;
width:371px;
height:618px;
background-color:#cc6700;
position: relative;
color:#fff;
}
#rightsub
{
margin-top:20px;
float:left;
width:371px;
height:400px;
position: relative;
}

#centralsub{
float:none;
width:600px;
height:620px;
background-color:#cc6700;
position: relative;
color:#fff;
}
#header{
background-image: url(images/header.jpg);
height: 250px;
width: 388px;
position: relative;
}
#middle{
position: absolute;
top: 250px;
}
#leftside img{margin-top:2px;}
#leftsub h1 img
{
margin-top:2px;
margin-left:10px;
}
#leftsub p img
{
float:none;
margin-top:10px;
margin-left:80px;
}
#menu{
position: absolute;
height: 306px;
width: 137px;
left: 251px;
top: 0px;
background-color: #c95202;
margin-top:2px;
}
#leftside ul{
list-style-position: outside;
list-style-type: none;
margin-top: 40px;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #FFFFFF;
}
#leftside li{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #FFFFFF;
list-style-position: outside;
list-style-type: none;
}
#leftside ul a{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bolder;
color: #FFFFFF;
text-decoration: none;
height: 25px;
width: 117px;
padding-left: 20px;
padding-top: 10px;
display: block;
}
#leftside a:hover{background-color:#ff6600;}
#rightside h1{
color:#fff;
font-family: Airstrip Four;
font-size: 18px;
padding-bottom :2px;
text-align:center;
}
#rightside h2{
color:#fff;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
padding-bottom :20px;
}
#rightside p{
color:#fff;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
padding: 5px;
}

#rightside a{color:#fff;}
#centralsub a{color:#fff;}
#rightside a:hover{background-color:#ff6600;}
#footer{
position: absolute;
height: 58px;
width: 388px;
top: 560px;
background-color: #c95202;
text-align:center;
}
#footer p{
color:#fff;
font-family: Airstrip Four;
font-size: 20px;
padding: 10px;

}
#footer a{color:#fff;}
#footersub
{
margin-right: auto;
margin-top: 20px;
position: relative;
width: 900px;
text-align: right;
background-image:url('/images/footer.jpg');

}


#footersub li
{
list-style-position: outside;
list-style-type: none;
margin-right: 10px;
font-family: Tahoma;
}
#leftside ul{
border-top-width: 1px;
border-top-style: solid;
}
#footersub a:hover
{
color: #FFFFFF;
}
AnswerRe: Design Problem html Pin
DoctorMick30-Jul-09 1:02
DoctorMick30-Jul-09 1:02 
GeneralRe: Design Problem html Pin
Ersan Ercek30-Jul-09 2:15
Ersan Ercek30-Jul-09 2:15 
Questionhow to get contex menu by right click on text box Pin
rinku soni 2329-Jul-09 22:27
rinku soni 2329-Jul-09 22:27 
AnswerRe: how to get contex menu by right click on text box Pin
Blikkies29-Jul-09 23:20
professionalBlikkies29-Jul-09 23:20 
AnswerRe: how to get contex menu by right click on text box Pin
Abhijit Jana29-Jul-09 23:33
professionalAbhijit Jana29-Jul-09 23:33 
QuestionHow to Host asp web site Pin
mdazeemuddin29-Jul-09 22:17
mdazeemuddin29-Jul-09 22:17 
AnswerRe: How to Host asp web site Pin
Blikkies29-Jul-09 23:18
professionalBlikkies29-Jul-09 23:18 
AnswerRe: How to Host asp web site Pin
Abhijit Jana29-Jul-09 23:27
professionalAbhijit Jana29-Jul-09 23:27 
GeneralRe: How to Host asp web site Pin
mdazeemuddin31-Jul-09 21:50
mdazeemuddin31-Jul-09 21:50 
QuestionFilling the listbox that is placed inside the web user control Pin
Jagz W29-Jul-09 22:15
professionalJagz W29-Jul-09 22:15 
AnswerRe: Filling the listbox that is placed inside the web user control Pin
Vimalsoft(Pty) Ltd29-Jul-09 23:52
professionalVimalsoft(Pty) Ltd29-Jul-09 23:52 
Questionhow to add classes and functions Pin
Rajni_pooni29-Jul-09 21:59
Rajni_pooni29-Jul-09 21:59 
AnswerRe: how to add classes and functions Pin
Abhijit Jana29-Jul-09 22:09
professionalAbhijit Jana29-Jul-09 22:09 
Questiondatareader Pin
KhandelwalA29-Jul-09 21:42
KhandelwalA29-Jul-09 21:42 
AnswerRe: datareader Pin
Abhijit Jana29-Jul-09 21:46
professionalAbhijit Jana29-Jul-09 21:46 
QuestionTab control ajax Pin
KhandelwalA29-Jul-09 21:18
KhandelwalA29-Jul-09 21:18 
AnswerRe: Tab control ajax Pin
Abhijit Jana29-Jul-09 21:38
professionalAbhijit Jana29-Jul-09 21:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.