in footer.php:
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php
echo '<a href="https://crescentic-silences.000webhostapp.com/"> All Rights Reserved @ Chalets & Caviar</a>.';
?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
Also added in advanced CSS editor.
.site-info.container{
text-align:center;
}
Still the text line saying “All Rights Reserved @ Chalets & Caviar.” is on the left and not centered.
]]>
<div class=”site-info”>
You need to use “site-info” as the selector (it has to directly match with the HTML class):
.site-info {
]]>
You can use .site-info as…
.site-info {
text-align: center;
}
Thanks.
]]>———–
So it was that simple ?? just removing the .container!
Big thanks, first time poster here and wow! Impressive response time!
]]>