• I’m using the theme “Gazette”. The height of the footer section containing the “Terms and Conditions” is too high. Is there any way I could reduce the height? Thanks!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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 styleattribute of a HTML element.
      Edit the value of the heightproperty 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

    lisa

    (@contentiskey)

    -if you think the footer height issue is related to the theme, please start a topic in the theme’s support forum to request theme specific guidance: https://www.ads-software.com/support/theme/gazette

    -have you tried deactivating/reactivating each plugin to see if the issue is related to one of the plugins?

    Thread Starter vyw928

    (@vyw928)

    Hi, Shariful

    Thank you so much for the solution! I appreciate your help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to Change the Height of the Footer’ is closed to new replies.