Replace the Send, Preview, and Draft Buttons
2 posters
Page 1 of 1
Replace the Send, Preview, and Draft Buttons
Hello,
I would like to replace the current appearance of the "send," preview," and "draft" buttons on my forum, preferably with images that I can make on my own instead of just color changes. Is this possible?
My forum version is phpBB3.
Thank you for your time!
Leah7
I would like to replace the current appearance of the "send," preview," and "draft" buttons on my forum, preferably with images that I can make on my own instead of just color changes. Is this possible?
My forum version is phpBB3.
Thank you for your time!
Leah7
Guest- Guest
Re: Replace the Send, Preview, and Draft Buttons
acp>display>colors>css tab
replace imageurl with the url of the image
if it just a background image with no text remove "font-size:0px" from the code
set the width and height of the image
---------------------
if its a background image and with no text and its gonna be the same for all three use this
- Code:
.submit-buttons input[name="post"]{
background-image:url(imageurl);
width:100px!important;
height:30px;
font-size:0px;
background-color:transparent;
border:none;
}
.submit-buttons input[name="preview"]{
background-image:url(imageurl);
width:100px!important;
height:30px;
font-size:0px;
background-color:transparent;
border:none;
}
input[name="draft"]{
background-image:url(imageurl);
width:100px!important;
height:30px;
font-size:0px;
background-color:transparent;
border:none;
}
replace imageurl with the url of the image
if it just a background image with no text remove "font-size:0px" from the code
set the width and height of the image
---------------------
if its a background image and with no text and its gonna be the same for all three use this
- Code:
.submit-buttons input[name="post"],.submit-buttons input[name="preview"],input[name="draft"]{
background-image:url(imageurl);
width:100px!important;
height:30px;
background-color:transparent;
border:none;
}
Re: Replace the Send, Preview, and Draft Buttons
Okay! At first, I thought it didn't work, but it did! xD It just works in the full-reply mode and not the quick reply mode.
Is there a way to have it work in quick reply, as well?
Is there a way to have it work in quick reply, as well?
Guest- Guest
Re: Replace the Send, Preview, and Draft Buttons
This did fix it, thank you very much! ^.^ However, when I hover over the buttons, there is now a little box that appears around them. Can I remove that?
Guest- Guest
Re: Replace the Send, Preview, and Draft Buttons
It sounds like the border. Try replacing border:none; with border:none !important;
Re: Replace the Send, Preview, and Draft Buttons
Yes, this fixed the issue and now I have the buttons up there that I want--thank you so very much to _twisted_mods_ and Ange Tuteur for helping me with this!!! <3
Solved!
Solved!
Guest- Guest
Similar topics
» new post preview send
» [Preview] and [Send] Buttons are on the left, how do i move it to center
» Quick reply box sized-up covers preview and send buttons
» Preview/Send Button
» "Preview , Send,Reset. "
» [Preview] and [Send] Buttons are on the left, how do i move it to center
» Quick reply box sized-up covers preview and send buttons
» Preview/Send Button
» "Preview , Send,Reset. "
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum