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.

if gradient shall work in phpbb2 ?

2 posters

Go down

Solved if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 8:36 am

i try some post regarding to gradient but i doesn't work for me
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 11:40 am

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

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 11:50 am

avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 12:01 pm

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.
Sanket
Sanket
ForumGuru

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 12:13 pm

not working sir sanket nothings happen.. when i insert all the codes
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 5:05 pm

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

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 5:11 pm

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
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 5:14 pm

What are the exact codes you added.?
Sanket
Sanket
ForumGuru

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 5:16 pm

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
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 5:19 pm

Did you change the rank for the admin?
Sanket
Sanket
ForumGuru

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 5:21 pm

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>
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 5:29 pm

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;
}
Sanket
Sanket
ForumGuru

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 5:42 pm

its works but see this problem sir sanket

http://prntscr.com/13os3m
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 5:45 pm

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

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 5:49 pm

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
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 5:50 pm

Such a thing is only possible for phpbb3.

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

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 5:54 pm

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?
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 6:13 pm

As i said, not possible.
Sanket
Sanket
ForumGuru

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by BetterHax May 6th 2013, 6:14 pm

Sanket wrote:As i said, not possible.

wew.. i though it is possible Sad
avatar
BetterHax
Forumember

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

Back to top Go down

Solved Re: if gradient shall work in phpbb2 ?

Post by Sanket May 6th 2013, 6:24 pm

Topic Solved & Locked
Sanket
Sanket
ForumGuru

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

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum