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

    if gradient shall work in phpbb2 ?

    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 09:36

    i try some post regarding to gradient but i doesn't work for me
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 12:40

    Which one are you trying? Please post the thread you are following & the exact codes you added. Also provide your forum URL.
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 12:50

    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 13:01

    Those codes will work for phbb3.

    For phpbb2, follow this thread.
    https://help.forumotion.com/t121042-custom-post-background-for-groups#798461

    Tell us if its working for you.
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 13:13

    not working sir sanket nothings happen.. when i insert all the codes
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 18:05

    What all codes did you add? Same as mentioned in this thread.
    https://help.forumotion.com/t121309-special-bg-color-for-forum-saffs#801157
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 18:11

    Sanket wrote:What all codes did you add? Same as mentioned in this thread.
    https://help.forumotion.com/t121309-special-bg-color-for-forum-saffs#801157

    yes i use all codes given by base.. but nothings happen
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 18:14

    What are the exact codes you added.?
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 18:16

    Rank Admin..
    Code:
    <div class="backgpost">Rank</div>

    JS
    Code:
    $(document).ready(function(){
    $('.post').has('.backgpost').addClass('background_post');
    });

    CSS
    Code:
    .background_post{
    background-image: url('http://i73.servimg.com/u/f73/18/02/55/91/12311.jpg');
    background-repeat: repeat-x;
    }

    that is the exactly code that i used but nothings happen
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 18:19

    Did you change the rank for the admin?
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 18:21

    Sanket wrote:Did you change the rank for the admin?

    yup sir sanket..

    i use this code for admin rank in admin administrator
    Code:
    <div class="backgpost">Admin</div>
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 18:29

    Use this instead, check if its working.

    Rank
    Code:
    <div class="admin1">Rank</div>

    JS
    Code:
    $(function() {
    $('tr.post:has(".admin1") td').addClass('adminpost');
    });

    CSS
    Code:
    .adminpost{
    background-image: url('http://i73.servimg.com/u/f73/18/02/55/91/12311.jpg');
    background-repeat: repeat-x;
    }
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 18:42

    its works but see this problem sir sanket

    http://prntscr.com/13os3m
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 18:45

    Change the image or instead add the color
    Background-color: #ff0000 !important;
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 18:49

    Sanket wrote:Change the image or instead add the color
    Background-color: #ff0000 !important;

    i change the background image with this https://2img.net/r/ihimg/a/img402/3778/14k8i0w.png

    and i expect the result must be like this http://prntscr.com/13ot5i
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 18:50

    Such a thing is only possible for phpbb3.

    For phpbb2, only the block where the profile information appears changes.
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 18:54

    Sanket wrote:Such a thing is only possible for phpbb3.

    For phpbb2, only the block where the profile information appears changes.

    ow how can i make that in phpbb2?
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 19:13

    As i said, not possible.
    avatar
    BetterHax
    Forumember


    Posts : 304
    Reputation : 3
    Language : English,Tagalog
    Location : United State, Philippines

    Solved Re: if gradient shall work in phpbb2 ?

    Post by BetterHax 6/5/2013, 19:14

    Sanket wrote:As i said, not possible.

    wew.. i though it is possible Sad
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: if gradient shall work in phpbb2 ?

    Post by Sanket 6/5/2013, 19:24

    Topic Solved & Locked

      Current date/time is 24/9/2024, 12:15