• Resolved anupalbora

    (@anupalbora)


    I am unable to remove the featured image from my POST, I searched in google and it was mentioned to be disabled from Theme Options-> Layout options. But my layout options is not available.

    I have seen solutions like active / deactivate plugins, which does not make sense to me. Kindly help.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi, you can use the following CSS in Appearance->Customize->Additional CSS to hide it on single post pages

    .single article.post .wp-post-image {
    	display: none;
    }
    Thread Starter anupalbora

    (@anupalbora)

    Hi Jarret,

    It worked, thanks. Is there a link on documentation of CSS used. I will like to increase the width used on the POSTS as well.

    Thanks Again!!

    Hi, not a list that I know of. I just use Chrome and right click in the browser, click Inspect and then look at the code that way and work from there.

    For the post width, you can do something like the following

    .single article.post {
    	width: 700px;
    }

    Adjusting the 700px value to your liking.

    Thread Starter anupalbora

    (@anupalbora)

    Cool, Jarret. So it look like a bit messy trial and error way, by looking at the underlying code.

    Thanks again.

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

The topic ‘Theme Options- Layout options missing’ is closed to new replies.