Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

service portal footer configuration

Vasilis Anastas
Tera Expert

hello! 

I have created a widget to use it as footer and put it from page designer at the bottom of the page.

VasilisAnastas_0-1678276763121.png

But as you can see , there are white spaces between footer and the bottom of the page. I know that's happening because it's a widget , not a real footer.Is this a right way to create footers? If yes,  Is there any way to disappear these spaces? 

 

Thank you!

1 REPLY 1

Sonu Parab
Mega Sage

Hi @Vasilis Anastas ,
Try below CSS script:

 

.footer { 
   bottom: 0px;  //Footer position from Bottom
}

 

e.g. In my widget main Div class is footer and I have set its position using CSS. So in your widget there will be main div class, with the help of this you can change its position.

Sonu_Parab_0-1678280841046.png

 


Hope this helps 

please mark my answer correct if this helps you.

Thank you