By Stephen Walker

Share

This allows you to create a skewed background for columns on the left and right. Change skewX to skewY, and it will be on the top and bottom. More tips like this from Kevin Powell.


.skewy .fusion-column-wrapper {
  position:relative;
  isolation: isolate;
  padding:32px;

}
.skewy .fusion-column-wrapper::after{
  position:absolute!important;
  content:"";
  z-index: -1!important;
  inset: 0!important;
  transform:skewX(-5deg)!important;
  background-color:var(--awb-color5)!important;
}

Originally published on Feb. 16, 2023

Additional Information Toggle
Skew Pagination Preview

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

RELATED Snippets

  • Avada, CSS, JavaScript

    This creates a floating container. More to come.

  • Avada, CSS

    This is a style I recently used on my blog post title bar to have the feature image fill the column without having to use a background image.

  • Avada, CSS

    I have seen some tables of contents around the web that use what appears as a left border, and the border color changes when highlighted. This feature is missing from the current version of Avada, so I created CSS styling to do this. It works best with a single-level list. […]

  • Avada

    The social sharing element has some styles that prevent stacking them in a column. This CSS will resolve this. Just assign the class to each instance.

  • Avada, CSS

    This gives the default RSS feed widget a more polished appearance.

  • Avada

    The Toggle Element styling leaves a bit to be desired as it applies hover effects to the entire block and not just the header and the panel. This should override that behavior but still takes advantage of the settings, thanks to the use of CSS variables. Example