subject

Sep 25, 2009 19:00

Can I have my subject above my date time on a free account?
Live preview and codes incase you need them

http://community.livejournal.com/chungae/
/* made by eunkyung ( Read more... )

solved, subject

Leave a comment

Comments 4

malionette September 25 2009, 19:52:24 UTC
yeah, it goes like:

.date { float: left; clear: left;}
.subject {clear: left;}

Reply

unreal September 26 2009, 19:50:21 UTC
I tried that but my date time is still above my subject

.date{
border-top: 0px solid #b7cad5;
border-right: 0px solid #eeeeee;
border-bottom: 0px solid #e2e2e2;
background: #f1f1f1;
color: #e891b1;
font-family: "arial" Helvetica, sans-serif;
font-size: 7pt;
text-transform: lowercase;
float: left;
clear: left;
}

.subject {
padding-top: 0px;
border-right: 0px solid #ffffff;
border-left: 0px solid #ffffff;
border-top: 0px solid #ff8a00;
border-bottom: 1px solid #e2e2e2;
padding-bottom: 0px;
background: #f1f1f1;
text-align: left;
font-weight: normal;
font-style:normal;
color: #95b0c0;
font-family: arial;
font-size: 12pt;
text-transform: uppercase;
letter-spacing: -1px;
background-image: url('');
background-repeat: no-repeat;
clear: left;
}

Reply

malionette September 26 2009, 22:42:07 UTC
oh, i read that wrong. No, it's impossible to have a div on top of another div unless you know the height of the second div (the subject).. and if you want to do that it's .date {position: absolute; margin-top: 25px; }

Reply

unreal September 27 2009, 12:33:28 UTC
thank you that worked :)

Reply


Leave a comment

Up