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.

make section hover when u go over

4 posters

Go down

Solved make section hover when u go over

Post by Brenon Hatake July 29th 2017, 5:31 am

http://pb2genocide.forumotion.com/g4-prestige-members how do i make it like this when u go in the members section ina group it hovers http://pb2impact.forumotion.com/ this is my forums


Last edited by Brenon Hatake on July 29th 2017, 6:09 pm; edited 1 time in total
Brenon Hatake
Brenon Hatake
Forumember

Posts : 60
Reputation : 1
Language : english

Back to top Go down

Solved Re: make section hover when u go over

Post by Draxion July 29th 2017, 5:36 am

Hi there,
Add this to your CSS and style it however you like.
Code:
li.row:hover {
  background-color: YOUR COLOR;
}
Draxion
Draxion
Helper
Helper

Male Posts : 2518
Reputation : 321
Language : English
Location : USA

https://www.talesoftellene.com/

Back to top Go down

Solved Re: make section hover when u go over

Post by Brenon Hatake July 29th 2017, 5:48 am

The background changes color according to the title color; that's not CSS, that's a mix of JavaScript and CSS. That's more complex stuff. these r the words @daxion stated because i would like to change it like this http://pb2genocide.forumotion.com/f3-applications so its a color u wwant based on topic color if anyone could help that will be great
Brenon Hatake
Brenon Hatake
Forumember

Posts : 60
Reputation : 1
Language : english

Back to top Go down

Solved Re: make section hover when u go over

Post by Brenon Hatake July 29th 2017, 8:52 am

BUMP
Brenon Hatake
Brenon Hatake
Forumember

Posts : 60
Reputation : 1
Language : english

Back to top Go down

Solved Re: make section hover when u go over

Post by Guest July 29th 2017, 9:27 am

Hi,

I don't exactly understand what you want. You have a part of the page that you want to have a color when you hover the mouse over it? If so, please make a screenshot where that part is circled or something so that I can see what you want. Also, what color should it be?
avatar
Guest
Guest


Back to top Go down

Solved Re: make section hover when u go over

Post by Ape July 29th 2017, 11:26 am



make section hover  when u go over Left1212make section hover  when u go over Center11make section hover  when u go over Right112
make section hover  when u go over Ape_b110
make section hover  when u go over Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19075
Reputation : 1988
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: make section hover when u go over

Post by Brenon Hatake July 29th 2017, 4:04 pm

the colors i want r  #00f6ff   #00c109     #fff200  #000000  #c60000 i want it like this http://pb2genocide.forumotion.com/f3-applications when u go over the topic its the color they pic
Brenon Hatake
Brenon Hatake
Forumember

Posts : 60
Reputation : 1
Language : english

Back to top Go down

Solved Re: make section hover when u go over

Post by Draxion July 29th 2017, 4:08 pm

Wolfuryo wrote:Hi,

I don't exactly understand what you want. You have a part of the page that you want to have a color when you hover the mouse over it? If so, please make a screenshot where that part is circled or something so that I can see what you want. Also, what color should it be?

I think I can clarify what he wants. Inside the forums, he wants the rows to have different background colors according to the color of the topic titles.
Draxion
Draxion
Helper
Helper

Male Posts : 2518
Reputation : 321
Language : English
Location : USA

https://www.talesoftellene.com/

Back to top Go down

Solved Re: make section hover when u go over

Post by Brenon Hatake July 29th 2017, 4:14 pm

thank you for clarifyng that is exactly what i want
Brenon Hatake
Brenon Hatake
Forumember

Posts : 60
Reputation : 1
Language : english

Back to top Go down

Solved Re: make section hover when u go over

Post by Guest July 29th 2017, 4:24 pm

Draxion wrote:
Wolfuryo wrote:Hi,

I don't exactly understand what you want. You have a part of the page that you want to have a color when you hover the mouse over it? If so, please make a screenshot where that part is circled or something so that I can see what you want. Also, what color should it be?

I think I can clarify what he wants. Inside the forums, he wants the rows to have different background colors according to the color of the topic titles.

They already have different colours based on what you said:
make section hover  when u go over Screen15
I think I'm missing something.
avatar
Guest
Guest


Back to top Go down

Solved Re: make section hover when u go over

Post by Draxion July 29th 2017, 4:42 pm

That's an example of what he wants for his forum, @Wolfuryo.
Draxion
Draxion
Helper
Helper

Male Posts : 2518
Reputation : 321
Language : English
Location : USA

https://www.talesoftellene.com/

Back to top Go down

Solved Re: make section hover when u go over

Post by Brenon Hatake July 29th 2017, 4:54 pm

yeah that is what i want
Brenon Hatake
Brenon Hatake
Forumember

Posts : 60
Reputation : 1
Language : english

Back to top Go down

Solved Re: make section hover when u go over

Post by Guest July 29th 2017, 5:35 pm

I thought http://pb2genocide.forumotion.com/g4-prestige-members was his forum lol.

Add this script with placement on subforums:
Code:
$(function(){
if(!/f\d+/.test(location.pathname)) return;
$("a.topictitle>span").parent().parent().parent().parent().parent().parent().mouseover(function(){
var col=$("a.topictitle>span", $(this).html()).css("color");
$(this).css("background", col)
});
$("a.topictitle>span").parent().parent().parent().parent().parent().parent().mouseout(function(){
$(this).css("background", "")
});
});
avatar
Guest
Guest


Back to top Go down

Solved Re: make section hover when u go over

Post by Brenon Hatake July 29th 2017, 5:49 pm

excuse me i want the hover to be on it http://pb2imp.forumotion.com/f2-applications my forums it hovers on top how to hove ron it
Brenon Hatake
Brenon Hatake
Forumember

Posts : 60
Reputation : 1
Language : english

Back to top Go down

Solved Re: make section hover when u go over

Post by Draxion July 29th 2017, 5:53 pm

The code worked well for my forum after testing it.
Draxion
Draxion
Helper
Helper

Male Posts : 2518
Reputation : 321
Language : English
Location : USA

https://www.talesoftellene.com/

Back to top Go down

Solved Re: make section hover when u go over

Post by SLGray July 29th 2017, 6:14 pm

Brenon Hatake wrote:The background changes color according to the title color; that's not CSS, that's a mix of JavaScript and CSS. That's more complex stuff. these r the words @daxion stated because i would like to change it like this http://pb2genocide.forumotion.com/f3-applications so its a color u wwant based on topic color if anyone could help that will be great

Brenon Hatake wrote:BUMP
Please don't double post. Your posts need to be separated by 24 hours before bumping. Please use the edit button, instead!

Since this is your fourth warning, you have receive another warning.

Please read our forum rules:  ESF General Rules


make section hover  when u go over 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 : 51453
Reputation : 3519
Language : English
Location : United States

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

Back to top Go down

Back to top

- Similar topics

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