Thumbnails in attachments

igrec

Member
Hi all, please help me to style the thumbs in attachment box.
By default it shows like this
attached.webp
What I want is an old school preview by default. Like bellow.

attached2.webp
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Add this:

Code:
.attachedFiles .attachmentInfo
{
	display: none;
}

.attachment .thumbnail
{
	padding-right: 0px !important;
	border-right: none !important;
}

.attachment
{
	width: auto !important;
}

The result:

Screen shot 2013-06-09 at 1.01.38 PM.webp
 
Top Bottom