HexagonReborn

Topic icons are covered by HexagonReborn symbols - HexagonReborn

Topic icons are covered by HexagonReborn symbols

by Gretzn » Tue Feb 04, 2020 7:51 am

Hello,

at first thank you for that great style. :D

I have a issue:
If a Topic has an icon the HexagonReborn symbol cover it.
Screenshot:
Image

How can I fix it?

Thank you.
User avatar
Gretzn
Registered User
Posts: 11
Joined: Sat Jan 26, 2019 9:28 pm

Re: Topic icons are covered by HexagonReborn symbols

by Mannix_ » Tue Feb 04, 2020 12:30 pm

In which part of your forum that issue occurs ? because in viewforum it displays correctly as can be seen here
Normal Forum - Mannix's Styles mannixstyles.byethost3.com 1b1a812aec43.png
Normal Forum - Mannix's Styles mannixstyles.byethost3.com 1b1a812aec43.png (6.06 KiB) Viewed 105 times
. Best would be if you could link me to it so i can check it on my own :)
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
Mannix_
Registered User
Posts: 2028
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: Topic icons are covered by HexagonReborn symbols

by Gretzn » Tue Feb 04, 2020 2:58 pm

Thank you for your answer :)
Sure, it's easier you can look by yourself: https://gretzn.eu/forum/
User avatar
Gretzn
Registered User
Posts: 11
Joined: Sat Jan 26, 2019 9:28 pm

Re: Topic icons are covered by HexagonReborn symbols

by Mannix_ » Tue Feb 04, 2020 3:57 pm

I see so the problem is with the extension and not the style.
To fix it make folder called HexagonReborn in ext/paybas/recenttopics/styles inside that folder make another one called template and copy recent_topics_body_topbottom.html and recent_topics_body_side.html from the ext/paybas/recenttopics/style/all/template folder

Open those files find

Code: Select all

<dt{% if recent_topics.TOPIC_ICON_IMG and S_TOPIC_ICONS %} style="background-image: url({{ T_ICONS_PATH }}{{ recent_topics.TOPIC_ICON_IMG }}); background-repeat: no-repeat;"{% endif %} title="{{ recent_topics.TOPIC_FOLDER_IMG_ALT }}">
and replace it with

Code: Select all

<dt{% if recent_topics.TOPIC_ICON_IMG and S_TOPIC_ICONS %} style="background-image: url({{ T_ICONS_PATH }}{{ recent_topics.TOPIC_ICON_IMG }}); background-repeat: no-repeat; position: relative;"{% endif %} title="{{ recent_topics.TOPIC_FOLDER_IMG_ALT }}">
Don't forget to purge the cache in acp
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
Mannix_
Registered User
Posts: 2028
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: Topic icons are covered by HexagonReborn symbols

by Gretzn » Tue Feb 04, 2020 4:22 pm

Sorry, I don't knew that a extension produced the issue. :oops: I have no idea about things like this.

Your solution works perfect! Thank you very much. :D
User avatar
Gretzn
Registered User
Posts: 11
Joined: Sat Jan 26, 2019 9:28 pm