Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #115227
    F
    Participant

    Is it possible to change the way the Hero Content is displayed? I tried to display more than one hero content on the front page, and the display is terrible. There isn’t enough space between them and the pictures are placed oddly. Can I display the hero content without an image on the front page? In that case, it should display full width.

    Thanks.

    #115252
    Mahesh
    Keymaster

    @kataka-publishing: The theme is designed to put only one Hero Content. For more than one, you’ll need to customize further through child theme. You can find more details on creating child theme HERE.
    You can hide the image and make it full width with custom CSS. Go to Dashboard=> Appearance=> customize=> Additional CSS box and add the following CSS:

    #hero-section .has-post-thumbnail .entry-container {
        width: 100%;
    }
    
    #hero-section .featured-image {
        display: none;
    }

    Regards,
    Mahesh

    #115274
    F
    Participant

    Hi Mahesh,

    1) I am working with a child theme already.

    2) Actually, the theme does allow for multiple displays of Hero Content on the front page. In the Customize – Hero Content section, it gives you the ability to set up to 20 pages to display as Hero Content.

    3) Thanks for the code. It worked, except it also removed the Portfolio images on the front page display. Is there any way to remove the Hero Content images from the front page without inadvertently removing the Portfolio images as well?

    Many thanks!

    #115408
    Mahesh
    Keymaster

    @kataka-publishing: Sorry about that, my mistake.
    And for the image hiding for Hero Content only, use the CSS above, I’ve corrected it. Let me know if any problem.

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Display Hero content full width on home page without image’ is closed to new replies.