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
2 posters

    Can You make a Sticky post glow

    Kdreml
    Kdreml
    New Member


    Posts : 17
    Reputation : 1
    Language : English

    Can You make a Sticky post glow Empty Can You make a Sticky post glow

    Post by Kdreml Sat 31 Oct - 16:24

    I posted instructions on how to upload and post a screenshot on my site and wanted everyone to notice the sticky post. Is there a way to make just stickys glow?
    EndlessDream
    EndlessDream
    Forumember


    Male Posts : 107
    Reputation : 22
    Language : English, Spanish, Serbian

    Can You make a Sticky post glow Empty Re: Can You make a Sticky post glow

    Post by EndlessDream Wed 4 Nov - 4:18

    You use PhpBB3 version, right?

    If so, go to your Admin panel -> Modules -> JavaScript Codes Management -> Create New -> Add any title -> Select "In all the pages" and add this code:

    Code:
    $(document).ready(function() {
    $('dd.dterm strong:contains("Sticky")').each(function(){
    $(this).addClass('sticky');
    });
    });

    Save it and make sure Javascript is enabled on your forum.

    Now go to Display -> Colors -> CSS Stylesheet and add this code:
    Code:
    .sticky {
    text-shadow: 0 0 0.3em  #E34124, 0 0 0.3em  #E34124;
    }

    Save changes and that's it.
    You can play with color of shadow etc.

    Note: this code will work only on PhpBB3 version, if you need it for other forum version, say and I'll post it. Wink

      Current date/time is Mon 23 Sep - 0:29