Posts

Showing posts from June, 2025

Can You Customize Jekyll Blog Design Without Knowing Code

Is It Possible to Change Your Jekyll Blog Design Without Coding? You like how Jekyll works, but you're not a developer. Maybe you’ve just forked the Mediumish theme, and now you're asking: **"Can I make it look more like me without writing code?"** The answer is: yes—especially if you know where to look and what to edit. Jekyll themes like Mediumish are built for clarity. Even if you’ve never written a line of CSS before, you can still personalize your blog with just a few tweaks. What Beginners Usually Want to Change First The blog’s color scheme The fonts and text size The homepage layout (like post previews or images) The logo or title style All of these can be adjusted in Jekyll without writing code from scratch—just by **editing values** in the right files. Start Here: The main.scss File in Mediumish Every Mediumish-based Jekyll blog uses a main stylesheet: assets/css/main.scss . This is where colors, fonts, sizes, spacing, and layo...

how do you move a blog from wordpress to jekyll without losing seo

What are the SEO risks of migrating from WordPress to Jekyll? Static site generators like Jekyll are excellent for speed and simplicity, but SEO can suffer during migration if not handled correctly. The structure, metadata, and content URLs of a WordPress site are often tightly integrated with plugins and dynamic logic. Migrating without a clear SEO plan may result in broken links, lost traffic, and a drop in rankings. This guide focuses on how to perform a safe migration from WordPress to Jekyll without sacrificing your search engine visibility. How can URL structures be preserved during the move? One of the first steps in an SEO-safe migration is ensuring that your existing permalink structure remains intact. WordPress allows customization of permalinks, and most blogs use one of the following formats: /year/month/day/post-name/ /year/month/post-name/ /category/post-name/ To replicate these in Jekyll, you need to configure the permalink field in your posts'...

How to Set Up the Mediumish Jekyll Theme on GitHub Pages

Why Choose the Mediumish Theme for Your GitHub Pages Blog If you’re searching for a clean, responsive, and professional-looking theme to host your blog or portfolio using GitHub Pages, the Mediumish Jekyll theme is one of the best starting points. It mimics the aesthetic of Medium.com but allows full ownership and control of your content. Benefits of the Mediumish Theme Responsive Design: Works perfectly on mobile, tablet, and desktop. Modern Aesthetic: Ideal for personal blogging, storytelling, or writing-focused portfolios. SEO-Friendly Structure: Well-organized HTML output suitable for indexing by search engines. Easy Setup: Fully compatible with GitHub Pages and Jekyll default configuration. How to Fork and Clone the Mediumish Theme Repository The fastest way to get started is by forking the official Mediumish Jekyll repository and cloning it to your machine. This preserves the directory structure and keeps you updated with the latest theme versions. ...