Blogger table tool is ugly - no border, no style, not mobile friendly. You need styled tables for Blogger vs WordPress, features, pricing, hosting comparison - gets featured snippet in Google.
In Post #122, add pro tables in Blogger.
Step 1: Add Table CSS Once in Theme
- Blogger → Theme → Edit HTML
- Find
]]></b:skin> - Paste above it:
/* Tables Post 122 */
.table-wrap{overflow-x:auto;margin:20px 0;border-radius:10px;border:1px solid #e5e7eb;}
.blogger-table{width:100%;border-collapse:collapse;min-width:500px;}
.blogger-table th{background:#000;color:#fff;padding:12px 14px;text-align:left;font-weight:bold;}
.blogger-table td{padding:12px 14px;border-bottom:1px solid #e5e7eb;}
.blogger-table tr:nth-child(even){background:#f9fafb;}
.blogger-table tr:hover{background:#f3f4f6;}
.blogger-table .check{color:#22c55e;font-weight:bold;}
.blogger-table .cross{color:#ef4444;font-weight:bold;}
- Save theme
Step 2: 3 Ready Tables - Copy Paste in Post HTML Mode
1. Comparison Table - Blogger vs WordPress (Best for Post #4)
<div class="table-wrap"> <table class="blogger-table"> <tr><th>Feature</th><th>Blogger</th><th>WordPress</th></tr> <tr><td>Cost</td><td class="check">Free Forever</td><td class="cross">$50/year hosting</td></tr> <tr><td>Hosting</td><td class="check">Google Free</td><td class="cross">Buy hosting</td></tr> <tr><td>Security</td><td class="check">Google Security</td><td>You manage</td></tr> <tr><td>Speed</td><td class="check">Fast</td><td>Need optimization</td></tr> <tr><td>Best For</td><td>Beginners</td><td>Advanced</td></tr> </table> </div>
2. Pricing Table - For Products
<div class="table-wrap"> <table class="blogger-table"> <tr><th>Plan</th><th>Price</th><th>Features</th><th>Action</th></tr> <tr><td>Free</td><td>₦0</td><td>1 Template</td><td><a href="#" style="background:#e5e7eb;color:#000;padding:6px 12px;border-radius:6px;text-decoration:none;">Download</a></td></tr> <tr><td>Pro</td><td>₦5,000</td><td>200 Templates</td><td><a href="#" style="background:#000;color:#fff;padding:6px 12px;border-radius:6px;text-decoration:none;">Buy Now</a></td></tr> <tr><td>Bundle</td><td>₦10,000</td><td>Templates + Posts</td><td><a href="#" style="background:#22c55e;color:#fff;padding:6px 12px;border-radius:6px;text-decoration:none;">Best Deal</a></td></tr> </table> </div>
3. Pros Cons Table with Check / Cross
<div class="table-wrap"> <table class="blogger-table"> <tr><th>Pros ✅</th><th>Cons ❌</th></tr> <tr><td class="check">Free hosting</td><td class="cross">Limited themes</td></tr> <tr><td class="check">Google security</td><td class="cross">No plugins</td></tr> <tr><td class="check">Easy for beginners</td><td class="cross">Less control</td></tr> </table> </div>
Step 3: No Theme Edit Version (Inline Table)
<div style="overflow-x:auto;margin:20px 0;"> <table style="width:100%;border-collapse:collapse;min-width:400px;" border="1" cellpadding="10"> <tr style="background:#000;color:#fff;"><th>Feature</th><th>Blogger</th><th>WordPress</th></tr> <tr><td>Cost</td><td>Free</td><td>Paid</td></tr> <tr style="background:#f9fafb;"><td>Hosting</td><td>Google</td><td>Buy</td></tr> </table> </div>
Step 4: Make Table Responsive? See Next Post
Post #122 tables scroll on mobile. Next Post #123: How to Make Table Responsive in Blogger - stack on mobile, no scroll needed.
Post #122 Complete.
Next Post #123: How to Make Table Responsive in Blogger - mobile stacked table.
0 Comments