{source}
<style>
/* Gallery Page Start */
.wd-gallery-page {
padding: 40px 0 60px;
}
.wd-gallery-page h1 {
margin-bottom: 15px;
}
.wd-gallery-intro {
max-width: 850px;
color: var(--wd-text-light);
margin-bottom: 35px;
}
.wd-gallery-item {
border: 1px solid var(--wd-border);
background: #fff;
padding: 14px;
height: 100%;
}
.wd-gallery-item img {
width: 100%;
height: 240px;
object-fit: cover;
object-position: top;
border: 1px solid var(--wd-border);
cursor: pointer;
transition: opacity 0.2s ease;
}
.wd-gallery-item img:hover {
opacity: 0.88;
}
.wd-gallery-item h3 {
font-size: 1.1rem;
margin: 14px 0 6px;
color: var(--wd-text);
}
.wd-gallery-item p {
color: var(--wd-text-light);
margin-bottom: 10px;
min-height: 60px;
}
/* Popup Start */
.wd-gallery-popup {
display: none;
position: fixed;
z-index: 9999;
inset: 0;
background: rgba(0,0,0,0.85);
align-items: center;
justify-content: center;
padding: 30px;
}
.wd-gallery-popup.active {
display: flex;
}
.wd-gallery-popup img {
max-width: 95%;
max-height: 92vh;
object-fit: contain;
background: #fff;
box-shadow: 0 0 30px rgba(0,0,0,0.4);
}
.wd-gallery-close {
position: fixed;
top: 20px;
right: 30px;
color: #fff;
font-size: 44px;
line-height: 1;
cursor: pointer;
}
/* Popup End */
/* Gallery Page End */
</style>
{/source}
Gallery
Here are some of the websites I have built over the years including Joomla, WordPress and custom business systems.
Ormeau Lawn & Garden Care
- Joomla
- Lean Built
- SEO Focused
- Lead Management
- Fast Loading
Brooke's Bookkeeping
- Joomla
- MYOB Bookkeeping
- Task Management & Email Marketing
- Billing & CRM
- Secure File Sharing
Varion Accounting
- Joomla
- Document Management
- Client & Task Management
- Client Portal
- Secure File Sharing
OzSpy
- WordPress
- eCommerce
- Compliance Systems
- Automated Support
- Analytics Integration
OzSpy Franchising
- Joomla
- Automated Onboarding
- Document Generation
- Lead Generation
- User Management
OzSpy Security
- Joomla
- Landing Pages
- Fast & Lean
- Lead Generation
- Intranet Integration
OzSpy Intranet
- Joomla
- Quote Builder
- Stationery Builder
- Franchisee Support
- Communications System
Bug Sweeping Australia
- Joomla
- Reporting System
- Task Management & Email Marketing
- Billing & CRM
- Secure File Sharing
TechSafe
- Joomla
- Lead Generation
- Landing Pages
- User Management
- CRM Integration
Owen Mitchell
- Joomla
- Cyber Testing
- Backend Development
- Custom PHP
- Experimental Platform
VW Bug Restoration Site
- Joomla
- Blog Platform
- Project Gallery
- Technical Articles
- Image Management
Craig's Story
- Joomla
- Personal Blog
- Long Form Content
- SEO Ready
- Future Development
Stumping Ground
- WordPress
- Lead Generation
- Online Enquiry Forms
- Local SEO
- Service Focused
Geelong Driver Training
- Static HTML & PHP
- Lead Generation
- Online Enquiry Forms
- Brochure Website
- Fast Loading
STA Pest Control
- WordPress
- Lead Generation
- Online Enquiry Forms
- Local SEO
- Service Focused
{source}
<script>
document.addEventListener('DOMContentLoaded', function () {
const popup = document.getElementById('wdGalleryPopup');
const popupImg = document.getElementById('wdGalleryPopupImg');
const closeBtn = document.querySelector('.wd-gallery-close');
document.querySelectorAll('.wd-gallery-item img').forEach(function (img) {
img.addEventListener('click', function () {
popupImg.src = this.src;
popupImg.alt = this.alt;
popup.classList.add('active');
});
});
popup.addEventListener('click', function () {
popup.classList.remove('active');
});
closeBtn.addEventListener('click', function () {
popup.classList.remove('active');
});
});
</script>
{/source}