- Posts: 15920
COMMUNITY FORUM
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
jomsocial
- Krikor Boghossian
-
- Offline
- Platinum Member
.contentBlock { overflow: hidden; }
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
add the snipet into custom.css
Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Try using min-height instead.
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
breaks content on other pages
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
bug 1 if i add kt user login to the sidebar the agenda breaks but when i remove kt user login from side and dont publish that module the agenda is ok with height: 100% !important
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
.isFrontpage .hasSidebar { padding-bottom: 100px; }
Paste it in your custom.css file
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
You have pasted padding bottom 160px, instead of 100.
Custom.css line 90. This will decrease the gap.
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
It is possible I overwrote your file as I was working on it earlier.
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
h1 {
margin: -72px auto;
}
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
By default you have a 50px margin on top and 25 on the bottom on smaller viewports.
To decrease it add:
@media only screen and (max-width: 1024px) {
#logo h1 {
margin-bottom: 25px;
margin-top: 25px;
}}
and to balance it:
@media only screen and (max-width: 1024px) {
#mainHeader { margin-top: 30px; }}
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Please Log in or Create an account to join the conversation.