Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #580368

    Hello

    I am trying to make a super-simple site with Enfold and I am having a problem with the blog:

    I want the blog posts to appear as they are here, in their entirety. I don’t want the titles to link to the single blog post (it is centered and kills the aesthetic). How do I stop them being links? I assume somewhere in PHP?

    #580395

    how did you set up this site?

    because there is no featured image shown on your screenshot.

    Anyway – you can get rid of link option by setting up the pointer-event css rule like:

    .post-title.entry-title > a {
        pointer-events: none;
    }
    #580429

    Thanks man – that worked.

    I set the blog up as “Single Author, big preview pic” and then just didn’t choose a featured image. There isn’t an option to say that I don’t want preview images, which is strange.

    I want the whole site to have a minimalist aesthetic. Perhaps Enfold isn’t the best theme for that!!!

    #580436

    you can set it to display: none

    img.wp-post-image {
        display: none;
    }

    and if you don’t like those meta infos :

    .post-meta-infos {
        display: none;
    }

    and if you only want to erase some infos:

    .blog-categories, .post-meta-infos .text-sep, .blog-author {
        display: none;
    }

    etc. pp

    • This reply was modified 8 years, 9 months ago by Guenni007.
    #580437

    Thanks, but then it also hides the images on my portfolio page:

    #580441

    please set one featured image for a single blog entry. than we can make the rule more specific for your site.

    edit:

    .big-preview.single-big img.wp-post-image {
        display: none;
    }
    • This reply was modified 8 years, 9 months ago by Guenni007.
    #580444

    done

    #580491

    you have seen the edit on thread above ?

    #580493

    Haha! No I didn’t!

    Sorted it now. Thank you very much.

    #580852

    Hi,

    Great, glad you got it sorted. Thanks for the help @Guenni007!

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.