Add icon next to Reply button
3 posters
Page 1 of 1
Add icon next to Reply button
Hi All
How do I add icon next to Reply button as shown ? I know the reply button has class=i_reply
How do I add icon next to Reply button as shown ? I know the reply button has class=i_reply
- Code:
'<a class="profile-icon" href="javascript:Hello("'+ _userdata.username +'");">' +
' <img title="Ignore this topic in future" src="http://upload.vstanced.com/images/2017/11/03/uhL.png" width="25" height="25">' + '</a>'
Last edited by TamDonCo on June 1st 2018, 3:55 pm; edited 1 time in total
Re: Add icon next to Reply button
TamDonCo wrote:Hi All
How do I add icon next to Reply button as shown ? I know the reply button has class=i_reply
- Code:
'<a class="profile-icon" href="javascript:Hello("'+ _userdata.username +'");">' +
' <img title="Ignore this topic in future" src="http://upload.vstanced.com/images/2017/11/03/uhL.png" width="25" height="25">' + '</a>'
Hello,
Do your forum have buttons designed using CSS? Because if not, these icons you are seeking have to be done with graphics.
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add icon next to Reply button
How are your forum buttons now?
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add icon next to Reply button
What I meant is if you could take a screenshot to check them.
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add icon next to Reply button
Go to ACP (Administration Control Panel), then click Modules tab, go to HTML&Javascript section on the left and choose Javascript code management. Make sure that Javascript management is enabled and create a new script.
Title: your choice
Placement: in the topics
Javascript code:
Also, I suggest to use onclick, not href="javascript:.... Better replace this line of code:
Title: your choice
Placement: in the topics
Javascript code:
- Code:
$(function() {
$('img[alt="Reply to topic"].i_reply').parent().append('<a class="profile-icon" href="javascript:Hello("' + _userdata.username + '");">' +
'<img title="Ignore this topic in future" src="http://upload.vstanced.com/images/2017/11/03/uhL.png" width="25" height="25">' + '</a>');
});
Also, I suggest to use onclick, not href="javascript:.... Better replace this line of code:
- Code:
href="javascript:Hello("' + _userdata.username + '");"
- Code:
onclick="Hello("' + _userdata.username + '");"
Re: Add icon next to Reply button
Problem solved & topic archived.
|
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum