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

    make section hover when u go over

    Brenon Hatake
    Brenon Hatake
    Forumember


    Posts : 60
    Reputation : 1
    Language : english

    Solved make section hover when u go over

    Post by Brenon Hatake July 29th 2017, 7: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, 8:09 pm; edited 1 time in total
    Draxion
    Draxion
    Helper
    Helper


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

    Solved Re: make section hover when u go over

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

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


    Posts : 60
    Reputation : 1
    Language : english

    Solved Re: make section hover when u go over

    Post by Brenon Hatake July 29th 2017, 7: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

    Solved Re: make section hover when u go over

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

    BUMP
    avatar
    Guest
    Guest


    Solved Re: make section hover when u go over

    Post by Guest July 29th 2017, 11: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?
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19437
    Reputation : 2010
    Language : fluent in dork / mumbojumbo & English haha

    Solved Re: make section hover when u go over

    Post by Ape July 29th 2017, 1:26 pm




    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
    Brenon Hatake
    Brenon Hatake
    Forumember


    Posts : 60
    Reputation : 1
    Language : english

    Solved Re: make section hover when u go over

    Post by Brenon Hatake July 29th 2017, 6: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
    Draxion
    Draxion
    Helper
    Helper


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

    Solved Re: make section hover when u go over

    Post by Draxion July 29th 2017, 6: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.
    Brenon Hatake
    Brenon Hatake
    Forumember


    Posts : 60
    Reputation : 1
    Language : english

    Solved Re: make section hover when u go over

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

    thank you for clarifyng that is exactly what i want
    avatar
    Guest
    Guest


    Solved Re: make section hover when u go over

    Post by Guest July 29th 2017, 6: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.
    Draxion
    Draxion
    Helper
    Helper


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

    Solved Re: make section hover when u go over

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

    That's an example of what he wants for his forum, @Wolfuryo.
    Brenon Hatake
    Brenon Hatake
    Forumember


    Posts : 60
    Reputation : 1
    Language : english

    Solved Re: make section hover when u go over

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

    yeah that is what i want
    avatar
    Guest
    Guest


    Solved Re: make section hover when u go over

    Post by Guest July 29th 2017, 7: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", "")
    });
    });
    Brenon Hatake
    Brenon Hatake
    Forumember


    Posts : 60
    Reputation : 1
    Language : english

    Solved Re: make section hover when u go over

    Post by Brenon Hatake July 29th 2017, 7: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
    Draxion
    Draxion
    Helper
    Helper


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

    Solved Re: make section hover when u go over

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

    The code worked well for my forum after testing it.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51555
    Reputation : 3524
    Language : English
    Location : United States

    Solved Re: make section hover when u go over

    Post by SLGray July 29th 2017, 8: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.

      Current date/time is November 14th 2024, 9:27 pm