Hi, @vyw928
To reduce the height of the footer in the Gazette theme, you can try the following steps:
Go to the WordPress dashboard and click on “Appearance” and then “Customize”.
Click on “Additional CSS” and add the following code:
footer.site-footer {
height: auto;
}
This will set the height of the footer to “auto”, which will automatically adjust the height based on the content inside it. You can adjust the value to a specific height in pixels (e.g. height: 100px;
) if you prefer.
Alternatively, you can also try editing the theme files directly. To do this, follow these steps:
Connect to your website via FTP or SFTP.
Navigate to the directory containing the theme files. The path should be something like /wp-content/themes/gazette
.
Find the file containing the footer code and open it in a text editor. It is usually called footer.php
.
Find the code that controls the height of the footer. It will probably be a line of CSS code wrapped in a style
attribute of a HTML element.
Edit the value of the height
property to a value that you desire. For example, if the code looks like this:
<footer class="site-footer" style="height: 250px;">
Change it to this:
<footer class="site-footer" style="height: 100px;">
Save the file and upload it back to the server. The changes should now be reflected on your website.
I hope this helps! Let me know if you have any questions or if you need further assistance.
Thank you