주제: 이것 좀 봐주세요.
이런 질문을 해도 될런지 모르겠습니다.
css 라 어떻게 수정해야 하는지 도통 모르겠네요
html이면 나모같은데 넣어서 고치면 되는데
이건 장난 아니네요.
이게 지금 상단에 이미지 들어가는 소슨데요.
3개로 나뉘어져 있거든요.
이거를 가로 800픽셀 (세로는 얼만지 모르겠어요 ㅜㅜ) 그림 하나를
떡 하니 넣고 싶은데요.
어떻게 수정해야 하나요?
/* Layout */
/*-------------------------------*/
#container
{
width: 800px;
margin: 0 auto;
}
#author
{
position: relative;
margin: 0 5px;
background: #222 url('./images/bg_authorBar.gif') repeat-x 0 0;
font-size: 0.92em;
line-height: 3.3em;
}
* html #author
{
display: inline-block;
}
#author span
{
position: relative;
left: -5px;
float: left;
font-family: AppleGothic, Dotum, '?뗭?', 'Lucida Grande', 'Myriad Pro', Helvetica, Tahoma, sans-serif;
padding-left: 30px;
background: url('./images/bg_authorBarLeft.gif') no-repeat 0 0;
color: #ccc;
line-height: 3.4em;
}
#author ul
{
position: relative;
right: -5px;
display: block;
padding-right: 30px;
background: url('./images/bg_authorBarRight.gif') no-repeat 100% 0;
list-style: none;
text-align: right;
}
* html #author ul
{
display: inline-block;
}
*:first-child+html #author ul
{
display: inline-block;
}
#header