This commit is contained in:
Roman Pyrih
2025-10-14 09:18:17 +02:00
parent 0aa6f4c87c
commit ce201a9698
4 changed files with 24 additions and 1 deletions

View File

@@ -945,6 +945,14 @@ footer#site-footer .footer-2 .row .col-1 a {
display: none;
}
}
footer#site-footer .footer-2 .row .col-1 .col-text p {
color: #9e9e9e;
margin: 0;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
letter-spacing: -0.32px;
}
footer#site-footer .footer-2 .row .col-2 {
flex-basis: 60%;
}

File diff suppressed because one or more lines are too long

View File

@@ -989,6 +989,16 @@ footer#site-footer {
display: none;
}
}
.col-text {
p {
color: $cGray2;
margin: 0;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
letter-spacing: -0.32px;
}
}
}
&-2 {
flex-basis: 60%;

View File

@@ -57,6 +57,11 @@
<div class="row">
<div class="col col-1">
<p><?php echo esc_html($footer['col_1']['title']); ?></p>
<?php if (!empty($footer['col_1']['text'])) : ?>
<div class="col-text">
<?php echo wp_kses_post($footer['col_1']['text']); ?>
</div>
<?php endif; ?>
<a href="<?php echo esc_url($footer['col_1']['btn']['url']); ?>" target="<?php echo esc_attr($footer['col_1']['btn']['target'] ?: '_self'); ?>">
<?php echo esc_html($footer['col_1']['btn']['title']); ?>
</a>