This commit is contained in:
Lieu Le 2019-09-13 14:11:27 +07:00
parent c51985986a
commit b641d72fa3
3 changed files with 12 additions and 2 deletions

View File

@ -1025,6 +1025,9 @@ Use it to make something cool, have fun, and share what you've learned with othe
.opalesate-archive-top .opalestate-sortable .form-control, .opalesate-archive-top .opalestate-sortable .select2-selection--single { .opalesate-archive-top .opalestate-sortable .form-control, .opalesate-archive-top .opalestate-sortable .select2-selection--single {
padding-top: 8px; } padding-top: 8px; }
.opalestate-results .contact-share-form-container {
padding: 30px; }
.opalesate-archive-bottom { .opalesate-archive-bottom {
position: relative; } position: relative; }

View File

@ -70,6 +70,11 @@
} }
} }
} }
.opalestate-results {
.contact-share-form-container {
padding: $grid-gutter-width;
}
}
.opalesate-archive-bottom { .opalesate-archive-bottom {
position: relative; position: relative;
} }

View File

@ -471,7 +471,9 @@ class Opalestate_Account_Button_Elementor_Widget extends Opalestate_Elementor_Wi
<?php if ( $settings['logged_in_enable_avatar'] ) : ?> <?php if ( $settings['logged_in_enable_avatar'] ) : ?>
<a href="#"> <a href="#">
<?php $user_id = get_current_user_id(); ?> <?php $user_id = get_current_user_id(); ?>
<img src="<?php echo OpalEstate_User::get_author_picture( $user_id ); ?>"/> <div class="opalestate-user-image">
<img src="<?php echo OpalEstate_User::get_author_picture( $user_id ); ?>" alt="<?php esc_attr_e( 'Avatar image', 'opalestate-pro' ); ?>"/>
</div>
<span class="notify active"></span> <span class="notify active"></span>
</a> </a>
<?php else : ?> <?php else : ?>