I got this:
and this in CSS
.footerLine{
background-color: #3cd400;
height: 13px;
text-decoration: none;
text-align: right;
}
I can't figure out - how could I make a footer line with text f.e. - powered by blahblah - and the corner gif still would be in corner.
if I use P or Div or Span - it splits it to two lines.
thanks
div.center {text-align:
div.center {
text-align: center;
}
but then it makes 2 lines, but I want 1.
You could do one of two
You could do one of two things.
Put the image in the background and postion it to top right no-repeat, e.g.
.footerLine{
background-color: #3cd400 url(images/d_corner.gif) top right no-repeat;
height: 13px;
text-decoration: none;
text-align: right;
}
Or float the img to the right. The image would come before the text in this case, but will appear to the right.
big thanks i used float
big thanks
i used float and it worked.
thank you