Notifications
Clear all

Importing Gifs and they shrink

5 Posts
3 Users
0 Likes
1,507 Views
Posts: 15
Customer
Topic starter
(@jason-toth)
Member
Joined: 3 years ago

I am adding my gif images from my old phpBB forum. When they in they shrink down. Checked the size icon is set to zero. If you go to this forum you will see:

https://www.writersofthefuture.com/forum/

Attached is also a picture showing how small they are. Compared to the default ones they are about half the size. They are so small you can't see what they are.

Thanks for your help on this.

Screenshot 2021 03 29 Writers Illustrators of the Future Forum

 

 

4 Replies
Posts: 68
Customer
(@tutrix)
Member
Joined: 4 years ago

@jason-toth

edit this emoticon "group" and set the necessary max.height and max.width

Reply
Posts: 15
Customer
Topic starter
(@jason-toth)
Member
Joined: 3 years ago

Thank you. That worked on the size. Any way to incorporate this in the top bar with the other emoji so that it is in the same top tool bar?

Reply
Posts: 68
Customer
(@tutrix)
Member
Joined: 4 years ago

@jason-toth

search for the id of mceu_XX and mceu_XX-body from your editor

add this code to the function.php of your WP theme or use code snippet

add_action( 'wp_head', function () { ?>
<script>
jQuery(document).ready(function(){
$("#wpforo #wpforo-wrap .wpfe-button") .appendTo("#wpforo #wpforo-wrap #mceu_36 #mceu_36-body");
$("#wpforo #wpforo-wrap .wpfe-button").toggleClass('mce-widget mce-btn'); 	
});
</script>
<?php } );

replace the 36 with your id

add this to custom css

#wpforo #wpforo-wrap .wpf-smile-button {
    position: absolute;
    top: -18px;
    right: auto;
    margin-left: 3px;
}
.fa-smile::before {
    content: "\f118";
    font-family: "Font Awesome 5 Free";
    font-size: 21px;
}

Dashboard > Forums > Settings > Style (custom css)

https://www.screencast.com/t/toO0OO7EDmzJ

Reply
Posts: 4171
 Tom
Admin
(@tomson)
Famed Member
Joined: 9 years ago
Posted by: @jason-toth

Attached is also a picture showing how small they are. Compared to the default ones they are about half the size. They are so small you can't see what they are.

They are emoticons they are not stickers, that's why they are small. The default ones are not a simple emoticon they are stickers. You see the original size of your emoticons.

Reply
Share:
Scroll to top