Ok, if you visit pr.michaelnetherton.com and look at the four boxes in the center of the page, I am trying to get the title images and the corresponding icons to fit in the boxes and have the text flow around them. The title bar is a vertical image that runs up the left side of each box. The icon should be in upper right corner of the box and the text should fill in around them. Here is the style sheet code:
Can this even be done with css? The Zen Garden makes it all look so easy. Any help will be greatly appreciated.
Thanks,
Mopacfan
Code:
#project
{
BORDER-RIGHT: black 1pt solid;
PADDING-RIGHT: 3px;
BACKGROUND-POSITION: left top;
BORDER-TOP: black 1pt solid;
PADDING-LEFT: 3px;
LEFT: 5px;
BACKGROUND-IMAGE: url(../layout/cell_back.gif);
PADDING-BOTTOM: 3px;
BORDER-LEFT: black 1pt solid;
WIDTH: 260px;
PADDING-TOP: 3px;
BORDER-BOTTOM: black 1pt solid;
BACKGROUND-REPEAT: repeat-x;
POSITION: relative;
TOP: 0px;
HEIGHT: 180px
}
#plan
{
BORDER-RIGHT: black 1pt solid;
PADDING-RIGHT: 3px;
BACKGROUND-POSITION: left top;
BORDER-TOP: black 1pt solid;
PADDING-LEFT: 3px;
LEFT: 5px;
BACKGROUND-IMAGE: url(../layout/cell_back.gif);
PADDING-BOTTOM: 3px;
BORDER-LEFT: black 1pt solid;
WIDTH: 260px;
PADDING-TOP: 3px;
BORDER-BOTTOM: black 1pt solid;
BACKGROUND-REPEAT: repeat-x;
POSITION: relative;
TOP: 0px;
HEIGHT: 180px
}
#news
{
BORDER-RIGHT: black 1pt solid;
PADDING-RIGHT: 3px;
BACKGROUND-POSITION: left top;
BORDER-TOP: black 1pt solid;
PADDING-LEFT: 3px;
LEFT: 5px;
BACKGROUND-IMAGE: url(../layout/cell_back.gif);
PADDING-BOTTOM: 3px;
BORDER-LEFT: black 1pt solid;
WIDTH: 260px;
PADDING-TOP: 3px;
BORDER-BOTTOM: black 1pt solid;
BACKGROUND-REPEAT: repeat-x;
POSITION: relative;
TOP: 3px;
HEIGHT: 180px;
BACKGROUND-: black 1pt solid
}
#photos
{
BORDER-RIGHT: black 1pt solid;
PADDING-RIGHT: 3px;
BACKGROUND-POSITION: left top;
BORDER-TOP: black 1pt solid;
PADDING-LEFT: 3px;
LEFT: 5px;
BACKGROUND-IMAGE: url(../layout/cell_back.gif);
PADDING-BOTTOM: 3px;
BORDER-LEFT: black 1pt solid;
WIDTH: 260px;
PADDING-TOP: 3px;
BORDER-BOTTOM: black 1pt solid;
BACKGROUND-REPEAT: repeat-x;
POSITION: relative;
TOP: 3px;
HEIGHT: 180px;
BACKGROUND-: black 1pt solid
}
#titleimage
{
LEFT: -3px;
POSITION: relative;
TOP: -3px
}
#titleicon
{
LEFT: 124px;
POSITION: relative;
TOP: -89px
}
Can this even be done with css? The Zen Garden makes it all look so easy. Any help will be greatly appreciated.
Thanks,
Mopacfan