Plugin Directory

Changeset 3481397


Ignore:
Timestamp:
03/12/2026 06:08:00 PM (3 weeks ago)
Author:
rankauthority
Message:

Release 1.0.31: GEO pages top margin updated

Location:
rank-authority
Files:
9 added
4 edited

Legend:

Unmodified
Added
Removed
  • rank-authority/trunk/rank-authority.php

    r3480642 r3481397  
    44 * Plugin URI: https://rankauthority.com/plugins/rankauthority
    55 * Description: Secure API connector to publish posts / overwrite posts from the RA Dashboard to WordPress. Token reset now available to all administrators.
    6  * Version: 1.0.30
     6 * Version: 1.0.31
    77 * Author: Rank Authority
    88 * Author URI: https://rankauthority.com
  • rank-authority/trunk/readme.txt

    r3480642 r3481397  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.0.30
     7Stable tag: 1.0.31
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    137137
    138138== Changelog ==
     139
     140= 1.0.31 =
     141* GEO page template: Increased top padding for theme fixed/sticky headers in public view
     142* Fixes content being cut off at top when viewing GEO pages as non-logged-in visitor
     143* Applies to both page-geo.php and category-geo.php templates
    139144
    140145= 1.0.30 =
     
    320325== Upgrade Notice ==
    321326
     327= 1.0.31 =
     328GEO page template now has increased top padding for theme fixed headers. Fixes content being cut off in public view.
     329
    322330= 1.0.30 =
    323331PUT now returns full updated content and auto-clears cache so public view updates immediately without manual cache purge.
  • rank-authority/trunk/templates/category-geo.php

    r3463890 r3481397  
    5858
    5959<style>
    60 .ra-geo-archive { max-width: 800px; margin: 0 auto; padding: 2rem 1rem; }
     60/* Extra top padding for theme fixed/sticky headers (public view) */
     61.ra-geo-archive { max-width: 800px; margin: 0 auto; padding: 5rem 1rem 2rem 1rem; }
    6162.ra-geo-posts-list { list-style: none; margin: 0; padding: 0; }
    6263.ra-geo-post-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #eee; }
  • rank-authority/trunk/templates/page-geo.php

    r3479686 r3481397  
    3131
    3232<style>
    33 .ra-geo-page { max-width: 800px; margin: 0 auto; padding: 2rem 1rem; }
     33/* Extra top padding for theme fixed/sticky headers (public view) */
     34.ra-geo-page { max-width: 800px; margin: 0 auto; padding: 5rem 1rem 2rem 1rem; }
    3435/* Prevent admin bar from covering content when logged in */
    35 body.admin-bar .ra-geo-page { padding-top: calc(2rem + 32px); }
     36body.admin-bar .ra-geo-page { padding-top: calc(5rem + 32px); }
    3637@media screen and (max-width: 782px) {
    37     body.admin-bar .ra-geo-page { padding-top: calc(2rem + 46px); }
     38    body.admin-bar .ra-geo-page { padding-top: calc(5rem + 46px); }
    3839}
    3940.ra-geo-single .entry-header { margin-bottom: 1.5rem; }
Note: See TracChangeset for help on using the changeset viewer.