Is there a way to remove the full-article image from the masthead without removing it from the site? I want it to appear in the article itself, but It doesn't need to be in the masthead.

You can find the blog on under the About tab and then click the Latest News button.

Thanks,

Lynn

Hi @stimulus,
I added custom CSS rule to hide the background image on the masthead when you view the blog post detail. (You can check the custom CSS code: Template dashboard -> Tools -> Edit custom CSS).

Kind regards,

    9 days later

    cssyeah

    Is there a way to make it so that it pulls the color like the other pages? Right now it is pulling the gray instead of the light green like the other pages.

    Hi @stimulus,
    I have updated the CSS code below to customize the masthead color. Please reload the page to see the changes.

    .com_content.view-article .ja-masthead.has-bg {
      background-image: none !important;
      background: #F0FAF1;
      color: var(--heading-color);
    }
    
    .com_content.view-article .ja-masthead.has-bg::before {
      display: none;
    }
    
    .ja-masthead.has-bg .ja-masthead-title,
    .ja-masthead.has-bg .ja-masthead-detail .block-breadcrumb li span,
    .ja-masthead.has-bg .ja-masthead-detail .block-breadcrumb li.active,
    .ja-masthead.has-bg .ja-masthead-detail .block-breadcrumb li .divider::before {
      color: var(--heading-color);
    }

    Kind regards,

    Write a Reply...
    You need to Login to view replies.