What is the Theme used on the main Write.As website?

Hi @RyanUK!

  1. Yep, adjusting font size on the headings & main body is via Custom CSS. Here’s a couple code blocks you can use to adjust the size of the blog title, the post title, and the main body. The sizes listed are filler, so make them whatever you’d like.
/* Blog Title */

#blog-title {
    font-size: 1.7em;
}

/* Post Title */
body #post article h2#title  {
    font-size: 1.5em;
}

/* Main Body */

body, article {
    font-size: 1.2em !important;
}
  1. While you can’t add a cover page, you can add a logo to your blog. This forum post outlines the code needed to do that:
  1. There’s definitely a way to resize your photos to appear larger. I’d personally recommend @Aris’ solution which makes the image’s width larger, sort of like how photos on Medium look. He’s posted instructions & code in the post below. If that’s not what you’re looking for there’s definitely other ways that we can make that happen.
  1. For making the width wider, you can use the below code & adjust as needed. This is what Aris’s blog uses to get the wider margins from his theme:
#collection article,#post article,#subpage #wrapper h1,#subpage article,#wrapper {
  max-width: 860px !important;
}
3 Likes