Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 20 online users. » 0 Member(s) | 19 Guest(s) Google
|
Latest Threads |
A new server threat: AI b...
Forum: General coding information
Last Post: bizpat (Patrice)
01-22-2025, 09:38 PM
» Replies: 0
» Views: 3
|
Extension Manager
Forum: Project Seven
Last Post: bizpat (Patrice)
01-21-2025, 11:38 PM
» Replies: 4
» Views: 96
|
P7 IGM Image Gallery Magi...
Forum: Project Seven
Last Post: bizpat (Patrice)
01-17-2025, 09:38 PM
» Replies: 3
» Views: 105
|
Availability
Forum: General coding information
Last Post: bizpat (Patrice)
01-09-2025, 10:35 PM
» Replies: 1
» Views: 104
|
To link to Omni Panel and...
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:57 PM
» Replies: 0
» Views: 42
|
FX Zoom Fix
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:51 PM
» Replies: 0
» Views: 43
|
Close panels on OMNI
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:48 PM
» Replies: 0
» Views: 41
|
Centering P7 Menus
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:46 PM
» Replies: 0
» Views: 40
|
Set Height of Slide Out P...
Forum: Project Seven
Last Post: I-CRE8
01-02-2025, 03:29 PM
» Replies: 0
» Views: 45
|
Flex Grid Magic (FGM) Col...
Forum: Project Seven
Last Post: I-CRE8
01-02-2025, 03:27 PM
» Replies: 0
» Views: 48
|
|
|
A new server threat: AI bots |
Posted by: bizpat (Patrice) - 01-22-2025, 09:38 PM - Forum: General coding information
- No Replies
|
|
I have my clients on a dedicated server and it was brought to its knees by bots. Amazon and AI bots.
Solution was to create a robots.txt file with this inside:
User-agent: GPTBot
Disallow: /
User-agent: Amazonbot
Disallow: /
HTH someone else.
|
|
|
Extension Manager |
Posted by: bizpat (Patrice) - 01-19-2025, 12:57 AM - Forum: Project Seven
- Replies (4)
|
|
A missing post on WA forum:
I encountered this a few weeks ago with a non-WA extension (P7). I received this information.
Gerry wrote:
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.
You have a corruption in the underlying Dreamweaver files that now needs to be fixed.
1. Do NOT use the Anastasiy’s Extension Manager!
2. ONLY use the DMXzone Extension Manager.
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:
https://www.projectseven.com/products/ex...m#cc-issue (this is no longer an active link)
First, be sure that you have re-started Dreamweaver after you renamed the configuration folder. Then shut Dreamweaver down.
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.
Be sure that Dreamweaver is shut down during this operation.
~~HTH~~~
more notes
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.
|
|
|
FX Zoom Fix |
Posted by: bizpat (Patrice) - 01-04-2025, 06:51 PM - Forum: Project Seven
- No Replies
|
|
to keep zoomed images on top of others use this
/*
****************************
PVII Image Effects Magic
by Project Seven Development
www.projectseven.com
CSS Styles
*****************************
*/
img.p7IFX {
position: relative;
}
img.ifx-on {
z-index: 999;
}
|
|
|
Close panels on OMNI |
Posted by: bizpat (Patrice) - 01-04-2025, 06:48 PM - Forum: Project Seven
- No Replies
|
|
Create a button called CLOSE
Add to core.css
<!--custom -->
.opm-panel {position:absolute;left:-9000px;top:-9000px;overflow:hidden;visibility:hidden;width:100%;}
.opm-panel-wrapper {position:relative;overflow:hidden;}
.opm-panel-layout {position: relative;width: 100%;height: auto;}
and then on the page, depending on which panel will be the close, this is inline
this must be specific to the panels
example (to have panel 7 closed)
<style type="text/css">
#p7OPMpn_1_7,
#p7OPMpn_1_7 *
{
padding: 0;
}
#p7OPMpn_1_7 .opm-panel-content {
height: 0px;
}
</style>
|
|
|
Centering P7 Menus |
Posted by: bizpat (Patrice) - 01-04-2025, 06:46 PM - Forum: Project Seven
- No Replies
|
|
change this:
p7 centermenu
.p7AMM.amm-responsive li {
text-align: left !important;
display: block;
max-height: 700777px;
}
to this:
.p7AMM.amm-responsive li {
text-align: center !important;
display: block;
max-height: 700777px;
}
|
|
|
Set Height of Slide Out Panel (SOP) |
Posted by: I-CRE8 - 01-02-2025, 03:29 PM - Forum: Project Seven
- No Replies
|
|
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:
#p7SOP_1 {
height: 70%;
}
The height of the SOP will now be 70% of the browser window.
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:
#p7SOP_1 {
height: 70%;
top: 15%;
}
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.
|
|
|
Change LBM Column Order On A Mobile Device |
Posted by: I-CRE8 - 01-02-2025, 03:25 PM - Forum: Project Seven
- No Replies
|
|
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.
Add this style rule to the end of your exception style sheet:
@media only screen and (min-width: 0px) and (max-width: 700px) {
.lbm-col-wrapper {
display: grid !important;
}
.lbm-column:nth-child(1) {order: 2;}
.lbm-column:nth-child(2) {order: 1;}
.lbm-column:nth-child(3) {order: 3;}
}
This switches the layout to CSS Grid spec and sets the different order.
|
|
|
|