CSS Box Shadow-无法在底部使用

时间:2018-06-26 15:24:09

标签: css box-shadow

我正在使用以下代码,并希望div类“ certificate”在右侧和底部周围有一个框阴影。它仅显示在右侧-请问关于如何修改此代码的任何建议?我已经尽力想尽一切办法,任何建议将不胜感激。谢谢。

    <?php
    get_header(); ?>

    <?php
    //create full width template
    kleo_switch_layout('full');
    ?>

    <?php get_template_part('page-parts/general-before-wrap'); ?>

    <?php get_template_part( 'page-parts/page-title' ); ?>
    <!-- <div class="main-content <?php echo Kleo::get_config('container_class'); ?>"> -->

    <!-- chelsea put your stuff below here -->
    <div class="certificate" style="width:80%;margin:auto;border: 1px solid;padding: 10px; box-shadow: 5px 5px 10px grey; z-index: 10;">    
        <center><h1 style="font-family:verdana;" color="black"><b>Digital Badge Certificate</b></h1></center>
        <center><p style="margin-bottom:0;">Congratulations</p></center>
        <center><h2 style="margin-top:0;margin-bottom:0;"><b><i>
                    <?php global $current_user;
                    wp_get_current_user();
                    echo $current_user->display_name
                    ?> </i></b></h2></center>
        <center><p style="margin-top:0;">You have earned the following badges:</p></center>

    <!-- test code for listing badge icons-->

         <?php
               if ( is_user_logged_in () ) {
                  $achievements = badgeos_get_user_achievements();

                        if ( !empty( $achievements ) ) {
                             foreach ( $achievements as $achievement ) {
                                echo '<div style="width:150px;height:150px;display:inline;padding-right: 20px;padding-bottom: 10px" class="badge-list">';
                                echo get_the_post_thumbnail( $achievement->ID, array(150,150) );
                                // echo get_the_post_thumbnail( $achievement->ID, 'thumbnail' );
                                echo '</div>';       
                                }
                            }

                                else {
                                _e( 'No achievements to display', 'text-domain' );
                                }
                 }
       ?>

</div><!-- end of certificate div -->
<!--cheslea put your stuff above here -->


<!-- Wordpress begins - don't put anything below here------------------- -->

  <?php get_template_part('page-parts/general-after-wrap'); ?>

<?php get_footer(); ?>

0 个答案:

没有答案