Edit Profile bar changes Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

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.
2 posters

    Edit Profile bar changes

    Panicmakerz
    Panicmakerz
    Forumember


    Posts : 55
    Reputation : 1
    Language : greek

    Solved Edit Profile bar changes

    Post by Panicmakerz Thu 1 Feb 2018 - 14:41

    Technical Details


    Forum version : #phpBB3
    Position : Founder
    Concerned browser(s) : Google Chrome
    Who the problem concerns : All members
    Forum link : http://testacademy.forumgreek.com/profile?mode=editprofile&page_profil=informations

    Description of problem

    Hello,
    I would like to know how to:

    1) Remove this sections from Edit Profile
    Edit Profile bar changes Oio10

    2) Remove this black hover color when you are in an edit profile section
    (For example, here I am in the information section and when my mouse is on "Information" it changes to black. I don't want that.)
    Edit Profile bar changes 210

    3) Change that grey color when you are in a section
    Edit Profile bar changes Oio310
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Edit Profile bar changes

    Post by TheCrow Thu 1 Feb 2018 - 14:59

    Hello @Panicmakerz,

    Please try the below possible solutions:
    1) The below code will "hide" the tabs and not remove the sections entirely. To remove them entirely you'll have to change the template (I think) Razz But here's how to hide the tabs. Add this in your CSS:
    Code:
    div#tabs li { display: none; } /* Hide the tabs from Edit Profile */
    div#tabs li.activetab { dipsplay: inline; } /* Keep the Information Tab visilbe */

    2) For the hovering, you have to add this part of code in your CSS:
    Code:
    fieldset dl:hover dt label { color: inherit; } /* Removes the black from hover */

    3) For the grey on the tab, you can edit the
    Code:
    div#tabs li.activetab
    you added from 1) and add to it
    Code:
    color: #XXXXXX;
    where #XXXXXX is your hex color preference. That means that in your CSS you should have:

    Code:
    div#tabs li { display: none; } /* Hide the tabs from Edit Profile */
    div#tabs li.activetab { dipsplay: inline; color: #FFFFFF; } /* Keep the Information Tab visible and change the color */
    fieldset dl:hover dt label { color: inherit; } /* Removes the black from hover*/

    I hope these work for your and solve your problem! Wink
    Regards.



    Edit Profile bar changes Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Panicmakerz
    Panicmakerz
    Forumember


    Posts : 55
    Reputation : 1
    Language : greek

    Solved Re: Edit Profile bar changes

    Post by Panicmakerz Thu 1 Feb 2018 - 15:18

    Thank you for your response

    I want the avatar tab too , so I want my menu to be {Informations, Avatar}. Your code removed everything from the menu.
    Also the code for hovering works but not on the tab
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Edit Profile bar changes

    Post by TheCrow Thu 1 Feb 2018 - 15:42

    Okay, then replace the above code with this one:
    Code:
    #tabs a { display: none; } /* Hide the tabs from Edit Profile */
    #tabs .activetab a, #tabs a[href*="avatars"], #tabs a[href*="informations"] { dipsplay: inline; color: #FFFFFF; } /* Keeps Information and Avatar tabs visilbe */
    fieldset dl:hover dt label, #tabs .activetab a:hover span, #tabs .activetab a span  { color: inherit; } /* Removes the black from hover*/



    Edit Profile bar changes Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Panicmakerz
    Panicmakerz
    Forumember


    Posts : 55
    Reputation : 1
    Language : greek

    Solved Re: Edit Profile bar changes

    Post by Panicmakerz Thu 1 Feb 2018 - 15:52

    okay the code for the hovering worked.

    But i still have no menu bar:
    Edit Profile bar changes Oio10
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Edit Profile bar changes

    Post by TheCrow Thu 1 Feb 2018 - 15:56

    Oops.. Embarassed
    I've misspelled the word display for the 2nd line of the code. If you see at the end of the 2nd line the word display is spelled wrong. If you want, by fixing this it should fix your problem as well! Wink



    Edit Profile bar changes Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Panicmakerz
    Panicmakerz
    Forumember


    Posts : 55
    Reputation : 1
    Language : greek

    Solved Re: Edit Profile bar changes

    Post by Panicmakerz Thu 1 Feb 2018 - 16:02

    oh didnt see that! Thank you very much for your help appreciate it, my problem is SOLVED!
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Edit Profile bar changes

    Post by TheCrow Thu 1 Feb 2018 - 16:04

    Sure thing. Glad i helped! Very Happy :rose:

    Problem solved & topic archived.
    Please read our forum rules: ESF General Rules



    Edit Profile bar changes Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!