WebbSpots › Forums › Web Design For Everyone › CSS Hacks for use in Avada
-
AuthorPosts
-
WebbSpotsKeymasterAugust 26, 2025 at 6:39 amPost count: 18
Sometimes Avada needs a little help.
WebbSpotsKeymasterAugust 26, 2025 at 6:41 amPost count: 18New to me today!
Title with rotating text set to bounce doesn’t center and linebreak on mobile.
This does the trick.
add to css in title element: rotating-title-mobile
@media only screen and (max-width:800px){
.rotating-title-mobile .fusion-animated-text, .rotating-title-mobile span.line1{
white-space:normal !important;
}}- This reply was modified 2 months, 3 weeks ago by WebbSpots.
WebbSpotsKeymasterAugust 26, 2025 at 6:49 amPost count: 18Lets help Avada with Woo custom checkout align the checkout order review fields and define the radio buttons. Lets also give the radio button a theme matched color.
In the page css:
.fusion-woo-checkout-order-review-tb ul li label:before, .fusion-woo-checkout-payment-tb ul li label:before {
border: 1px solid #000;
}
.fusion-woo-checkout-order-review-tb ul li input:checked+label:after, .fusion-woo-checkout-payment-tb ul li input:checked+label:after {
background: blue;
}.fusion-woo-checkout-shipping-tb .checkbox span:before, .fusion-woo-checkout-tabs-tb.woo-tabs-titles-disabled .checkbox span:before {
border: 1px solid;
border-color: #000000;
}
.checkout .shop_table tfoot th {width: 50%;
text-align: left;}
.checkout .shop_table tfoot td label {
display: block;
}- This reply was modified 2 months, 3 weeks ago by WebbSpots.
WebbSpotsKeymasterAugust 26, 2025 at 6:53 amPost count: 18We use Woo with Avada. Sometimes needs a nudge to get the look we like. Woo menu cart is one example where the theme colors need some help!
In Avada Custom CSS we add a hover color to match our theme to that element:
.fusion-menu-cart .awb-menu__sub-ul_main a:hover {
background-color: #000000;
}.awb-menu .fusion-menu-cart-checkout:hover {
background-color: #000000;
}- This reply was modified 2 months, 3 weeks ago by WebbSpots.
WebbSpotsKeymasterSeptember 2, 2025 at 7:56 amPost count: 18We use Avada Postcards for showing products, posts and portfolios. There is an included filter function.
The basic filters are a row of text. To dress it up a bit our friend, Stephen Walker, adds a bit of css:.filtered-cards {
padding:1.8rem 2rem;
}
.filtered-cards .fusion-filters{
margin-bottom:2rem;
}
.fusion-filter {
margin-inline:0;
}
.fusion-filter a{
padding:4px 12px;
color:black!important;
font-size:1rem!important;
font-weight:400!important;
background-color:transpareent;
border:1px solid lightgray;
border-radius:0;
}
.fusion-filter a:hover{
background-color:transparent;
color:black;
}
.fusion-filter.fusion-active a{
border:1px solid lightgray!important;
background-color:rgba(0,0,0,.1);
color:rgb(131, 64, 102)!important;
line-height:inherit;
}
.fusion-filter.fusion-active a:hover{
background-color:transparent;
color:var(–awb-color7)!important;
}
WebbSpotsKeymasterSeptember 9, 2025 at 8:36 amPost count: 18Form Styling css from a Facebook Avada Users Group member, Lizza Alli.
Avada Forms checkboxes are really not checkboxes at all! To use a checkmark in the box some additional styling is needed, adjust to your preference for color and sizing:.my-checkbox .fusion-form-checkbox label{
padding-left:25px!important;
}
.my-checkbox .fusion-form-checkbox label:before {
height:20px!important;
min-width:20px!important;
}
.my-checkbox .fusion-form-checkbox input:checked+label:before{
background: var(–awb-form-focus-border-color);
}
.my-checkbox .fusion-form-checkbox input:checked+label:after{
left: 5px!important;
top: 2px!important;
width: 5px!important;
height: 15px!important;
background:initial!important;
border: solid #ffffff!important;
border-width: 0 2px 2px 0!important;
transform: rotate(45deg)!important;
}

- This reply was modified 2 months, 1 week ago by WebbSpots.
WebbSpotsKeymasterNovember 2, 2025 at 12:20 pmPost count: 18Add this to a container or column to blur the background.
.my-blur {
backdrop-filter:blur(25px)
} -
AuthorPosts
- You must be logged in to reply to this topic.


