Skip to content

Commit

Permalink
Update css-generator.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jessuppi authored Dec 9, 2024
1 parent c62c9fd commit 1def8a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions inc/css-generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,8 @@ function hovercraft_generate_css(){
$after_byline_link_color = get_theme_mod( 'hovercraft_after_byline_link_color', '#5C6BC0' );
$featured_image_position = get_theme_mod( 'hovercraft_featured_image_position', 'above_title' );
$title_divider_background_color = get_theme_mod( 'hovercraft_title_divider_background_color', '#757575' );
$blockquote_text_color = get_theme_mod( 'hovercraft_blockquote_text_color', '#616161' );
$blockquote_border_color = get_theme_mod( 'hovercraft_blockquote_border_color', '#757575' );
?>

<style type="text/css" id="hovercraft_custom_css">
Expand Down Expand Up @@ -386,8 +388,8 @@ function hovercraft_generate_css(){
blockquote {
margin: 30px 0px 30px 30px;
padding: 20px 30px;
border-left: 5px solid #ECEFF1;
color: #607D8B;
border-left: 5px solid <?php echo $blockquote_border_color; ?>;
color: $blockquote_text_color;
}

blockquote p {
Expand Down

0 comments on commit 1def8a9

Please sign in to comment.