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]&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 ;)
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]&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 ;)