I have 2 gk-icon text elements on both top widgets 1 and 2.
How can I reduce the space between them?
I've tried this on override, nothing happens.
- Code: Select all
#gk-top1 {
margin-bottom: 5px;
}
#gk-top2 {
margin-top: 5px;
}
Thanks
#gk-top1 {
margin-bottom: 5px;
}
#gk-top2 {
margin-top: 5px;
}
Cyberek wrote:Could You post an url to your site?
#gk-top1 .box.centered {padding: 50px 0 0;}
#gk-top2 .box.centered {padding: 0 0 50px;}
Cyberek wrote:
- Code: Select all
#gk-top1 .box.centered {padding: 50px 0 0;}
#gk-top2 .box.centered {padding: 0 0 50px;}
This should do the trick
#gk-top1 .box.centered {padding: 10px 0 0;}
#gk-top2 .box.centered {padding: 0 0 10px;}
#gk-top1 .box.centered {padding: 10px 0 0 !important;}
#gk-top2 .box.centered {padding: 0 0 10px !important;}
Cyberek wrote:Check if this will work...
- Code: Select all
#gk-top1 .box.centered {padding: 10px 0 0 !important;}
#gk-top2 .box.centered {padding: 0 0 10px !important;}