Ooohboi Steroids
black border around certain buttons and form fields at times:
outline: none;
}
at the end of every text element there is always a 16px or so margin and it’s really annoying when I’m trying to do equal padding around containers etc.
to fix it use this sitewide CSS:
p:last-of-type {
margin: 0;
}
.elementor-icon-list-icon {
transform: translateY(2px);
}
Play with the translateY value as needed
.elementor-icon-list-items .elementor-icon-list-item {
}
.elementor-icon-list-items .elementor-icon-list-icon {
position: absolute;
top: 6px;
left: 0;
}
.elementor-icon-list-items .elementor-icon-list-text {
margin-left: 27px;
}
Hi @jokubas2000k,
first, give the section a class in tab “advanced” (here you see the margings, paddings, z-index, CSS ID, and CSS-classes.) You can think of a name yourself. For example “topsection” see https://prnt.sc/v27paa
2. Now go to the bottom tab “Custom CSS” (Elementor PRO) https://prnt.sc/v27pwo OR go to Customizer-> CSS.
Add there
.topsectie .elementor-row {
height: calc(100vh – 116px);
}
3. Click Save.
PS You will have to check the height of your header. My header is 116px, but yours might be different.
4. Check it:
Now, the black wordpress toolbar makes the page still scroll. You want to check the page without the black toolbar. So make sure to check it in incognito browser, so you are not logged in.
Hope this helps!