October 29, 2021
Tristan Poulsen
CSS Code Usage Archive
CSS Code Archive
This post is for css code that I’ve had to use for certain projects and how I used it. (for future reference) – Please detail the code used with images and how it works:
This code is for Elementor changing the size of a class within a class for setting the size of a select(option) form to the same size for all the boxes. The reason I used this is the message box wouldn’t line up with the selection box with the columns sitting side by side with 50% usage of the block size per column
.elementor-field-textual.elementor-size-sm {
max-height: 50px;
min-height: 50px;
}