Archived topic
GP Site Library
10 replies · Started by Sourabh on June 10, 2021
HI,
Using one of template from site library - https://gpsites.co/dev/
Need bit help as unable to find specific option for editing the text and space mentioned in image... refer P area for more info...Snapshot will help to understand more my concern...
thanks
As for the sticky navigation, try increasing the menu item height:
https://docs.generatepress.com/article/sticky-navigation/#menu-item-height
Okay, Thanks it was helpful, just small problem there (refer P section).
Hi there,
The spacing between the paragraph links are added by default. It's a margin-bottom added by default coming from WordPress core CSS.
It's this one:
p {
margin-bottom: 1.5em;
}
You can remove this margin-bottom specifically for that menu by assigning a CSS class on its grid column container block.
We then use that added CSS class as the selector to target its content paragraph blocks.
Say, for example, you've added custom-footer-menu class to the grid column. We can remove the margin-bottom for its content paragraph blocks using this CSS:
.custom-footer-menu p {
margin-bottom: 1.5em;
}
As for the white space on the bottom of the footer:
The white space you see is from an empty paragraph block below your Container block containing the footer inside a Block Element. Make sure this empty paragraph block is removed so that space doesn't appear.
Thanks Elvin.
That white space gone but that space is applying in whole container which destroying heading space also..do we have any alternate.
can I add a footer menus there in list format like header menus, I am doing it via manual text para and hyperlinking it with concern page.
Hi there,
use the Headline block for your list items, you can change it to a P tag, and remove the bottom margin in the Spacing setting.
Can we create nav menus and add there in place of footer menus ?
Not at this time as WordPress have yet to convert core widgets to Blocks.
okay thanks
you're welcome