Hi kinerity
Great Extension, thank you.
In your screen shots there are images instead of just the tick that I can see in my 3.2.7 PHPBB installation,
Your Screen shots:
How do I use these images?
Many thanks
Phil
Best Answer Buttons - Best Answer
Re: Best Answer Buttons
Those images are from an older version of the extension and are not available.
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules
If you have any questions about the rules/customs of this website, feel free to send me a PM.
My little corner of the world | Administrator @ phpBB Modders
Knowledge Base | Documentation | Community rules
If you have any questions about the rules/customs of this website, feel free to send me a PM.
My little corner of the world | Administrator @ phpBB Modders
-
- Community Team Leader
- Posts: 3960
- Joined: Mon Sep 01, 2014 1:00 am
- Location: sudo rm -rf /
- Name: Kailey Snay
Re: Best Answer Buttons
OK thanks kinerity. I may have a look to see if I can reinstate the images as I think they can look better in some forums.
Many thanks
Phil
Many thanks
Phil
-
- Registered User
- Posts: 10
- Joined: Fri May 29, 2015 7:37 am
Re: Best Answer Buttons
For anyone wanting a button style look that says ANSWERED, you can try this. Copy the following files from /ext/kinerity/bestanswer/styles/prosilver/template/event to your theme /ext/kinerity/bestanswer/styles/[YOUR_THEME}/template/event:
to this:
create or copy the file /ext/kinerity/bestanswer/styles/prosilver/theme/bestanswer.css to your them and add the following into the CSS file:
Regards Ollie
- forumlist_body_last_post_title_prepend.html
- mcp_topic_postrow_attachments_after.html
- mcp_topic_topic_title_before.html
- search_results_topic_title_after.html
- topiclist_row_prepend.html
- viewtopic_body_postrow_post_notices_before.html
- viewtopic_topic_title_prepend.html
Code: Select all
{% if searchresults.S_ANSWERED or topicrow.S_ANSWERED %}<i class="icon fa-check fa-fw icon-green" aria-hidden="true"></i>{% endif %}
Code: Select all
{% if searchresults.S_ANSWERED or topicrow.S_ANSWERED %}<i class="icon fa-check fa-fw icon-green" aria-hidden="true"></i><span class="ba-answered">ANSWERED</span>{% endif %}
Code: Select all
span.ba-answered {
color: white;
font-weight: bold;
background-color: green;
}
-
- Registered User
- Posts: 3
- Joined: Fri Feb 03, 2023 1:51 pm