PDA

View Full Version : Need help with "Started By" in New Posts


CouponWCents
08-18-2011, 07:57 PM
Right now, when you go to our site www.CouponWithCents.com and click on New Posts.

You can see the thread icon with started by info under it and then the thread info to the right of it. How do we align the started by info to directly underneath the thread info?

Thanks so much!

Boofo
08-18-2011, 09:08 PM
Try searching for the phrase for that line and add a break in there.

CouponWCents
08-18-2011, 09:09 PM
I added this to the additional css & it is moving it right but not up under the thread title:


.label {

padding: 0px 0;
display:block;
top:0px;
padding-left:70px;

}

--------------- Added 1313705443 at 1313705443 ---------------

Thanks Boofo...I don't know which phrase to search for.

Boofo
08-18-2011, 09:26 PM
Try this phrase: started_by_x_y_z_a

setishock
08-18-2011, 09:45 PM
Change
padding-left: 70px;
to
left: 70px; <You'll have to reduce this number>
Also get rid of the top line.

Your pushing off the left side so the padding is not needed.

CouponWCents
08-18-2011, 10:16 PM
Thanks! How do I get rid of the top line?

--------------- Added 1313709627 at 1313709627 ---------------

Nope it's making me keep the padding in there...it won't do anything with just left.

I just want to get it directly underneath the thread title.

setishock
08-18-2011, 11:05 PM
I meant the top line of your css statements. padding 0px, 0 it's doing that first so the padding is reduced to 0. In the padding- left statement add !important. Like this>

padding-left: 70px !important;

!important makes your code priorty wise override other code.
Let me doing some experimenting on my forum and I'll get back to you in a bit.

--------------- Added 1313715560 at 1313715560 ---------------

I see what it is. The status icon are not of a consistant size. The taller ones are pushing the height of the row up and making a dead space between the thread title and the thread info.
The height of the area was designed around the height of the default icons. Try making all of your icons a consistant size around the size of the defaults. Or reduce the padding around the taller icons.