<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Javapark</title>
    <description>The latest articles on DEV Community by Javapark (@javapark).</description>
    <link>https://dev.to/javapark</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4080046%2Ff86a493e-e93f-438f-b887-4655e77b7d24.png</url>
      <title>DEV Community: Javapark</title>
      <link>https://dev.to/javapark</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/javapark"/>
    <language>en</language>
    <item>
      <title>I audited every post on my 200-post blog. Here's what was quietly broken.</title>
      <dc:creator>Javapark</dc:creator>
      <pubDate>Sun, 16 Aug 2026 11:43:31 +0000</pubDate>
      <link>https://dev.to/javapark/i-audited-every-post-on-my-200-post-blog-heres-what-was-quietly-broken-4j7</link>
      <guid>https://dev.to/javapark/i-audited-every-post-on-my-200-post-blog-heres-what-was-quietly-broken-4j7</guid>
      <description>&lt;p&gt;I've been running a technical blog for years. Posts accumulate — but so does everything around them: theme edits, editor migrations, hand-written HTML from 2018, mobile layouts nobody re-checked after the last redesign.&lt;/p&gt;

&lt;p&gt;Everything &lt;em&gt;looked&lt;/em&gt; fine. So last week I stopped adding posts and audited all ~200 of them instead, read-only first, then fixed only what the audit actually justified.&lt;/p&gt;

&lt;p&gt;Three things were broken. None of them were visible on my own screen.&lt;/p&gt;

&lt;h2&gt;
  
  
  The rule I set before touching anything
&lt;/h2&gt;

&lt;p&gt;I did not go in looking for "SEO wins." I went in with five questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is the most important heading on a post page consistent across posts?&lt;/li&gt;
&lt;li&gt;Do headings generated by the theme collide with headings typed into post bodies?&lt;/li&gt;
&lt;li&gt;Are the accessibility strings I marked as hidden &lt;em&gt;actually&lt;/em&gt; hidden?&lt;/li&gt;
&lt;li&gt;Does anything break on a narrow mobile viewport?&lt;/li&gt;
&lt;li&gt;If a fix goes wrong, can I roll back?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That framing matters. Google is explicit that there's no magic number of heading elements that ranks better — semantic heading structure is useful primarily because it describes the document, and screen reader users depend on it (&lt;a href="https://developers.google.com/search/docs/fundamentals/seo-starter-guide" rel="noopener noreferrer"&gt;SEO Starter Guide&lt;/a&gt;). So the goal was &lt;strong&gt;a more predictable document&lt;/strong&gt;, not a ranking claim I can't back up.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. H1s were split between the theme and the post body
&lt;/h2&gt;

&lt;p&gt;On a themed blog, the platform renders the post title and the editor renders the body — separately. Manage those independently long enough and you end up with the site name, the post title, &lt;em&gt;and&lt;/em&gt; a body heading all rendered as &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;I fixed the shared theme template first, then swept every post for body-level &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;. Five posts had them. Eight headings total.&lt;/p&gt;

&lt;p&gt;The rules I applied:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The post's primary heading belongs to the platform's title field. Nothing else competes for it.&lt;/li&gt;
&lt;li&gt;Body sections start at &lt;code&gt;&amp;lt;h2&amp;gt;&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Keep &lt;code&gt;&amp;lt;h3&amp;gt;&lt;/code&gt; and below only where the nesting is real.&lt;/li&gt;
&lt;li&gt;Never fake a heading by bumping font size.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then — and this is the part that actually caught mistakes — I re-checked on the &lt;strong&gt;public URL&lt;/strong&gt;, not in the editor preview.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. A visually-hidden class with no CSS behind it
&lt;/h2&gt;

&lt;p&gt;My post list has a search box. The markup had this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;span&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"screen-out"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Search within this list&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Classic screen-reader-only label. Except there was no &lt;code&gt;.screen-out&lt;/code&gt; rule in the stylesheet. The class name was doing nothing. On desktop it was easy to miss; on a phone it wrapped to two lines and squashed the search box next to it.&lt;/p&gt;

&lt;p&gt;The tempting fix is to delete the &lt;code&gt;&amp;lt;span&amp;gt;&lt;/code&gt;. That's the wrong fix — it removes the only thing telling a screen reader what the input is for. The right fix is to hide it &lt;em&gt;visually only&lt;/em&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.screen-out&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;position&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;absolute&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;1px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;1px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;padding&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;margin&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;-1px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;overflow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;hidden&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;clip&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;rect&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="nl"&gt;clip-path&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;inset&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;50%&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="nl"&gt;white-space&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;nowrap&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;border&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Note what this deliberately avoids: &lt;code&gt;display: none&lt;/code&gt; and &lt;code&gt;visibility: hidden&lt;/code&gt; both remove the element from the accessibility tree. And pushing it off-screen with &lt;code&gt;left: -9999px&lt;/code&gt; can cause the viewport to scroll sideways when the element receives focus. The clip-based pattern keeps the text available to assistive tech while occupying no visual space.&lt;/p&gt;

