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.

Special bg color for forum saffs

4 posters

Go down

In progress Re: Special bg color for forum saffs

Post by Sanket Tue 5 Mar 2013 - 7:56

Sorry, but you can check back for the codes when you are on your computer.

The thread with the solution is already given to you.
https://help.forumotion.com/t121306-how-to-set-image-for-forums#800674
https://help.forumotion.com/t121042-custom-post-background-for-groups#800697
Sanket
Sanket
ForumGuru

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

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Tue 5 Mar 2013 - 9:55

You will need to add a different background for each rank, yes. Simply repeat the steps given here but change it accordingly so it's different for each rank.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Tue 5 Mar 2013 - 11:43

I realise that, which is why you need to create different classes for each rank. Example:

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

Code:
<div class="backgpost2">Moderator</div>

Notice how the class is different in each case. Then, simply apply that class to the CSS. Follow the steps required if you are not sure.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Tue 5 Mar 2013 - 16:36

Those will be your rank titles. The rest of steps can be found in the topic I've given you in one of my previous posts.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Tue 5 Mar 2013 - 16:43

Post it at the top of your CSS. But make sure the classes are changed for each rank.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Tue 5 Mar 2013 - 17:33

You change the 'backgpost' part in:

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

...to something else. You can change it to anything you want.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by SLGray Tue 5 Mar 2013 - 19:52

Code:
    <div class="backgpost">Admin</div>
In the above, you will change this part for each rank: BACKGPOST.


Special bg color for forum saffs Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by SLGray Tue 5 Mar 2013 - 22:07

You said that you had 5 ranks:

First:
Code:
    <div class="backgpost">Rank 1</div>
Second:
Code:
  <div class="backgpost2">Rank 2</div>
Third:
Code:
      <div class="backgpost3">Rank 3 </div>
Fourth:
Code:
<div class="backgpost4">Rank 4</div>
Fifth:
Code:

        <div class="backgpost5">Rank 5</div>
Notice that each rank has a different class. You will need to add CSS for each different rank.


Special bg color for forum saffs Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by SLGray Wed 6 Mar 2013 - 8:39

Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!

Since this is you third reminder, you have received a warning.
The five codes I posted will go in the ranks' titles. Then you will use the class in your CSS to create the backgrounds for the five ranks.


Special bg color for forum saffs Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Wed 6 Mar 2013 - 9:23

Okay, I will explain it for you step by step. This is an example rank:

Code:
<div class="backgpost">Rank</div>
You will need to add this to your rank title in the rank administration section. Next, you will need to add this to your Javascript code management:

Code:
$(document).ready(function(){
$('.post').has('.backgpost').addClass('background_post');
});
Set the placement to topics. Lastly, please add this to your CSS:

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

If you want to repeat this for different ranks, then you will need to change the 'backgpost' and 'background_post' something else. I hope this has been explained clear enough.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Wed 6 Mar 2013 - 10:47

Modify the CSS element:

Code:
.background_post{
    background-color: YOUR COLOUR;
}

Replace 'YOUR COLOUR' with your own colour.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Wed 6 Mar 2013 - 11:46

You can use either 'background-image' or 'background-color'

You said:
personal choice bg color
So, if you want a background colour then you'll need to use the correct one.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Wed 6 Mar 2013 - 15:45

Please post all the codes that you have added. This includes the rank titles, CSS and Javascript.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Wed 6 Mar 2013 - 16:14

You have asked this before and the answer was no. Support is given here. There is no reason for it to be posted on your forum.

I don't understand what the problem is.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Wed 6 Mar 2013 - 16:21

I have replied. Please note that support via PM is not allowed and that all support needs to be done here.

What exactly are you having difficulty with? You still have not posted the codes you added to your forum.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Thu 7 Mar 2013 - 15:35

Yes, please post everything that you have added here so that we can see what's wrong.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Sanket Thu 7 Mar 2013 - 16:41

Base is clearly mentioning you to post all the codes that you added in whichever places in the admin panel to be posted here. Smile

We cannot guide you, if you don't provide us with the information we ask.
Sanket
Sanket
ForumGuru

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

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Sanket Thu 7 Mar 2013 - 16:57

MAX-S, please post the codes here when you are on your computer. Please don't try to fix the problems being on the mobile phone, as you are not able to add or do anything that any member or staff member would suggest. This is nothing but causing delay in finding the solution.
Sanket
Sanket
ForumGuru

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

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Sanket Thu 7 Mar 2013 - 17:12

Yes, this thread will remain open. Just come whenever you are on the computer, someone or the other will help you out Smile

The warnings cannot be removed. But, i am glad you have read the rules. Just follow the rules & everything will be fine. Smile

All the best with your forum.
Sanket
Sanket
ForumGuru

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

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by SLGray Fri 8 Mar 2013 - 5:53

You are not using the classes from the rank titles in your CSS.


Special bg color for forum saffs Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Sweet4all Fri 8 Mar 2013 - 9:19

You have access to delete your extra post do it your self
avatar
Sweet4all
Forumember

Male Posts : 34
Reputation : 1
Language : English Urdu
Location : Pakistan

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by SLGray Fri 8 Mar 2013 - 9:37

MAX-S wrote:
SLGray wrote:You are not using the classes from the rank titles in your CSS.
please clear it. I need to add classes from rank tittle in ccs? How to add classes in css? Please tell me details about it. And please remove my last post bellow. This is Internet problem made 2 post.

MAX-S wrote:
SLGray wrote:You are not using the classes from the rank titles in your CSS.
Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!
Since this is your fourth reminder, you have received a serious warning.
The class is in the code in the rank titles: class=
Example: I use the class blackgpost in my administrator rank, so I would use this in my CSS:
Code:
backgpost {
    background-color:  #FFFFFF;
}
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by SLGray Fri 8 Mar 2013 - 10:32

The code will work differently on each of the different forum versions.


Special bg color for forum saffs Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by SLGray Fri 8 Mar 2013 - 11:02

Are you trying to get it like the support forum (phpBB 3)? On the support forum, it is not color, but an image.


Special bg color for forum saffs Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by SLGray Fri 8 Mar 2013 - 11:25

Your forum is phpBB 2?


Special bg color for forum saffs Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Special bg color for forum saffs

Post by Base Fri 8 Mar 2013 - 14:29

Member banned; topic garbaged.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

Back to top


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