Line: 231
Code: Select all
.postbody {
padding: 0;
line-height: 1.48em;
width: 76%;
float: left;
position: relative;
}
Code: Select all
/* Poster profile block
----------------------------------------*/
.postprofile {
margin: 5px 0 10px 0;
min-height: 80px;
border: 1px solid transparent;
border-width: 0 0 0 1px;
width: 22%;
float: right;
display: inline;
}
postprofile wide change fine. but .postbody remain same. could you please guide me where i made mistake?
edit:
after i add !important, css working. is it mixing with other css part?
Code: Select all
.postbody {
padding: 0;
line-height: 1.48em;
width: 82% !important;
float: left;
position: relative;
}