The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
4 posters

    How to add box shadow around profile pictures for admins and specific groups only

    eupdorguk
    eupdorguk
    New Member


    Posts : 24
    Reputation : 1
    Language : English

    In progress How to add box shadow around profile pictures for admins and specific groups only

    Post by eupdorguk November 4th 2022, 10:12 am

    Technical Details


    Forum version : #ModernBB
    Position : Founder
    Concerned browser(s) : Google Chrome
    Who the problem concerns : Yourself
    Forum link : https://community.eupd.org.uk

    Description of problem

    Hi there,

    Please see an example in this post. I want to be able to add the box shadow like in the picture over staff and certain groups only not normal members like in the picture example, this is not from another forumotion forum, its from WoW forums. How to add box shadow around profile pictures for admins and specific groups only Picexa10


    Last edited by eupdorguk on November 5th 2022, 3:17 pm; edited 2 times in total
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15391
    Reputation : 1709
    Language : English,Greek
    Location : Greece

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by skouliki November 4th 2022, 1:08 pm

    hello

    unfortunately, we are not coders ( some of us are ) we are here to give solutions /support to issues about forumotion
    we can not develop codes from another platform
    I know you had a member which helped you previously by making a new code but keep in mind it is not right to copy ideas and codes...generally speaking and this is my personal feeling

    if you have an idea you can open a suggestion here https://help.forumotion.com/f29-suggestions

    thank you

    كونان2000 likes this post

    eupdorguk
    eupdorguk
    New Member


    Posts : 24
    Reputation : 1
    Language : English

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by eupdorguk November 4th 2022, 3:13 pm

    skouliki wrote:hello

    unfortunately, we are not coders ( some of us are ) we are here to give solutions /support to issues about forumotion
    we can not develop codes from another platform
    I know you had a member which helped you previously by making a new code but keep in mind it is not right to copy ideas and codes...generally speaking and this is my personal feeling

    if you have an idea you can open a suggestion here https://help.forumotion.com/f29-suggestions

    thank you

    Thanks!

    Edit: I have been using forumotion for years (this account may be new) but I have other forums and the community here have always been incredibly helpful! So I am grateful for that.

    skouliki and كونان2000 like this post

    كونان2000
    كونان2000
    Forumember


    Male Posts : 284
    Reputation : 120
    Language : Arabic

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by ÙƒÙˆÙ†Ø§Ù†2000 November 4th 2022, 4:10 pm

    hi
    Is that what you mean
    How to add box shadow around profile pictures for admins and specific groups only 10054111
    eupdorguk
    eupdorguk
    New Member


    Posts : 24
    Reputation : 1
    Language : English

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by eupdorguk November 4th 2022, 4:14 pm

    كونان2000 wrote:hi
    Is that what you mean
    How to add box shadow around profile pictures for admins and specific groups only 10054111

    Yes, this is what I mean! Very Happy
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15391
    Reputation : 1709
    Language : English,Greek
    Location : Greece

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by skouliki November 4th 2022, 4:59 pm

    Thank you for using forumotion
    Iam sure @كونان2000 will help you succeed your result, he is a good coder and a valuable member

    كونان2000
    كونان2000
    Forumember


    Male Posts : 284
    Reputation : 120
    Language : Arabic

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by ÙƒÙˆÙ†Ø§Ù†2000 November 4th 2022, 8:49 pm

    hi eupdorguk

    Javascript
    Placement : In the topics
    code
    Code:
    $(function() {
    groupMod('xxxx', 'shadow-admin');
    function groupMod(color, classname) {
    $('.post-wrap:has(span[style="color:'+color+'"] strong)').addClass(classname)
     }
     $(".shadow-admin .avatar-big img").css({
     "box-shadow": "0px 2px 7px 7px #8bc34a"
            });
        });
    Replace
    Code:
    xxxx
    with the color of the group


    Result:


    skouliki wrote:Thank you for using forumotion
    Iam sure @كونان2000 will help you succeed your result, he is a good coder and a valuable member
    Thanks skouliki (✿◠‿◠✿)
    Embarassed

    skouliki, SarkZKalie and TonnyKamper like this post

    eupdorguk
    eupdorguk
    New Member


    Posts : 24
    Reputation : 1
    Language : English

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by eupdorguk November 4th 2022, 11:16 pm

    كونان2000 wrote:hi eupdorguk

    Javascript
    Placement : In the topics
    code
    Code:
    $(function() {
    groupMod('xxxx', 'shadow-admin');
    function groupMod(color, classname) {
    $('.post-wrap:has(span[style="color:'+color+'"] strong)').addClass(classname)
     }
     $(".shadow-admin .avatar-big img").css({
     "box-shadow": "0px 2px 7px 7px #8bc34a"
            });
        });
    Replace
    Code:
    xxxx
    with the color of the group


    Result:


    skouliki wrote:Thank you for using forumotion
    Iam sure @كونان2000 will help you succeed your result, he is a good coder and a valuable member
    Thanks skouliki (✿◠‿◠✿)
    Embarassed

    Works perfectly, however the alignment of the profile pictures are not centered correctly. thanks so much!


    Last edited by eupdorguk on November 5th 2022, 12:23 am; edited 1 time in total
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19432
    Reputation : 2010
    Language : fluent in dork / mumbojumbo & English haha

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by Ape November 5th 2022, 12:22 am

    @eupdorguk Is this now solved ?
    If yes please don't forget to mark your topic as solved by pressing the mark solved button found at the top of this topic.



    How to add box shadow around profile pictures for admins and specific groups only Left1212How to add box shadow around profile pictures for admins and specific groups only Center11How to add box shadow around profile pictures for admins and specific groups only Right112
    How to add box shadow around profile pictures for admins and specific groups only Ape_b110
    How to add box shadow around profile pictures for admins and specific groups only Ape1010
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15391
    Reputation : 1709
    Language : English,Greek
    Location : Greece

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by skouliki November 5th 2022, 9:04 am

    eupdorguk wrote:

    Works perfectly, however the alignment of the profile pictures are not centered correctly. thanks so much!

    add this to your CSS

    Code:

    .post-author-avatar {
        margin: 11px 25px 22px !important; }

    the value 25px is the center alignment

    eupdorguk
    eupdorguk
    New Member


    Posts : 24
    Reputation : 1
    Language : English

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by eupdorguk November 5th 2022, 11:19 am

    skouliki wrote:
    eupdorguk wrote:

    Works perfectly, however the alignment of the profile pictures are not centered correctly. thanks so much!

    add this to your CSS

    Code:

    .post-author-avatar {
        margin: 11px 25px 22px !important; }

    the value 25px is the center alignment

    No success unfortunately
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19432
    Reputation : 2010
    Language : fluent in dork / mumbojumbo & English haha

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by Ape November 5th 2022, 3:00 pm

    is this now solved as it's marked as solved ?



    How to add box shadow around profile pictures for admins and specific groups only Left1212How to add box shadow around profile pictures for admins and specific groups only Center11How to add box shadow around profile pictures for admins and specific groups only Right112
    How to add box shadow around profile pictures for admins and specific groups only Ape_b110
    How to add box shadow around profile pictures for admins and specific groups only Ape1010
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15391
    Reputation : 1709
    Language : English,Greek
    Location : Greece

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by skouliki November 5th 2022, 3:12 pm

    the profile picture looks centered to me with the code you added

    How to add box shadow around profile pictures for admins and specific groups only Scre2779

    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19432
    Reputation : 2010
    Language : fluent in dork / mumbojumbo & English haha

    In progress Re: How to add box shadow around profile pictures for admins and specific groups only

    Post by Ape November 5th 2022, 3:19 pm

    also in the center to me refresh your page or do a browser cache clean.



    How to add box shadow around profile pictures for admins and specific groups only Left1212How to add box shadow around profile pictures for admins and specific groups only Center11How to add box shadow around profile pictures for admins and specific groups only Right112
    How to add box shadow around profile pictures for admins and specific groups only Ape_b110
    How to add box shadow around profile pictures for admins and specific groups only Ape1010

      Current date/time is November 11th 2024, 6:42 pm