PDA

View Full Version : Show Thread Enhancements - add Download Button next to attachments


Mohammad Kamal
01-11-2013, 11:00 PM
Hello,

Now you can add a Download button next to attachments

Screenshot:

https://vborg.vbsupport.ru/attachment.php?attachmentid=143277&stc=1&d=1358031450

To do that, open postbit_attachment template

Search for:

($attachment[filesize]<if condition="$show['views']">, <phrase 1="$attachment[counter]">$vbphrase[x_views]</phrase></if>)


below it add:

<a class="downloadbutton_attachments" href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]"<if condition="$show['newwindow']"> target="_blank"</if>>Download</a>

Then add the following code in Main CSS > Additional CSS Definitions :

/* ***** Download Button for attachments by Mohammad Kamal */
.downloadbutton_attachments{
color: black;
font-size: 8pt;
font-family: tahoma;
border: solid 1px;
padding: 3px;
text-decoration: none;
background-color: #DDD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
a.downloadbutton_attachments:link { color: black; }
a.downloadbutton_attachments:hover { color:red; }

You can edit the color as you like!

and that's it, Enjoy ;)

usHealthy
03-22-2013, 11:01 PM
Little things that always help the looks of any board.

thanks

matrex722
03-23-2013, 09:58 PM
nice work but im looking for somthing else
i want users when they click on attachments to download it
a new winow open and in it a Button to download the attachment file and another Button to back to thread
is there any mod do that ?

Zyon
05-08-2014, 01:56 PM
Try this css:

/* ***** Download Button for attachments by Mohammad Kamal, edited by Zyon */
.downloadbutton_attachments{
font-size: 8pt;
font-family: tahoma, verdana, 'times new roman', arial;
border: solid 1px;
padding: 3px;
text-decoration: none;
background-color: #E1E4F2;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
a.downloadbutton_attachments:hover {
color:#FF4400;
}
It look better on vBulletin because it have vB colors :) .

Thanks for posting this ;)