cfischman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Footer widgets and footer bar are too tall in heightSorry for being such a web dummy. I opened the inspect window and see some references to Class, however, I don’t know what to change. I don’t have the site published yet, as it is a complete revision of an existing site. I will have to contact the host to find out how to replace and re-publish, and then how I can work on it (send links), while informing visitors it is under construction. I was hoping there would be some simple code to add to CSS that would fix the size. Below I copied responses from this site that look to be generic and not site specific. I see no reference to a specific site and the site owner was able to add the code and magically the problem was fixed. Sorry for not being a code programmer.
bemdesign (@bemdesign)
1 year, 8 months ago
In your CSS, the site-footer has padding at the top and bottom of 10px (making for 20px vertical padding total). You can reduce the footer height by adjusting that padding.You can add custom CSS to your site through Appearance -> Customize -> Additional CSS.
In the code field, add something like this:
#site-footer{padding: 5px 0px 5px 0px;}That should reduce the footer height by half. Adjust the 5px to whatever you need to adjust the height to what looks best.
Milan – ThemeGrill Support (@rubick322)
10 months, 4 weeks ago
Hi there,Please add the following CSS:
#top-footer{
padding: 10px 0;
}Help link https://docs.themegrill.com/knowledgebase/where-do-i-add-my-custom-css/
Thanks and Regards,
MilanForum: Fixing WordPress
In reply to: Footer widgets and footer bar are too tall in heightOkay, where do I find classes? The code I pasted was the way someone answered a nearly identical question which did not appear to be site specific to the other post.