<?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[WA Forums - All Forums]]></title>
		<link>https://webassist-pro.com/WAforum/</link>
		<description><![CDATA[WA Forums - https://webassist-pro.com/WAforum]]></description>
		<pubDate>Mon, 13 Apr 2026 06:15:40 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Reply to Bill Hobbs re PHP 8.2 Upgrade]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=38</link>
			<pubDate>Mon, 22 Sep 2025 09:34:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=3">Mags</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=38</guid>
			<description><![CDATA[Hi Bill, I was unable to post a reply on the WA Forum, so until that's fixed I hope you see this!<br />
<br />
The error:<br />
<br />
Fatal error: Uncaught Error: Call to undefined function mysqli_init()<br />
<br />
means that PHP can't find the mysqli_init() function, which only exists if the MySQLi extension is installed and enabled in your PHP environment.<br />
<br />
Check if the MySQLi extension is installed - download the attached phpinfo.php file and upload it to your server. Access the page in the browser, then search the page for "mysqli".<br />
<br />
If you don’t see it, the extension is not installed or not enabled.<br />
<br />
You may need to ask your server supplier to enable it, or let me know if you need help. Once activated, check the phpinfo page again.<br />
<br />
You should remove the phpinfo.php file once you've finished with it for security purposes.<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://webassist-pro.com/WAforum/images/attachtypes/php.png" title="PHP File" border="0" alt=".php" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6" target="_blank" title="">phpinfo.php</a> (Size: 22 bytes / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hi Bill, I was unable to post a reply on the WA Forum, so until that's fixed I hope you see this!<br />
<br />
The error:<br />
<br />
Fatal error: Uncaught Error: Call to undefined function mysqli_init()<br />
<br />
means that PHP can't find the mysqli_init() function, which only exists if the MySQLi extension is installed and enabled in your PHP environment.<br />
<br />
Check if the MySQLi extension is installed - download the attached phpinfo.php file and upload it to your server. Access the page in the browser, then search the page for "mysqli".<br />
<br />
If you don’t see it, the extension is not installed or not enabled.<br />
<br />
You may need to ask your server supplier to enable it, or let me know if you need help. Once activated, check the phpinfo page again.<br />
<br />
You should remove the phpinfo.php file once you've finished with it for security purposes.<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://webassist-pro.com/WAforum/images/attachtypes/php.png" title="PHP File" border="0" alt=".php" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6" target="_blank" title="">phpinfo.php</a> (Size: 22 bytes / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[not seeing database error]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=37</link>
			<pubDate>Tue, 26 Aug 2025 17:18:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=37</guid>
			<description><![CDATA[I found a solution when setting up a site and WA can't see the tables; this was php chat engineer suggestion.<br />
<br />
My server was set to 8.1. Chat says WA was written for 7.4. I reset this domain to 7.4, made the connection file, then changed domain back to 8.1]]></description>
			<content:encoded><![CDATA[I found a solution when setting up a site and WA can't see the tables; this was php chat engineer suggestion.<br />
<br />
My server was set to 8.1. Chat says WA was written for 7.4. I reset this domain to 7.4, made the connection file, then changed domain back to 8.1]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Latest version of Chrome throwing errors for PVii js files]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=31</link>
			<pubDate>Fri, 07 Feb 2025 15:33:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=8">David Buchholz</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=31</guid>
			<description><![CDATA[The latest version of Chrome has deprecated the unload event, see <a href="https://developer.chrome.com/docs/web-platform/deprecating-unload" target="_blank" rel="noopener" class="mycode_url">https://developer.chrome.com/docs/web-pl...ing-unload</a>, this is causing issues with a lot of PVII's scripts. In my case on the site I am working on both AMM and MBX are affected.<br />
<br />
The fix is to change the unload event to before unload like so:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function P7_MBXaddLoad(){<br />
var ie = P7_MBXgetIEver();<br />
if (!document.getElementById || (ie &gt; 0 &amp;&amp; ie &lt; 6)) {<br />
return;<br />
}<br />
if (window.addEventListener) {<br />
document.addEventListener("DOMContentLoaded", P7_MBXinit, false);<br />
window.addEventListener("load", P7_MBXinit, false);<br />
//window.addEventListener("unload", P7_MBXbb, false);<br />
window.addEventListener("beforeunload", P7_MBXbb, false); // Changed from unload to beforeunload<br />
document.addEventListener("keydown", P7_MBXkey, false);<br />
window.addEventListener("resize", P7_MBXrsz, false);<br />
} else if (window.attachEvent) {<br />
document.write("&lt;script id=p7ie_mbx defer src=&#92;"//:&#92;"&gt;&lt;&#92;/script&gt;");<br />
document.getElementById("p7ie_mbx").onreadystatechange = function(){<br />
if (this.readyState == "complete") {<br />
if (p7MBX.ctl.length &gt; 0) {<br />
P7_MBXinit();<br />
}<br />
}<br />
};<br />
window.attachEvent("onload", P7_MBXinit);<br />
window.attachEvent("onunload", P7_MBXbb);<br />
document.attachEvent("onkeydown", P7_MBXkey);<br />
window.attachEvent("onresize", P7_MBXrsz);<br />
}<br />
}</code></div></div><br />
<br />
Hope that helps]]></description>
			<content:encoded><![CDATA[The latest version of Chrome has deprecated the unload event, see <a href="https://developer.chrome.com/docs/web-platform/deprecating-unload" target="_blank" rel="noopener" class="mycode_url">https://developer.chrome.com/docs/web-pl...ing-unload</a>, this is causing issues with a lot of PVII's scripts. In my case on the site I am working on both AMM and MBX are affected.<br />
<br />
The fix is to change the unload event to before unload like so:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function P7_MBXaddLoad(){<br />
var ie = P7_MBXgetIEver();<br />
if (!document.getElementById || (ie &gt; 0 &amp;&amp; ie &lt; 6)) {<br />
return;<br />
}<br />
if (window.addEventListener) {<br />
document.addEventListener("DOMContentLoaded", P7_MBXinit, false);<br />
window.addEventListener("load", P7_MBXinit, false);<br />
//window.addEventListener("unload", P7_MBXbb, false);<br />
window.addEventListener("beforeunload", P7_MBXbb, false); // Changed from unload to beforeunload<br />
document.addEventListener("keydown", P7_MBXkey, false);<br />
window.addEventListener("resize", P7_MBXrsz, false);<br />
} else if (window.attachEvent) {<br />
document.write("&lt;script id=p7ie_mbx defer src=&#92;"//:&#92;"&gt;&lt;&#92;/script&gt;");<br />
document.getElementById("p7ie_mbx").onreadystatechange = function(){<br />
if (this.readyState == "complete") {<br />
if (p7MBX.ctl.length &gt; 0) {<br />
P7_MBXinit();<br />
}<br />
}<br />
};<br />
window.attachEvent("onload", P7_MBXinit);<br />
window.attachEvent("onunload", P7_MBXbb);<br />
document.attachEvent("onkeydown", P7_MBXkey);<br />
window.attachEvent("onresize", P7_MBXrsz);<br />
}<br />
}</code></div></div><br />
<br />
Hope that helps]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A new server threat: AI bots]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=30</link>
			<pubDate>Wed, 22 Jan 2025 21:38:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=30</guid>
			<description><![CDATA[I have my clients on a dedicated server and it was brought to its knees by bots.  Amazon and AI bots.<br />
<br />
Solution was to create a robots.txt file with this inside:<br />
<br />
User-agent: GPTBot<br />
Disallow: /<br />
<br />
User-agent: Amazonbot<br />
Disallow: / <br />
<br />
<br />
HTH someone else.]]></description>
			<content:encoded><![CDATA[I have my clients on a dedicated server and it was brought to its knees by bots.  Amazon and AI bots.<br />
<br />
Solution was to create a robots.txt file with this inside:<br />
<br />
User-agent: GPTBot<br />
Disallow: /<br />
<br />
User-agent: Amazonbot<br />
Disallow: / <br />
<br />
<br />
HTH someone else.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Extension Manager]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=29</link>
			<pubDate>Sun, 19 Jan 2025 00:57:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=29</guid>
			<description><![CDATA[A missing post on WA forum:<br />
<br />
I encountered this a few weeks ago with a non-WA extension (P7). I received this information. <br />
<br />
Gerry wrote:<br />
<br />
The latest Adobe Creative Cloud update has introduced a file corruption issue in the Dreamweaver menus.xml and insertbar.xml files. This will cause extensions to not show in the Dreamweaver Insert menu and the Insert Panel. Hopefully Adobe will fix this soon.<br />
<br />
You have a corruption in the underlying Dreamweaver files that now needs to be fixed.<br />
<br />
1. Do NOT use the Anastasiy’s Extension Manager!<br />
<br />
2. ONLY use the DMXzone Extension Manager.<br />
<br />
3. Follow the instructions on the page link I sent. The Dreamweaver configuration folder is corrupt and needs to be replaced with a default configuration. The instructions here are very important, follow each step:<br />
<br />
<a href="https://www.projectseven.com/products/ex-man/info.htm#cc-issue" target="_blank" rel="noopener" class="mycode_url">https://www.projectseven.com/products/ex...m#cc-issue</a>  (this is no longer an active link)<br />
<br />
<br />
First, be sure that you have re-started Dreamweaver after you renamed the configuration folder. Then shut Dreamweaver down.<br />
<br />
In the DMXzone Extension Manager, if your extensions are listed as installed then you must first un-install each. Just click the X to the right of each extension. This will clear the extension database. Now you can install each one, one at a time.<br />
<br />
Be sure that Dreamweaver is shut down during this operation.<br />
<br />
~~HTH~~~<br />
<br />
more notes<br />
<br />
The missing link says to first shut down DW. Rename the config folder. Restart DW. Shut down DW. UNINSTALL all ext., then reinstall all extensions. Then restart DW.]]></description>
			<content:encoded><![CDATA[A missing post on WA forum:<br />
<br />
I encountered this a few weeks ago with a non-WA extension (P7). I received this information. <br />
<br />
Gerry wrote:<br />
<br />
The latest Adobe Creative Cloud update has introduced a file corruption issue in the Dreamweaver menus.xml and insertbar.xml files. This will cause extensions to not show in the Dreamweaver Insert menu and the Insert Panel. Hopefully Adobe will fix this soon.<br />
<br />
You have a corruption in the underlying Dreamweaver files that now needs to be fixed.<br />
<br />
1. Do NOT use the Anastasiy’s Extension Manager!<br />
<br />
2. ONLY use the DMXzone Extension Manager.<br />
<br />
3. Follow the instructions on the page link I sent. The Dreamweaver configuration folder is corrupt and needs to be replaced with a default configuration. The instructions here are very important, follow each step:<br />
<br />
<a href="https://www.projectseven.com/products/ex-man/info.htm#cc-issue" target="_blank" rel="noopener" class="mycode_url">https://www.projectseven.com/products/ex...m#cc-issue</a>  (this is no longer an active link)<br />
<br />
<br />
First, be sure that you have re-started Dreamweaver after you renamed the configuration folder. Then shut Dreamweaver down.<br />
<br />
In the DMXzone Extension Manager, if your extensions are listed as installed then you must first un-install each. Just click the X to the right of each extension. This will clear the extension database. Now you can install each one, one at a time.<br />
<br />
Be sure that Dreamweaver is shut down during this operation.<br />
<br />
~~HTH~~~<br />
<br />
more notes<br />
<br />
The missing link says to first shut down DW. Rename the config folder. Restart DW. Shut down DW. UNINSTALL all ext., then reinstall all extensions. Then restart DW.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[P7 IGM Image Gallery Magic]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=27</link>
			<pubDate>Fri, 10 Jan 2025 17:54:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=28">LanaB</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=27</guid>
			<description><![CDATA[I have a slideshow using P7 IGM Image Gallery Magic. My client wants to have audio added to it. How do I add audio to IGM or do I use an alternate procedure?<br />
LINK: <a href="http://www.dreambuildersofthefloridakeys.com/gallery-custom-homes-builders-dream.html" target="_blank" rel="noopener" class="mycode_url">http://www.dreambuildersofthefloridakeys...dream.html</a><br />
I appreciate direction!<br />
Thanks,<br />
Lana]]></description>
			<content:encoded><![CDATA[I have a slideshow using P7 IGM Image Gallery Magic. My client wants to have audio added to it. How do I add audio to IGM or do I use an alternate procedure?<br />
LINK: <a href="http://www.dreambuildersofthefloridakeys.com/gallery-custom-homes-builders-dream.html" target="_blank" rel="noopener" class="mycode_url">http://www.dreambuildersofthefloridakeys...dream.html</a><br />
I appreciate direction!<br />
Thanks,<br />
Lana]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[To link to Omni Panel and open it]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=26</link>
			<pubDate>Sat, 04 Jan 2025 18:57:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=26</guid>
			<description><![CDATA[Example: This will open this page with 3rd panel open and scrolled down to the OPM location:  <br />
 <a href="https://www.shorehavenbhi.com/mental-health-programs.php?opm=1_3#p7OPM_1" target="_blank" rel="noopener" class="mycode_url">https://www.shorehavenbhi.com/mental-hea..._3#p7OPM_1</a><br />
<br />
so, after the page name, add<br />
?opm<br />
the panel name (third panel)<br />
1_3#<br />
and the name of the OPM<br />
<br />
another example:<br />
<a href="https://www.shorehavenbhi.com/mental-health-programs.php?opm=1_5#p7OPM_1" target="_blank" rel="noopener" class="mycode_url">https://www.shorehavenbhi.com/mental-hea..._5#p7OPM_1</a><br />
<br />
opens the 5th panel  <br />
<br />
<br />
<br />
(if there were 2 OPMs on the page the second one would be called <br />
OPM_2)]]></description>
			<content:encoded><![CDATA[Example: This will open this page with 3rd panel open and scrolled down to the OPM location:  <br />
 <a href="https://www.shorehavenbhi.com/mental-health-programs.php?opm=1_3#p7OPM_1" target="_blank" rel="noopener" class="mycode_url">https://www.shorehavenbhi.com/mental-hea..._3#p7OPM_1</a><br />
<br />
so, after the page name, add<br />
?opm<br />
the panel name (third panel)<br />
1_3#<br />
and the name of the OPM<br />
<br />
another example:<br />
<a href="https://www.shorehavenbhi.com/mental-health-programs.php?opm=1_5#p7OPM_1" target="_blank" rel="noopener" class="mycode_url">https://www.shorehavenbhi.com/mental-hea..._5#p7OPM_1</a><br />
<br />
opens the 5th panel  <br />
<br />
<br />
<br />
(if there were 2 OPMs on the page the second one would be called <br />
OPM_2)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FX Zoom Fix]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=25</link>
			<pubDate>Sat, 04 Jan 2025 18:51:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=25</guid>
			<description><![CDATA[to keep zoomed images on top of others use this<br />
<br />
<br />
/*<br />
****************************<br />
PVII Image Effects Magic<br />
by Project Seven Development<br />
<a href="http://www.projectseven.com" target="_blank" rel="noopener" class="mycode_url">www.projectseven.com</a><br />
CSS Styles<br />
*****************************<br />
*/<br />
<br />
img.p7IFX {<br />
position: relative;<br />
}<br />
img.ifx-on {<br />
z-index: 999;<br />
}]]></description>
			<content:encoded><![CDATA[to keep zoomed images on top of others use this<br />
<br />
<br />
/*<br />
****************************<br />
PVII Image Effects Magic<br />
by Project Seven Development<br />
<a href="http://www.projectseven.com" target="_blank" rel="noopener" class="mycode_url">www.projectseven.com</a><br />
CSS Styles<br />
*****************************<br />
*/<br />
<br />
img.p7IFX {<br />
position: relative;<br />
}<br />
img.ifx-on {<br />
z-index: 999;<br />
}]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Close panels on OMNI]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=24</link>
			<pubDate>Sat, 04 Jan 2025 18:48:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=24</guid>
			<description><![CDATA[Create a button called CLOSE<br />
<br />
Add to core.css<br />
<br />
&lt;!--custom --&gt;<br />
.opm-panel {position:absolute;left:-9000px;top:-9000px;overflow:hidden;visibility:hidden;width:100%;}<br />
.opm-panel-wrapper {position:relative;overflow:hidden;}<br />
.opm-panel-layout {position: relative;width: 100%;height: auto;}<br />
<br />
<br />
and then on the page, depending on which panel will be the close, this is inline<br />
this must be specific to the panels<br />
<br />
example (to have panel 7 closed)<br />
<br />
<br />
<br />
&lt;style type="text/css"&gt;<br />
#p7OPMpn_1_7,<br />
#p7OPMpn_1_7 *<br />
{<br />
padding: 0;<br />
}<br />
#p7OPMpn_1_7 .opm-panel-content {<br />
height: 0px;<br />
}<br />
&lt;/style&gt;]]></description>
			<content:encoded><![CDATA[Create a button called CLOSE<br />
<br />
Add to core.css<br />
<br />
&lt;!--custom --&gt;<br />
.opm-panel {position:absolute;left:-9000px;top:-9000px;overflow:hidden;visibility:hidden;width:100%;}<br />
.opm-panel-wrapper {position:relative;overflow:hidden;}<br />
.opm-panel-layout {position: relative;width: 100%;height: auto;}<br />
<br />
<br />
and then on the page, depending on which panel will be the close, this is inline<br />
this must be specific to the panels<br />
<br />
example (to have panel 7 closed)<br />
<br />
<br />
<br />
&lt;style type="text/css"&gt;<br />
#p7OPMpn_1_7,<br />
#p7OPMpn_1_7 *<br />
{<br />
padding: 0;<br />
}<br />
#p7OPMpn_1_7 .opm-panel-content {<br />
height: 0px;<br />
}<br />
&lt;/style&gt;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Centering P7 Menus]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=23</link>
			<pubDate>Sat, 04 Jan 2025 18:46:02 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=23</guid>
			<description><![CDATA[change this:<br />
<br />
p7 centermenu<br />
.p7AMM.amm-responsive li {<br />
text-align: left !important;<br />
display: block;<br />
max-height: 700777px;<br />
}<br />
<br />
to this:<br />
<br />
<br />
<br />
.p7AMM.amm-responsive li {<br />
text-align: center !important;<br />
display: block;<br />
max-height: 700777px;<br />
}]]></description>
			<content:encoded><![CDATA[change this:<br />
<br />
p7 centermenu<br />
.p7AMM.amm-responsive li {<br />
text-align: left !important;<br />
display: block;<br />
max-height: 700777px;<br />
}<br />
<br />
to this:<br />
<br />
<br />
<br />
.p7AMM.amm-responsive li {<br />
text-align: center !important;<br />
display: block;<br />
max-height: 700777px;<br />
}]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Set Height of Slide Out Panel (SOP)]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=22</link>
			<pubDate>Thu, 02 Jan 2025 15:29:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=8">David Buchholz</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=22</guid>
			<description><![CDATA[The default height of the SOP panel is 100% of the browser window. You can over-ride this by setting a different height that is less than 100%. Add this style rule to the SOP style sheet. It uses the SOP id so that it over-rides the default width:<br />
#p7SOP_1 { height: 70%; }<br />
The height of the SOP will now be 70% of the browser window.<br />
You can also add a top position to this rule if you want the (now shortend) SOP to be centered vertically. Just set the top position to 15% (one half of 30%) so the rule now looks like this:<br />
#p7SOP_1 { height: 70%; top: 15%; }<br />
<br />
Note that you cannot, and should not, set the height greater than the height of the browser window. This will prevent full access to all of the overflowed content.]]></description>
			<content:encoded><![CDATA[The default height of the SOP panel is 100% of the browser window. You can over-ride this by setting a different height that is less than 100%. Add this style rule to the SOP style sheet. It uses the SOP id so that it over-rides the default width:<br />
#p7SOP_1 { height: 70%; }<br />
The height of the SOP will now be 70% of the browser window.<br />
You can also add a top position to this rule if you want the (now shortend) SOP to be centered vertically. Just set the top position to 15% (one half of 30%) so the rule now looks like this:<br />
#p7SOP_1 { height: 70%; top: 15%; }<br />
<br />
Note that you cannot, and should not, set the height greater than the height of the browser window. This will prevent full access to all of the overflowed content.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Flex Grid Magic (FGM) Column Widths]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=21</link>
			<pubDate>Thu, 02 Jan 2025 15:27:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=8">David Buchholz</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=21</guid>
			<description><![CDATA[47% = 2 per column max<br />
30% = 3 per column max<br />
22% = 4 per column max<br />
17% = 5 per column max]]></description>
			<content:encoded><![CDATA[47% = 2 per column max<br />
30% = 3 per column max<br />
22% = 4 per column max<br />
17% = 5 per column max]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Change LBM Column Order On A Mobile Device]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=20</link>
			<pubDate>Thu, 02 Jan 2025 15:25:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=8">David Buchholz</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=20</guid>
			<description><![CDATA[The easiest way to change the order of the LBM floated layout is to change the layout to CSS Grid for the mobile presentation. Then you can easily change the rendered order of any of the columns.<br />
<br />
Add this style rule to the end of your exception style sheet:<br />
<br />
@media only screen and (min-width: 0px) and (max-width: 700px) {<br />
.lbm-col-wrapper {<br />
display: grid !important;<br />
}<br />
.lbm-column:nth-child(1) {order: 2;}<br />
.lbm-column:nth-child(2) {order: 1;}<br />
.lbm-column:nth-child(3) {order: 3;}<br />
}<br />
<br />
This switches the layout to CSS Grid spec and sets the different order.]]></description>
			<content:encoded><![CDATA[The easiest way to change the order of the LBM floated layout is to change the layout to CSS Grid for the mobile presentation. Then you can easily change the rendered order of any of the columns.<br />
<br />
Add this style rule to the end of your exception style sheet:<br />
<br />
@media only screen and (min-width: 0px) and (max-width: 700px) {<br />
.lbm-col-wrapper {<br />
display: grid !important;<br />
}<br />
.lbm-column:nth-child(1) {order: 2;}<br />
.lbm-column:nth-child(2) {order: 1;}<br />
.lbm-column:nth-child(3) {order: 3;}<br />
}<br />
<br />
This switches the layout to CSS Grid spec and sets the different order.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[P7 - links to help files]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=19</link>
			<pubDate>Mon, 23 Dec 2024 20:37:00 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=19</guid>
			<description><![CDATA[As of Nov 2024, Gerry from P7 hasn't been answering emails and p7 site is down. This new thread is for anyone who uses P7 and seeks peer-to-peer help.<br />
<br />
Courtesy of <span style="color: #146cac;" class="mycode_color"><span style="font-family: adobe-clean, 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;" class="mycode_font"><span style="color: #2c2c2c;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">denniscallan</span></span> on Adobe Community forum</span></span><br />
<br />
<a href="https://community.adobe.com/t5/dreamweaver-discussions/has-anyone-got-the-documentation-for-the-following-extensions-please/m-p/15055071/page/2#M229689" target="_blank" rel="noopener" class="mycode_url">https://community.adobe.com/t5/dreamweav.../2#M229689</a><br />
<br />
<a href="https://onedrive.live.com/?authkey=%21ALT7hwFId%5F%5FcGgw&amp;id=2B138E2AC9BBAD5B%21161&amp;cid=2B138E2AC9BBAD5B" target="_blank" rel="noopener" class="mycode_url">https://onedrive.live.com/?authkey=%21AL...2AC9BBAD5B</a>]]></description>
			<content:encoded><![CDATA[As of Nov 2024, Gerry from P7 hasn't been answering emails and p7 site is down. This new thread is for anyone who uses P7 and seeks peer-to-peer help.<br />
<br />
Courtesy of <span style="color: #146cac;" class="mycode_color"><span style="font-family: adobe-clean, 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;" class="mycode_font"><span style="color: #2c2c2c;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">denniscallan</span></span> on Adobe Community forum</span></span><br />
<br />
<a href="https://community.adobe.com/t5/dreamweaver-discussions/has-anyone-got-the-documentation-for-the-following-extensions-please/m-p/15055071/page/2#M229689" target="_blank" rel="noopener" class="mycode_url">https://community.adobe.com/t5/dreamweav.../2#M229689</a><br />
<br />
<a href="https://onedrive.live.com/?authkey=%21ALT7hwFId%5F%5FcGgw&amp;id=2B138E2AC9BBAD5B%21161&amp;cid=2B138E2AC9BBAD5B" target="_blank" rel="noopener" class="mycode_url">https://onedrive.live.com/?authkey=%21AL...2AC9BBAD5B</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Availability]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=18</link>
			<pubDate>Thu, 05 Dec 2024 16:24:52 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=8">David Buchholz</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=18</guid>
			<description><![CDATA[Please delete if not allowed but the contract I have been working on for the last 6 years is finishing in January so I will be available for new projects for the first time in a while if anyone needs help with WebAssist or any other PHP based projects.<br />
<br />
Thanks,<br />
<br />
Dave Buchholz.<br />
I-CRE8]]></description>
			<content:encoded><![CDATA[Please delete if not allowed but the contract I have been working on for the last 6 years is finishing in January so I will be available for new projects for the first time in a while if anyone needs help with WebAssist or any other PHP based projects.<br />
<br />
Thanks,<br />
<br />
Dave Buchholz.<br />
I-CRE8]]></content:encoded>
		</item>
	</channel>
</rss>