theme dont work with RSS Feed Poster - Printable Version +- D&D Forums - MyBB Plugins & Themes (https://developement.design/forum) +-- Forum: MyBB Ressources (https://developement.design/forum/forumdisplay.php?fid=5) +--- Forum: Premium MyBB Themes (https://developement.design/forum/forumdisplay.php?fid=9) +---- Forum: Support (https://developement.design/forum/forumdisplay.php?fid=18) +---- Thread: theme dont work with RSS Feed Poster (/showthread.php?tid=954) |
theme dont work with RSS Feed Poster - proton - 10-31-2019 Hello , First problem: the theme dont work with RSS Feed Poster , what should i do or change? works on any theme except this one! Second problem: close thread has no image RE: theme dont work with RSS Feed Poster - AmazOuz - 11-03-2019 Hi proton, That's weird, in this forum (using E-extended) i have the icon. Can you click right & inspect element and give me the class of the element (thread_status dot_hotlockfolder in the case of my screenshot) : http://prntscr.com/ps0mx6 For the RSS feed i'll search the solution & i mail you back, i'm not familiar with rss feed. RE: theme dont work with RSS Feed Poster - proton - 11-04-2019 (11-03-2019, 10:38 PM)AmazOuz Wrote: Hi proton, is the same Code: <span style="position:relative;left:7px" class="thread_status dot_closefolder" title="Contains posts by you. No new posts. Closed thread."> </span> RE: theme dont work with RSS Feed Poster - AmazOuz - 11-04-2019 You didn't read the code carefully, you have "closefolder" while i have "hotlockfolder". Go to thread_status.css, look for : Code: .thread_status.dot_hotlockfolder:before { Change the ".thread_status.dot_hotlockfolder:before" to ".thread_status.dot_hotlockfolder:before, .thread_status.dot_closefolder:before". Don't forget to empty your cache if you don't see any change. Tell me if it's ok RE: theme dont work with RSS Feed Poster - proton - 11-04-2019 works, thank you very much, now it remains to solve the problem with rss feed poster RE: theme dont work with RSS Feed Poster - proton - 11-06-2019 Login user class <span style="position:relative;left:7px" class="thread_status dot_closefolder" title="Contains posts by you. No new posts. Closed thread."> </span> guest class or unread <span style="position:relative;left:7px" class="thread_status newclosefolder" title="New posts. Closed thread."> </span> The class after the user or guest has read it <span style="position:relative;left:7px" class="thread_status closefolder" title="No new posts. Closed thread."> </span> here is the problem RE: theme dont work with RSS Feed Poster - AmazOuz - 11-06-2019 Then change ".thread_status.dot_hotlockfolder:before" to ".thread_status.dot_hotlockfolder:before, .thread_status.dot_closefolder:before, .thread_status.closefolder:before, .thread_status.newclosefolder:before". Can you try now ? RE: theme dont work with RSS Feed Poster - proton - 11-06-2019 It works perfectly. |