&lt;p&gt;After the fix, at a 390px viewport the search region measured 343px wide with a 275px input, and no horizontal overflow.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Hiding something and deleting its accessibility information are not the same operation.&lt;/strong&gt; Before you fix a layout bug, find out why the markup exists.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  3. I shipped this as two versions, not one
&lt;/h2&gt;

&lt;p&gt;I could have bundled both fixes into a single theme update. I didn't:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;v1.6.4&lt;/strong&gt; — heading structure across the site&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;v1.6.5&lt;/strong&gt; — the visually-hidden style for the list search label&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each got its own archive, its own version entry in the platform's theme library, and a recorded SHA-256 of the deployed bundle.&lt;/p&gt;

&lt;p&gt;Version numbers on a personal blog theme aren't vanity. They're the rollback mechanism. If something surfaces in a week, I need to know &lt;em&gt;which&lt;/em&gt; change to revert — and "the update I did on Tuesday" is not an answer.&lt;/p&gt;

&lt;p&gt;Minimum viable discipline for any hosted-theme edit:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Back up the currently live theme &lt;em&gt;before&lt;/em&gt; applying anything.&lt;/li&gt;
&lt;li&gt;Use a version number that maps to one coherent change.&lt;/li&gt;
&lt;li&gt;Keep a record of what you verified on the public site after applying.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  4. Verifying in the admin panel is not verifying
&lt;/h2&gt;

&lt;p&gt;Editor previews and theme-editor previews both lied to me at least once during this. Caching, template placeholders, and editor-generated HTML all mean &lt;strong&gt;the code you saved is not necessarily the HTML that ships&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;So "fixed it" and "confirmed it on the live URL" stayed separate steps:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Check&lt;/th&gt;
&lt;th&gt;Result&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Primary &lt;code&gt;h1&lt;/code&gt; per post page&lt;/td&gt;
&lt;td&gt;Exactly 1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Body-level &lt;code&gt;h1&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Removed from all 5 posts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mobile search label&lt;/td&gt;
&lt;td&gt;Visually hidden, still exposed to AT&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Search input hint&lt;/td&gt;
&lt;td&gt;Existing placeholder preserved&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Horizontal overflow at 390px&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rollback available&lt;/td&gt;
&lt;td&gt;v1.6.4 and v1.6.5 archived separately&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  The checklist
&lt;/h2&gt;

&lt;p&gt;Steal this for your next theme update or content cleanup:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;[ ] Backed up the live theme first?&lt;/li&gt;
&lt;li&gt;[ ] Checked post, list, category, &lt;strong&gt;and&lt;/strong&gt; search views separately?&lt;/li&gt;
&lt;li&gt;[ ] Do body headings start at &lt;code&gt;h2&lt;/code&gt; and nest honestly?&lt;/li&gt;
&lt;li&gt;[ ] Are hidden strings clipped rather than pushed off-screen or &lt;code&gt;display: none&lt;/code&gt;?&lt;/li&gt;
&lt;li&gt;[ ] Can you reach search and navigation with a keyboard alone?&lt;/li&gt;
&lt;li&gt;[ ] No horizontal scroll around a 390px viewport?&lt;/li&gt;
&lt;li&gt;[ ] Are the before/after versions archived distinctly?&lt;/li&gt;
&lt;li&gt;[ ] Verified on the public URL, not just the admin preview?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Measurement starts now, not before
&lt;/h2&gt;

&lt;p&gt;I'm not going to tell you traffic went up. It's been days, and I'd be making it up.&lt;/p&gt;

&lt;p&gt;What I did do is timestamp the change so the next 30 and 90 days are comparable — impressions, clicks, and query mix against a known baseline. If you make five changes at once and never mark the date, you've traded the ability to learn anything for the feeling of productivity.&lt;/p&gt;

&lt;p&gt;What I can claim immediately: the heading structure is consistent enough to maintain, the mobile search row is no longer cramped, and there's a version to roll back to.&lt;/p&gt;

&lt;p&gt;These changes feel too small to write up. They're not. Finding a small problem, bounding its blast radius, fixing it, and verifying it on the surface a real user touches — that loop is the most transferable thing in this entire post.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This is an English adaptation of &lt;a href="https://javapark.kr/" rel="noopener noreferrer"&gt;a post I originally wrote in Korean&lt;/a&gt; on my blog, where I write about AI dev tooling and DevOps.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>a11y</category>
      <category>seo</category>
    </item>
  </channel>
</rss>
