Hello! Sorry for my bad english.
I purchased the Horus theme. Now I want to create a new custom page based on the finished code.
{{!< default }}
{{! The tag above means: Insert everything in this file into the {body} of the default.hbs template. }}
{{#post}}
<section id="page-title" class="post-presentation">
<div class="lazy {{#if feature_image}}background{{else}}background-pattern{{/if}}" {{#if feature_image}} data-bg="url({{feature_image}})"{{/if}}>
<div class="gradient gradient1">
<div class="container">
<div class="page-content-wrapper">
<div class="carousel-content">
<div class="post-tags delay3 animated fadeInDown">
{{#foreach tags}}
<a href="{{url}}">{{name}}</a>
{{/foreach}}
</div>
<h1 class="delay2 animated fadeIn">{{title}}</h1>
<div class="post-extra-info delay4 animated fadeInUp">
{{#primary_author}}
<a href="{{url}}" class="author-info">
{{#if profile_image}}
<div class="author-image background lazy" data-bg="url({{profile_image}})"></div>
{{/if}}
{{name}}
</a>
{{/primary_author}}
<span><i class="far fa-clock"></i>{{date published_at timeago="true"}}</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="main-content" class="post-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-9 post-presentation article-wrapper">
{{#if access}}
{{! Article - Go to: partials/article.hbs to view this partial. }}
{{> article }}
{{else}}
{{> mockArticle}}
<div class="article-subscribe {{#if @member}}pricing{{/if}}">
<div class="subscribe-content">
{{#if @member}}
<h2>{{t "This post is for paying subscribers only"}}</h2>
{{else}}
<h2>{{t "This post is for subscribers only"}}</h2>
{{/if}}
<p>{{t "You don't have access to this post at the moment, but if you upgrade your account you'll be able to see the whole post, as well as all the other posts in the archive! Subscribing only takes a few seconds and will give you immediate access."}}</p>
{{#if @member}}
{{> pricingTable }}
{{else}}
{{> subscribeForm inputOnly="true"}}
{{/if}}
</div>
</div>
{{/if}}
</div>
<aside class="col-xs-12 col-sm-12 col-md-4 col-lg-3">
{{! Aside - Go to: partials/aside.hbs to view this partial. }}
{{> "aside" }}
</aside>
</div>
{{! Subscription Form - Go to: partials/subscribe_form.hbs to view this partial. }}
{{#if @labs.subscribers}}
{{subscribe_form placeholder=(t "Email Address...") input_class="form-control" }}
{{/if}}
</div>
</div>
{{/post}}
I want to remove the picture at the beginning of the post.
I deleted:
<div class = "lazy {{#if feature_image}} background {{else}} background-pattern {{/ if}}" {{#if feature_image}} data-bg = "url ({{feature_image}})" {{/ if}}>
<div class = "gradient gradient1">
The image is missing, but the title is white and is not visible on the background of the page. How can I change the color of the title, the color of the author’s name and time of publication?
I lack knowledge. Very grateful for your help.