Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 19 online users. » 0 Member(s) | 18 Guest(s) Google
|
Latest Threads |
Latest version of Chrome ...
Forum: Project Seven
Last Post: bizpat (Patrice)
02-09-2025, 07:43 PM
» Replies: 1
» Views: 122
|
A new server threat: AI b...
Forum: General coding information
Last Post: Mags
01-29-2025, 11:56 AM
» Replies: 1
» Views: 517
|
Extension Manager
Forum: Project Seven
Last Post: bizpat (Patrice)
01-21-2025, 11:38 PM
» Replies: 4
» Views: 325
|
P7 IGM Image Gallery Magi...
Forum: Project Seven
Last Post: bizpat (Patrice)
01-17-2025, 09:38 PM
» Replies: 3
» Views: 247
|
Availability
Forum: General coding information
Last Post: bizpat (Patrice)
01-09-2025, 10:35 PM
» Replies: 1
» Views: 196
|
To link to Omni Panel and...
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:57 PM
» Replies: 0
» Views: 87
|
FX Zoom Fix
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:51 PM
» Replies: 0
» Views: 90
|
Close panels on OMNI
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:48 PM
» Replies: 0
» Views: 83
|
Centering P7 Menus
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:46 PM
» Replies: 0
» Views: 79
|
Set Height of Slide Out P...
Forum: Project Seven
Last Post: I-CRE8
01-02-2025, 03:29 PM
» Replies: 0
» Views: 95
|
|
|
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.
|
|
|
Availability |
Posted by: I-CRE8 - 12-05-2024, 04:24 PM - Forum: General coding information
- Replies (1)
|
 |
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.
Thanks,
Dave Buchholz.
I-CRE8
|
|
|
PowerCMS - newer version |
Posted by: Mags - 08-29-2024, 03:57 PM - Forum: PowerCMS
- No Replies
|
 |
https://webassist.com/PowerCMS.zip is the link for the latest version of Power CMS, prior to Ray's sad passing. This works on PHP8.3 - sometimes you might run into an issue, but ask on this forum. WebAssist extended community is trying to help out where we can!
|
|
|
Emails stopped sending from contact form? |
Posted by: Mags - 08-29-2024, 03:44 PM - Forum: Universal Email
- No Replies
|
 |
If you have a contact form on a website that has stopped sending emails, check that you're not sending the email from the person completing the form using the dynamic binding, for example
PHP Code: <<?php echo((isset($_POST["Email"]))?$_POST["Email"]:"") ?>>
Most servers nowadays will not deliver mail if it comes from a domain not hosted on the website's server to prevent spoofing.
I generally set the "From" field to, for example, noreply@mydomain.com and then bind the email address of the actual sender within the body of the email. It just means that when the email arrives you can't hit Reply, you need to copy & paste the sender's email address into the To field manually. As long as the email comes from an address that uses the domain of the hosted website (it doesn't even have to be a functioning email address), there shouldn't be any issues.
|
|
|
Show password on Login pages |
Posted by: Mags - 08-29-2024, 03:31 PM - Forum: General coding information
- No Replies
|
 |
If you want to let users show/hide the password instead of the dots in the password field, you can do it like this:
<input id="password" name="password" type="password" value="" confirm="" required="true">
<input id="showpassword" type="checkbox" onclick="showPW()">
<label for="showpassword">Show password</label>
<script>
function showPW() {
var x = document.getElementById("password");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}
</script>
This works by displaying the login info that the user has stored in their browser, it can't pull info from the database.
|
|
|
|