Title: Sela &#8211; help
Last modified: August 22, 2016

---

# Sela – help

 *  Resolved [AnaPikaPii](https://wordpress.org/support/users/anapikapii/)
 * (@anapikapii)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/)
 * As you can see, I am using theme Sela from wordpress.com and I have a few questions
   about that theme.
 * When I am logged in on my wordpress.org site I don’t have ability of adding testimonials(
   which is not that big of a deal) but most important – I can’t add an image to
   the post-page. Featured images are working most normally on other pages but on
   post page they just don’t work.
 * I would like to have a front page as a post page and link of that front page 
   in my navigation bar.
    I’ve created the “home” page and in settings I’ve given
   it a permission to be a static page – post page.
 * Can you help me with adding an image on post page?
 * Thank you! 🙂

Viewing 11 replies - 1 through 11 (of 11 total)

 *  [Caleb Burks](https://wordpress.org/support/users/icaleb/)
 * (@icaleb)
 * Automattic Happiness Engineer
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/#post-5674261)
 * It could be disable by the theme, but i doubt it.
 * At the top of your wordpress dashboard when you are editing the page/post, pull
   down “Screen Options” and make sure “Featured Image” is selected.
 *  Thread Starter [AnaPikaPii](https://wordpress.org/support/users/anapikapii/)
 * (@anapikapii)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/#post-5674268)
 * Oh, maybe I wasn’t clear enough. Sorry. I have “Featured image” option and I 
   selected the image I wanted to be shown but the site just doesn’t show it.
 * I did the same process like on other pages but on this (post) page featured image
   is just not showing.
 *  [Caleb Burks](https://wordpress.org/support/users/icaleb/)
 * (@icaleb)
 * Automattic Happiness Engineer
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/#post-5674280)
 * Interesting, by looking at their demo site, it looks like the posts page should
   be showing the image.
 * You may want to try updating or re-downloading the theme.
 * If you are a little comfortable with code, you can go to your editor and navigate
   to your current theme’s content-single.php file. Then see if you can find a mention
   of `get_post_thumbnail_id( $post->ID )` somewhere in it or something like that.
 * Looking at the theme, it will be between `<div class="post-thumbnail"></div>`
 *  Thread Starter [AnaPikaPii](https://wordpress.org/support/users/anapikapii/)
 * (@anapikapii)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/#post-5674283)
 * Okay, while I do that, can you tell me where in the code can I change the font
   family of the main menu? This font doesnt have “special” latin letters that I
   need for the site.
 * Thaaaankkkk you a looot! 🙂
 *  Thread Starter [AnaPikaPii](https://wordpress.org/support/users/anapikapii/)
 * (@anapikapii)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/#post-5674284)
 * Wooow! Surprise! I don’t have content-single.php in my editor o.O
 *  [Caleb Burks](https://wordpress.org/support/users/icaleb/)
 * (@icaleb)
 * Automattic Happiness Engineer
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/#post-5674395)
 * Is there a single.php?
 *  Thread Starter [AnaPikaPii](https://wordpress.org/support/users/anapikapii/)
 * (@anapikapii)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/#post-5674400)
 * There is, btw, I don’t have that problem anymore 🙂
 * I just need to change the font of the main menu and I’m done with that site! 
   🙂
 * Do you maybe know where can I change the font? I know about style.css but when
   I change it there – nothing happens.
 *  [sacredpath](https://wordpress.org/support/users/sacredpath/)
 * (@sacredpath)
 * Automattic Happiness Engineer
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sela-help/#post-5674501)
 * Hi @, the bulk of the menu font styling is set in the following. If you wish 
   to change the font family, just add that declaration to the below.
 *     ```
       .main-navigation a {
           color: #fff;
           display: block;
           font-size: 1.4rem;
           font-weight: bold;
           line-height: 1.7143;
           padding: 1em;
           text-decoration: none;
           text-transform: uppercase;
           transition: all 0.2s ease 0s;
       }
       ```
   
 * Font size and some styling for the submenus is in this rule:
 *     ```
       .main-navigation ul ul a {
           color: #4f4f4f;
           font-size: 1.2rem;
           font-weight: normal;
           padding: 1em;
           text-transform: uppercase;
           width: 180px;
       }
       ```
   
 *  [lisajohnston](https://wordpress.org/support/users/lisajohnston/)
 * (@lisajohnston)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/sela-help/#post-5674558)
 * I am so stuck! My sela wordpress looks NOTHING like the cool theme/template i
   downloaded. I am just going to have to get by with what i have – my main concern
   is…..
 * I REALLY want to remove the date from all blog posts. (date is not relevant to
   my posts) can i???
 * and how DO you get that nice big photo on the front!???
 *  [lisajohnston](https://wordpress.org/support/users/lisajohnston/)
 * (@lisajohnston)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/sela-help/#post-5674559)
 * OH and another question – –
 * i would love for my blog posts to show up as a shortened summary.
    i can NOT 
   figure out how to make my posts shortened and be able to click them and see full
   content.
 * HELP!!!
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/sela-help/#post-5674560)
 * lisajohnston –
 * >  I REALLY want to remove the date from all blog posts. (date is not relevant
   > to my posts) can i???
 * You can hide the date on the blog page and single blog posts with this CSS:
 *     ```
       blog .entry-date, .single .entry-date {
         display: none;
       }
       ```
   
 * Don’t edit the theme files directly, otherwise your changes will be overwritten
   whenever the theme is updated.
 * An easy way to add custom CSS is to install the [Jetpack plugin](http://jetpack.me/)
   and activate the [Custom CSS](http://jetpack.me/support/custom-css/) module. 
   You’ll then add your custom CSS in the new stylesheet editor that’ll appear in
   your dashboard, under Appearance > Edit CSS.
 * As alternatives, you could either install a [standalone custom CSS plugin,](http://wordpress.org/plugins/search.php?q=custom+css)
   or create a [child theme.](http://codex.wordpress.org/Child_Themes)
 * > and how DO you get that nice big photo on the front!???
 * Check out this guide for help setting up Sela:
 * [https://wordpress.com/themes/sela/](https://wordpress.com/themes/sela/)
 * >  i would love for my blog posts to show up as a shortened summary.
   >  i can NOT
   > figure out how to make my posts shortened and be able to click them and see
   > full content.
 * Here are two methods for accomplishing that:
 * [https://wordpress.org/support/topic/sela-theme-excerpts-1?replies=5#post-6867617](https://wordpress.org/support/topic/sela-theme-excerpts-1?replies=5#post-6867617)
 * p.s. this thread is marked as resolved, so it’s better to start a new one and
   get help with your customizations one-on-one there. It’s also always easier to
   help if you provide a link to your site. If you need further help, please start
   a new thread here:
 * [https://wordpress.org/support/theme/sela#postform](https://wordpress.org/support/theme/sela#postform)

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Sela – help’ is closed to new replies.

## Tags

 * [front page](https://wordpress.org/support/topic-tag/front-page/)
 * [post page](https://wordpress.org/support/topic-tag/post-page/)
 * [wpcom-theme](https://wordpress.org/support/topic-tag/wpcom-theme/)

 * 11 replies
 * 5 participants
 * Last reply from: [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/sela-help/#post-5674560)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
