Skip to content

Commit

Permalink
08-20-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
midkiffaries committed Aug 22, 2024
1 parent e2c7ef3 commit a447887
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 1 addition & 5 deletions assets/css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -1704,12 +1704,8 @@ Breadcrumbs Plugin Style
display: none;
}

.breadcrumbs .trail-end span::after {
content: "...";
}


/************************
/************************
Contact Modal Styling
*************************/

Expand Down
10 changes: 10 additions & 0 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,16 @@
]);
});

// Add additional features to block editor elements
add_filter( 'register_block_type_args', function( $args, $block_type ) {
// Media & Text block
if ( 'core/media-text' === $block_type ) {
$args['supports']['filter']['duotone'] = true; // Add duotone filter
$args['supports']['shadow'] = true; // Add drop shadow
}
return $args;
}, 10, 2 );


/////////////////////////////
// WordPress Setup
Expand Down

0 comments on commit a447887

Please sign in to comment.