From 868911dfa6beee13648392110c09e7ebe7609438 Mon Sep 17 00:00:00 2001 From: David Keane Date: Mon, 25 May 2026 07:41:09 +0100 Subject: [PATCH] ux: move banner from Create-Note page to About page (side-by-side intro) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The banner image was the first thing under the page title on the Create-Note page — taking significant vertical space before the user saw the textarea. The Create-Note page is for *doing*, not for *reading-about*. CHANGES - Banner removed from wp_notes_page_callback() — Create-Note page now opens straight into the form. - Banner added to the top of the About page in a new side-by-side row: image on the left capped at 320px wide (not full-bleed), and a short intro paragraph + "Go to WP Notes →" CTA on the right. Stacks vertically on narrow screens via flex-wrap. - The side-by-side block lives in its own .wp-notes-about-intro container so it doesn't tangle with the rest of the About page's pre-existing nested toggles (those are still on the Tier 2 list). - .wp-notes-header-banner / .wp-notes-banner-img CSS removed from wp-notes-styles.php — no longer referenced anywhere. Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 15 +++++++++++++ inc/wp-notes-about.php | 50 ++++++++++++++++++++++++++++++++++++++++- inc/wp-notes-styles.php | 12 ---------- wp-notes.php | 6 ----- 4 files changed, 64 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f47ce2a..4e40416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ Format: [Keep a Changelog 1.1.0](https://keepachangelog.com/en/1.1.0/) — versi ## [Unreleased] +### Changed — Banner moved to About page (side-by-side intro) +- **Banner image removed from the Create-Note page.** It was the + first thing under the page title and took up significant vertical + space before the user even saw the textarea. The Create-Note page + is for *doing*, not for *reading-about*. +- **Banner added to the top of the About page** in a new + side-by-side row: banner image on the left (capped at 320px wide, + not full-bleed), and a short intro paragraph + "Go to WP Notes →" + CTA on the right. Stacks vertically on narrow screens via + `flex-wrap`. Lives inside its own `.wp-notes-about-intro` block so + it doesn't interact with the rest of the About page's nested + toggles. +- **`.wp-notes-header-banner` / `.wp-notes-banner-img` CSS removed** + from `wp-notes-styles.php` — no longer used. + ### Changed — Tier 1 UX cleanup Single pass through `wp_notes_page_callback()` to remove the layout debt that had built up over previous releases. Functionality is diff --git a/inc/wp-notes-about.php b/inc/wp-notes-about.php index 21128f5..c0088df 100644 --- a/inc/wp-notes-about.php +++ b/inc/wp-notes-about.php @@ -6,10 +6,58 @@ */ function wp_notes_about_page() { ?> + +
- + + +
+
+ WP Notes banner +
+
+

WP Notes v

+

WP Notes is a lightweight task & logbook plugin for WordPress. Log your daily work, mark tasks as done, and keep a tidy history right inside the dashboard — perfect for freelancers showing clients what's been delivered.

+

+ Go to WP Notes → +

+
+
+

Welcome to WP Notes About Page v

WP Notes is your task management solution for WordPress. Keep track of your todos, collaborate with team members, and never lose important notes.

diff --git a/inc/wp-notes-styles.php b/inc/wp-notes-styles.php index 734eb64..0b2f2fb 100644 --- a/inc/wp-notes-styles.php +++ b/inc/wp-notes-styles.php @@ -11,18 +11,6 @@ if (!defined('ABSPATH')) { function wp_notes_admin_styles() { ?>