<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[D&D Forums - MyBB Plugins & Themes - Support]]></title>
		<link>https://developement.design/forum/</link>
		<description><![CDATA[D&D Forums - MyBB Plugins & Themes - https://developement.design/forum]]></description>
		<pubDate>Thu, 25 Jun 2026 16:14:20 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[[Fixed] Emerald: Change where post ID links start]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27998</link>
			<pubDate>Thu, 15 Jun 2023 19:09:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=3303">joshuaboniface</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27998</guid>
			<description><![CDATA[I'm using the Emerald theme in both light and dark variants. However the issue I'm describing seems to affect every forum with this theme, including this one.<br />
<br />
<br />
<br />
When clicking a post ID link (e.g. <a href="https://developement.design/forum/showthread.php?tid=13833&amp;pid=28969#pid28969" target="_blank" rel="noopener" class="mycode_url">https://developement.design/forum/showth...9#pid28969</a>), the page view jumps to the start of the <span style="font-style: italic;" class="mycode_i">content</span> of the message, rather to the head of the post like the default theme.<br />
<br />
<br />
<br />
Here's an example image of what is happening (on this forum):<br />
<br />
<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=113" target="_blank" title="">Screenshot from 2023-06-15 15-02-50.png</a> (Size: 112.31 KB / Downloads: 2)
<!-- end: postbit_attachments_attachment --><br />
<br />
<br />
<br />
Versus where I would <span style="font-style: italic;" class="mycode_i">expect</span> it to end up:<br />
<br />
<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=114" target="_blank" title="">Screenshot from 2023-06-15 15-03-34.png</a> (Size: 119.13 KB / Downloads: 2)
<!-- end: postbit_attachments_attachment --><br />
<br />
<br />
<br />
Versus how it looks on a forum with another theme (the main mybb.org forums):<br />
<br />
<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=115" target="_blank" title="">Screenshot from 2023-06-15 15-05-38.png</a> (Size: 340.51 KB / Downloads: 2)
<!-- end: postbit_attachments_attachment --><br />
<br />
<br />
<br />
Any advice on how to fix this? At least on our own forums (example <a href="https://forum.jellyfin.org/thread-13-post-41.html#pid41" target="_blank" rel="noopener" class="mycode_url">https://forum.jellyfin.org/thread-13-post-41.html#pid41</a>), this looks even more cut-off than here due to the presence of some other plugins (specifically, ABP Solve It) adding more padding around the message content, and I would thus very much like to fix it.<br />
<hr class="mycode_hr" />
And ended up finding a solution based on some Stack Overflow posts, specifically <a href="https://stackoverflow.com/a/55683966" target="_blank" rel="noopener" class="mycode_url">https://stackoverflow.com/a/55683966</a><br />
<br />
Adding the following into `global.css` will correct this. For my forum, 68px was the correct offset to show a tiny sliver of the background before the main post body, but you can of course adjust this to fit your needs.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>:target {<br />
        scroll-margin-top: 68px;<br />
        scroll-padding-top: 68px;<br />
        scroll-snap-margin-top: 68px;<br />
        scroll-snap-padding-top: 68px;<br />
}</code></div></div><br />
It seems like it's the `padding` ones that actually do it, but I kept both for good measure. The `scroll-snap` versions are apparently for Safari support, and again kept for good measur]]></description>
			<content:encoded><![CDATA[I'm using the Emerald theme in both light and dark variants. However the issue I'm describing seems to affect every forum with this theme, including this one.<br />
<br />
<br />
<br />
When clicking a post ID link (e.g. <a href="https://developement.design/forum/showthread.php?tid=13833&amp;pid=28969#pid28969" target="_blank" rel="noopener" class="mycode_url">https://developement.design/forum/showth...9#pid28969</a>), the page view jumps to the start of the <span style="font-style: italic;" class="mycode_i">content</span> of the message, rather to the head of the post like the default theme.<br />
<br />
<br />
<br />
Here's an example image of what is happening (on this forum):<br />
<br />
<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=113" target="_blank" title="">Screenshot from 2023-06-15 15-02-50.png</a> (Size: 112.31 KB / Downloads: 2)
<!-- end: postbit_attachments_attachment --><br />
<br />
<br />
<br />
Versus where I would <span style="font-style: italic;" class="mycode_i">expect</span> it to end up:<br />
<br />
<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=114" target="_blank" title="">Screenshot from 2023-06-15 15-03-34.png</a> (Size: 119.13 KB / Downloads: 2)
<!-- end: postbit_attachments_attachment --><br />
<br />
<br />
<br />
Versus how it looks on a forum with another theme (the main mybb.org forums):<br />
<br />
<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=115" target="_blank" title="">Screenshot from 2023-06-15 15-05-38.png</a> (Size: 340.51 KB / Downloads: 2)
<!-- end: postbit_attachments_attachment --><br />
<br />
<br />
<br />
Any advice on how to fix this? At least on our own forums (example <a href="https://forum.jellyfin.org/thread-13-post-41.html#pid41" target="_blank" rel="noopener" class="mycode_url">https://forum.jellyfin.org/thread-13-post-41.html#pid41</a>), this looks even more cut-off than here due to the presence of some other plugins (specifically, ABP Solve It) adding more padding around the message content, and I would thus very much like to fix it.<br />
<hr class="mycode_hr" />
And ended up finding a solution based on some Stack Overflow posts, specifically <a href="https://stackoverflow.com/a/55683966" target="_blank" rel="noopener" class="mycode_url">https://stackoverflow.com/a/55683966</a><br />
<br />
Adding the following into `global.css` will correct this. For my forum, 68px was the correct offset to show a tiny sliver of the background before the main post body, but you can of course adjust this to fit your needs.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>:target {<br />
        scroll-margin-top: 68px;<br />
        scroll-padding-top: 68px;<br />
        scroll-snap-margin-top: 68px;<br />
        scroll-snap-padding-top: 68px;<br />
}</code></div></div><br />
It seems like it's the `padding` ones that actually do it, but I kept both for good measure. The `scroll-snap` versions are apparently for Safari support, and again kept for good measur]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Fixed] 403 error when trying to import theme XML]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27997</link>
			<pubDate>Wed, 24 May 2023 20:56:58 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=3295">CrtlAltNoob</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27997</guid>
			<description><![CDATA[<span style="font-family: 'Open Sans', sans-serif;" class="mycode_font">Hi,</span><br />
<br />
<span style="font-family: 'Open Sans', sans-serif;" class="mycode_font">I just purchased the extended emerald theme, but I keep getting a 403 error when I try to import the theme.</span><br />
<span style="font-family: 'Open Sans', sans-serif;" class="mycode_font">Not sure if this is an issue with the theme XML or with my MyBB installation.</span>]]></description>
			<content:encoded><![CDATA[<span style="font-family: 'Open Sans', sans-serif;" class="mycode_font">Hi,</span><br />
<br />
<span style="font-family: 'Open Sans', sans-serif;" class="mycode_font">I just purchased the extended emerald theme, but I keep getting a 403 error when I try to import the theme.</span><br />
<span style="font-family: 'Open Sans', sans-serif;" class="mycode_font">Not sure if this is an issue with the theme XML or with my MyBB installation.</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Dark Extended]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27996</link>
			<pubDate>Sun, 14 May 2023 17:22:28 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=3288">joogie</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27996</guid>
			<description><![CDATA[So i changed the defualt color of the dark extended theme via the plugin. When ever you refresh the page or click to go somewhere else it flashes the default green color still. its a quick flash and then back to the color i used]]></description>
			<content:encoded><![CDATA[So i changed the defualt color of the dark extended theme via the plugin. When ever you refresh the page or click to go somewhere else it flashes the default green color still. its a quick flash and then back to the color i used]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Updated Theme]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27986</link>
			<pubDate>Fri, 20 Jan 2023 03:09:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=837">pkohn117</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27986</guid>
			<description><![CDATA[Hello, <br />
<br />
I purchased this already and I'm trying to upgrade to PHP 8 but the theme is throwing a bunch of errors.  I believe it's because it's not up to date.  How do I get the latest version?]]></description>
			<content:encoded><![CDATA[Hello, <br />
<br />
I purchased this already and I'm trying to upgrade to PHP 8 but the theme is throwing a bunch of errors.  I believe it's because it's not up to date.  How do I get the latest version?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[EMERALD (extended): JS Uncaught TypeError & Expand/Collaped boxes]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27981</link>
			<pubDate>Mon, 28 Nov 2022 14:32:45 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=3195">Vitor Costa (APDCA IT)</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27981</guid>
			<description><![CDATA[Hi guys :-)<br />
<br />
I found that on EXTENDED VERSION OF EMERALD every time I click to expand or collapse the tabs on the user CP it generates a JS error. I tested also here to validade if it was me only or so, but seems that the same error occurs here in this forum ...<br />
<br />
Don't know also if that could be related with the fact that when we revisit the user CP the browser don't "remember" the last expanded/collapsed state. Maybe not supposed to... don't know.<br />
<img src="https://developement.design/forum/attachment.php?aid=102" loading="lazy"  width="800" height="574" alt="[Image: attachment.php?aid=102]" class="mycode_img" /><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>general.js?ver=1804:690 Uncaught TypeError: Cannot read properties of undefined (reading 'replace')<br />
    at Object.expandCollapse (general.js?ver=1804:690:89)<br />
    at HTMLElement.&lt;anonymous&gt; (general.js?ver=1804:666:18)<br />
    at HTMLElement.dispatch (jquery.js?ver=1804:2:43090)<br />
    at v.handle (jquery.js?ver=1804:2:41074)</code></div></div><br />
<br />
<hr class="mycode_hr" />
EDIT: <br />
A bit replying to myself <img src="https://developement.design/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> ...<br />
<br />
I tracked the funcion a bit in the general.js file.<br />
 <br />
I think It can be something to do with the fact that the theme is not using images to represent the maximized and minimized, and its using font awesome icons to make those representation so the tag "img" a his "src" are null.<br />
<br />
Also then, as it fails, it doesn't run the saveCollapsed function etc etc... <br />
<img src="https://developement.design/forum/attachment.php?aid=103" loading="lazy"  width="800" height="239" alt="[Image: attachment.php?aid=103]" class="mycode_img" /><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(expandedItem.length)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var expState = + !expandedItem.is(":hidden"),<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;expcolImg = element.attr("src"),&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;expText = [lang.expcol_collapse, lang.expcol_expand];<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;expandedItem.toggle("fast", this.expCallback(controls, expState));<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;element.attr({<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"alt": expText[expState],<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"title": expText[expState],<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"src": expState ? expcolImg.replace('collapse.', 'collapse_collapsed.') : expcolImg.replace('collapse_collapsed.', 'collapse.')<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;})<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.parents(':eq(1)').toggleClass(element.parents(':eq(1)').hasClass('thead') ? 'thead_collapsed' : 'tcat_collapse_collapsed');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.saveCollapsed(controls, expState);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return true;</code></div></div><br />
<br />
EDIT again... last time. <br />
By now I edited the file general.js, and in the "expandCollapse: function(element)" I made a check typeof to test if it is <span style="font-style: italic;" class="mycode_i">undefined</span>  before procede.<br />
All work now without erros and the state of the boxes keeps "remembered"  <img src="https://developement.design/forum/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" />  as it is saved in the cookie.<br />
<br />
<img src="https://developement.design/forum/attachment.php?aid=104" loading="lazy"  alt="[Image: attachment.php?aid=104]" class="mycode_img" /><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=102" target="_blank" title="">Captura de ecrã 2022-11-28, às 14.17.01.jpg</a> (Size: 301.39 KB / Downloads: 8)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=103" target="_blank" title="">Captura de ecrã 2022-11-28, às 15.08.10.png</a> (Size: 140.09 KB / Downloads: 9)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=104" target="_blank" title="">Captura de ecrã 2022-11-28, às 15.34.40.jpg</a> (Size: 86.57 KB / Downloads: 8)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hi guys :-)<br />
<br />
I found that on EXTENDED VERSION OF EMERALD every time I click to expand or collapse the tabs on the user CP it generates a JS error. I tested also here to validade if it was me only or so, but seems that the same error occurs here in this forum ...<br />
<br />
Don't know also if that could be related with the fact that when we revisit the user CP the browser don't "remember" the last expanded/collapsed state. Maybe not supposed to... don't know.<br />
<img src="https://developement.design/forum/attachment.php?aid=102" loading="lazy"  width="800" height="574" alt="[Image: attachment.php?aid=102]" class="mycode_img" /><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>general.js?ver=1804:690 Uncaught TypeError: Cannot read properties of undefined (reading 'replace')<br />
    at Object.expandCollapse (general.js?ver=1804:690:89)<br />
    at HTMLElement.&lt;anonymous&gt; (general.js?ver=1804:666:18)<br />
    at HTMLElement.dispatch (jquery.js?ver=1804:2:43090)<br />
    at v.handle (jquery.js?ver=1804:2:41074)</code></div></div><br />
<br />
<hr class="mycode_hr" />
EDIT: <br />
A bit replying to myself <img src="https://developement.design/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> ...<br />
<br />
I tracked the funcion a bit in the general.js file.<br />
 <br />
I think It can be something to do with the fact that the theme is not using images to represent the maximized and minimized, and its using font awesome icons to make those representation so the tag "img" a his "src" are null.<br />
<br />
Also then, as it fails, it doesn't run the saveCollapsed function etc etc... <br />
<img src="https://developement.design/forum/attachment.php?aid=103" loading="lazy"  width="800" height="239" alt="[Image: attachment.php?aid=103]" class="mycode_img" /><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(expandedItem.length)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var expState = + !expandedItem.is(":hidden"),<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;expcolImg = element.attr("src"),&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;expText = [lang.expcol_collapse, lang.expcol_expand];<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;expandedItem.toggle("fast", this.expCallback(controls, expState));<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;element.attr({<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"alt": expText[expState],<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"title": expText[expState],<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"src": expState ? expcolImg.replace('collapse.', 'collapse_collapsed.') : expcolImg.replace('collapse_collapsed.', 'collapse.')<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;})<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.parents(':eq(1)').toggleClass(element.parents(':eq(1)').hasClass('thead') ? 'thead_collapsed' : 'tcat_collapse_collapsed');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.saveCollapsed(controls, expState);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return true;</code></div></div><br />
<br />
EDIT again... last time. <br />
By now I edited the file general.js, and in the "expandCollapse: function(element)" I made a check typeof to test if it is <span style="font-style: italic;" class="mycode_i">undefined</span>  before procede.<br />
All work now without erros and the state of the boxes keeps "remembered"  <img src="https://developement.design/forum/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" />  as it is saved in the cookie.<br />
<br />
<img src="https://developement.design/forum/attachment.php?aid=104" loading="lazy"  alt="[Image: attachment.php?aid=104]" class="mycode_img" /><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=102" target="_blank" title="">Captura de ecrã 2022-11-28, às 14.17.01.jpg</a> (Size: 301.39 KB / Downloads: 8)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=103" target="_blank" title="">Captura de ecrã 2022-11-28, às 15.08.10.png</a> (Size: 140.09 KB / Downloads: 9)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=104" target="_blank" title="">Captura de ecrã 2022-11-28, às 15.34.40.jpg</a> (Size: 86.57 KB / Downloads: 8)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Footer not fixed-bottom - Extended Version Emerald]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27976</link>
			<pubDate>Fri, 18 Nov 2022 16:43:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=3195">Vitor Costa (APDCA IT)</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27976</guid>
			<description><![CDATA[Hi... I found that the footer in this theme is does not get fixed to the bottom of the browser. For example with pages with smaller height content the footer get up and leves empty background space below.<br />
<br />
Is it suppose be like that? I compared with the free version of Emerald... (see picture attached)<br />
Also I realized that this same D&amp;D Forum theme has same behaviour.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=98" target="_blank" title="">Captura de ecrã 2022-11-18, às 16.34.08.jpg</a> (Size: 211.66 KB / Downloads: 2)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=101" target="_blank" title="">this_forum.jpg</a> (Size: 179.59 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hi... I found that the footer in this theme is does not get fixed to the bottom of the browser. For example with pages with smaller height content the footer get up and leves empty background space below.<br />
<br />
Is it suppose be like that? I compared with the free version of Emerald... (see picture attached)<br />
Also I realized that this same D&amp;D Forum theme has same behaviour.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=98" target="_blank" title="">Captura de ecrã 2022-11-18, às 16.34.08.jpg</a> (Size: 211.66 KB / Downloads: 2)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://developement.design/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=101" target="_blank" title="">this_forum.jpg</a> (Size: 179.59 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[unsuported jquery .error() method]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27975</link>
			<pubDate>Fri, 18 Nov 2022 15:55:27 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=3195">Vitor Costa (APDCA IT)</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27975</guid>
			<description><![CDATA[Hi<br />
I brought the Light Emerald Extended version... Despite this I was using (configuring) the Emerald Light (free) since the future members of the forum are a bit anti-tech and I want to keep layout most simple possible...<br />
<br />
I found my browsers giving an javascript error:<br />
<br />
<span style="font-style: italic;" class="mycode_i"><span style="color: #e82a1f;" class="mycode_color">TypeError: &#36;(".author_avatar img").error is not a function. (In '&#36;(".author_avatar img").error(function () {</span></span><br />
<span style="font-style: italic;" class="mycode_i"><span style="color: #e82a1f;" class="mycode_color">&#36;(this).unbind("error").closest('.author_avatar').remove();</span></span><br />
<span style="font-style: italic;" class="mycode_i"><span style="color: #e82a1f;" class="mycode_color">})', '&#36;(".author_avatar img").error' is undefined)</span></span><br />
<br />
<br />
this is present templates:<br />
<br />
showthread<br />
private_read<br />
private_send<br />
newthread<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type="text/javascript"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;(".author_avatar img").error(function () {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;(this).unbind("error").closest('.author_avatar').remove();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;});<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/script&gt;</code></div></div><br />
<br />
Seems that que actual JQuery libs versions don't support .error() method anymore... I was thinking on comment (or remove) this script, what could be broke if then?  Or can we replace that with equivalent? <br />
<br />
I installed the Light Emerald Extended version to compare and it runs same error...<br />
<br />
thanks]]></description>
			<content:encoded><![CDATA[Hi<br />
I brought the Light Emerald Extended version... Despite this I was using (configuring) the Emerald Light (free) since the future members of the forum are a bit anti-tech and I want to keep layout most simple possible...<br />
<br />
I found my browsers giving an javascript error:<br />
<br />
<span style="font-style: italic;" class="mycode_i"><span style="color: #e82a1f;" class="mycode_color">TypeError: &#36;(".author_avatar img").error is not a function. (In '&#36;(".author_avatar img").error(function () {</span></span><br />
<span style="font-style: italic;" class="mycode_i"><span style="color: #e82a1f;" class="mycode_color">&#36;(this).unbind("error").closest('.author_avatar').remove();</span></span><br />
<span style="font-style: italic;" class="mycode_i"><span style="color: #e82a1f;" class="mycode_color">})', '&#36;(".author_avatar img").error' is undefined)</span></span><br />
<br />
<br />
this is present templates:<br />
<br />
showthread<br />
private_read<br />
private_send<br />
newthread<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type="text/javascript"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;(".author_avatar img").error(function () {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;(this).unbind("error").closest('.author_avatar').remove();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;});<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/script&gt;</code></div></div><br />
<br />
Seems that que actual JQuery libs versions don't support .error() method anymore... I was thinking on comment (or remove) this script, what could be broke if then?  Or can we replace that with equivalent? <br />
<br />
I installed the Light Emerald Extended version to compare and it runs same error...<br />
<br />
thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Light] Emerald Extended, get it more simple like Emerald Light]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27974</link>
			<pubDate>Tue, 15 Nov 2022 19:16:12 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=3195">Vitor Costa (APDCA IT)</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27974</guid>
			<description><![CDATA[Hi... hi have Emerald Light installed, and brought the [Light] Emerald Extended because it seems to me that can be costumised a bit more. <br />
I loved the simplicity of the Emerald Light, also I think is de ideal for our members (keep simple) since they are a bit problematic "computer users".  Is it possible to get [Light] Emerald Extended to be more like Emerald Light? just asking... I am new on myBB, but I am use to Wordpress and programing php.<br />
<br />
thanks]]></description>
			<content:encoded><![CDATA[Hi... hi have Emerald Light installed, and brought the [Light] Emerald Extended because it seems to me that can be costumised a bit more. <br />
I loved the simplicity of the Emerald Light, also I think is de ideal for our members (keep simple) since they are a bit problematic "computer users".  Is it possible to get [Light] Emerald Extended to be more like Emerald Light? just asking... I am new on myBB, but I am use to Wordpress and programing php.<br />
<br />
thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Possible to don't use color picker ?]]></title>
			<link>https://developement.design/forum/showthread.php?tid=27934</link>
			<pubDate>Mon, 14 Jun 2021 16:46:14 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=2855">LuFo</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=27934</guid>
			<description><![CDATA[Hi AmazOuz, I think buy your theme, but I want customize it and don't want let user use their own color. Is it easily to remove this feature, and customize the color sheme of the theme ?<br />
<br />
PS: In same time, I find the input for thread subject really small in width, it's normal ?<br />
<br />
Thanks in advance for your answer <img src="https://developement.design/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
<br />
Salut AmazOuz, je pense acheter ton thème, mais je souhaiterai le personnaliser et aimerai que les membres ne puissent pas utiliser le colorpicker pour utiliser leur propre couleur. Est-ce possible de supprimer facilement cette option ?<br />
<br />
PS: le champ de texte pour le sujet de la discussion est vraiment peu large, est-ce normal ou un bug ? (FF up to date / W10)<br />
<br />
Merci d'avace pour ta réponse <img src="https://developement.design/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[Hi AmazOuz, I think buy your theme, but I want customize it and don't want let user use their own color. Is it easily to remove this feature, and customize the color sheme of the theme ?<br />
<br />
PS: In same time, I find the input for thread subject really small in width, it's normal ?<br />
<br />
Thanks in advance for your answer <img src="https://developement.design/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
<br />
Salut AmazOuz, je pense acheter ton thème, mais je souhaiterai le personnaliser et aimerai que les membres ne puissent pas utiliser le colorpicker pour utiliser leur propre couleur. Est-ce possible de supprimer facilement cette option ?<br />
<br />
PS: le champ de texte pour le sujet de la discussion est vraiment peu large, est-ce normal ou un bug ? (FF up to date / W10)<br />
<br />
Merci d'avace pour ta réponse <img src="https://developement.design/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Fixed] How To Change The Font Size Of My Forum]]></title>
			<link>https://developement.design/forum/showthread.php?tid=13833</link>
			<pubDate>Sun, 21 Mar 2021 11:15:13 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=2690">HighKing</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=13833</guid>
			<description><![CDATA[Hi everyone,<br />
<br />
I've spent a few days now, trying to figure-out how to change the font-size of my forum, to no avail. I have fiddled with the font-size properties of various css-files of the "Emerald Extended Theme" (in the "Templates and Styles" section of MyBB) without any luck.<br />
<br />
I particularly do not like the font-size of new thread-posts, as I consider them too tiny.<br />
<br />
I'd greatly appreciate any help on this.<br />
<br />
Thanks, in advance.]]></description>
			<content:encoded><![CDATA[Hi everyone,<br />
<br />
I've spent a few days now, trying to figure-out how to change the font-size of my forum, to no avail. I have fiddled with the font-size properties of various css-files of the "Emerald Extended Theme" (in the "Templates and Styles" section of MyBB) without any luck.<br />
<br />
I particularly do not like the font-size of new thread-posts, as I consider them too tiny.<br />
<br />
I'd greatly appreciate any help on this.<br />
<br />
Thanks, in advance.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Where is the Emerald Extended Plugin?]]></title>
			<link>https://developement.design/forum/showthread.php?tid=2742</link>
			<pubDate>Thu, 08 Oct 2020 20:39:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=2035">MrXisBack</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=2742</guid>
			<description><![CDATA[I got the download files from GumRoad. but it doesn't have the Emerald Extended plugin?<br />
<br />
Where is it?]]></description>
			<content:encoded><![CDATA[I got the download files from GumRoad. but it doesn't have the Emerald Extended plugin?<br />
<br />
Where is it?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Site Can't Be Reached??]]></title>
			<link>https://developement.design/forum/showthread.php?tid=2312</link>
			<pubDate>Sun, 19 Jul 2020 02:02:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=1643">ahopkins321</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=2312</guid>
			<description><![CDATA[<span style="font-size: small;" class="mycode_size"><span style="font-family: Roboto Condensed;" class="mycode_font">I'm not able to import the Emerald Extended theme, other themes are imported without issue even the regular Emerald theme, this one though takes me to a "This Site Can't Be Reached" page. Need some assistance please! I have tried this on different computers on different networks and still no luck. Any suggestions?</span></span><br />
<br />
<span style="font-size: small;" class="mycode_size"><span style="font-family: Roboto Condensed;" class="mycode_font"><img src="https://community.mybb.com/attachment.php?aid=43067" loading="lazy"  alt="[Image: attachment.php?aid=43067]" class="mycode_img" /></span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: small;" class="mycode_size"><span style="font-family: Roboto Condensed;" class="mycode_font">I'm not able to import the Emerald Extended theme, other themes are imported without issue even the regular Emerald theme, this one though takes me to a "This Site Can't Be Reached" page. Need some assistance please! I have tried this on different computers on different networks and still no luck. Any suggestions?</span></span><br />
<br />
<span style="font-size: small;" class="mycode_size"><span style="font-family: Roboto Condensed;" class="mycode_font"><img src="https://community.mybb.com/attachment.php?aid=43067" loading="lazy"  alt="[Image: attachment.php?aid=43067]" class="mycode_img" /></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Issues with theme color change and general issues]]></title>
			<link>https://developement.design/forum/showthread.php?tid=2293</link>
			<pubDate>Fri, 17 Jul 2020 05:58:23 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=1622">EduKenzay</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=2293</guid>
			<description><![CDATA[Buenas noches, recientemente compré la versión extendida del tema Esmeralda, donde hoy no puedo cambiar los colores de los temas, ya que cuando trato de hacerlo con el Panel se pone verde por defecto, me gustaría saber dónde puedo cambiarlo o qué puedo hacer. hacer para resolver este problema?<br />
<br />
De la misma manera, me gustaría saber cómo poner el banner en movimiento.<br />
<br />
¿También hay una manera de cambiar el ancla de blanco a negro en la versión extendida?<br />
<br />
Espero su respuesta de antemano, muchas gracias ...]]></description>
			<content:encoded><![CDATA[Buenas noches, recientemente compré la versión extendida del tema Esmeralda, donde hoy no puedo cambiar los colores de los temas, ya que cuando trato de hacerlo con el Panel se pone verde por defecto, me gustaría saber dónde puedo cambiarlo o qué puedo hacer. hacer para resolver este problema?<br />
<br />
De la misma manera, me gustaría saber cómo poner el banner en movimiento.<br />
<br />
¿También hay una manera de cambiar el ancla de blanco a negro en la versión extendida?<br />
<br />
Espero su respuesta de antemano, muchas gracias ...]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Emerald Dark and light]]></title>
			<link>https://developement.design/forum/showthread.php?tid=2273</link>
			<pubDate>Mon, 13 Jul 2020 18:37:45 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=1599">Niclas_M13</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=2273</guid>
			<description><![CDATA[Hello,<br />
<br />
where can I change my Header/Banner + edit the text, of the Buttons on top on the sites + how can I edit the Infos and the Links to Youtube, and so on, on the bottom + how can I change the Links and the "More" list?<br />
<br />
Best regards Niclas M.]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
where can I change my Header/Banner + edit the text, of the Buttons on top on the sites + how can I edit the Infos and the Links to Youtube, and so on, on the bottom + how can I change the Links and the "More" list?<br />
<br />
Best regards Niclas M.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problem with something on posting new post]]></title>
			<link>https://developement.design/forum/showthread.php?tid=2272</link>
			<pubDate>Mon, 13 Jul 2020 12:18:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://developement.design/forum/member.php?action=profile&uid=1620">epic</a>]]></dc:creator>
			<guid isPermaLink="false">https://developement.design/forum/showthread.php?tid=2272</guid>
			<description><![CDATA[Here is an attachment on what the problem is<br />
<br />
<br />
<a href="https://i.imgur.com/rj6Urlz.jpg" target="_blank" rel="noopener" class="mycode_url">https://i.imgur.com/rj6Urlz.jpg</a>]]></description>
			<content:encoded><![CDATA[Here is an attachment on what the problem is<br />
<br />
<br />
<a href="https://i.imgur.com/rj6Urlz.jpg" target="_blank" rel="noopener" class="mycode_url">https://i.imgur.com/rj6Urlz.jpg</a>]]></content:encoded>
		</item>
	</channel>
</rss>