code problem, forum title 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.
4 posters

    code problem, forum title

    Mineko
    Mineko
    Forumember


    Female Posts : 57
    Reputation : 1
    Language : Hungarian
    Location : Hungary

    Solved code problem, forum title

    Post by Mineko March 24th 2021, 11:16 pm

    Hello Very Happy
    So, sorry, I didn't think I had any questions today, but I'm doing the design, so ... ^^ "
    So, there would be something wrong with the code below. It’s theoretically correct, but at the same time it refuses to move the text sideways or change color when I hover the mouse over it.
    What went wrong there?

    Code:
    /* TITRE FORUM */
    .tleFRM a {
    padding-left:50px; letter-spacing:3px; font-family: Unkempt;
    color: #E3C2D6 !important; /* MODIFIABLE    */
    transition:all 0.35s linear; -webkit-transition:all 0.35s linear;
    }
     a:hover {
    color:#639EFF; /* MODIFIABLE */
    }

    I don't know if you need this part, but I copied it to see if it did. ^^

    Code:
    /* BLOC TITRE FORUM */
    .tleFRM {
      width:780px; /*height: 40px;*/
    margin:10px auto 10px; padding:5px;
    text-align: left; font-size:22px; text-transform:;
    background: ;/*#000058; /* #2C031C; */ /* MODIFIABLE */
     
      box-shadow: inset #639EFF 0 0 10px;
     
    }


    Link: https://blackmoonfrpg.hungarianforum.com
    Version: phpBB2 (I think ^^" )
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51498
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: code problem, forum title

    Post by SLGray March 25th 2021, 12:17 am

    When you say forum title, do you mean the forums under categories or the title of the whole forum?



    code problem, forum title Slgray10

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


    Female Posts : 57
    Reputation : 1
    Language : Hungarian
    Location : Hungary

    Solved Re: code problem, forum title

    Post by Mineko March 25th 2021, 12:29 am

    Um ... I don't speak English, I use a google translator. So ... I have the title of the forum, eg: 'Vérhegy', 'Folyóköz'
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51498
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: code problem, forum title

    Post by SLGray March 25th 2021, 3:46 am

    code problem, forum title Text10



    code problem, forum title Slgray10

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


    Male Posts : 19324
    Reputation : 2005
    Language : fluent in dork / mumbojumbo & English haha

    Solved Re: code problem, forum title

    Post by Ape March 25th 2021, 5:07 am

    looks to be working my end.
    code problem, forum title Ezgif_56
    Try and Clear your browser cookies and cache it maybe a browser problem.
    Tested on Firefox, Edge, Chrome, all working on them.



    code problem, forum title Left1212code problem, forum title Center11code problem, forum title Right112
    code problem, forum title Ape_b110
    code problem, forum title Ape1010
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15311
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Solved Re: code problem, forum title

    Post by skouliki March 25th 2021, 10:42 am

    hello

    you have set the code to be working on the red arrow titles
    the green arrow titles have no code

    code problem, forum title Scre2407

    Mineko
    Mineko
    Forumember


    Female Posts : 57
    Reputation : 1
    Language : Hungarian
    Location : Hungary

    Solved Re: code problem, forum title

    Post by Mineko March 25th 2021, 4:00 pm

    Then I really messed it up. And ... Theoretically, it belongs ... Because the red arrow doesn't match the letter type. So now that way again I don't know what's going on ...
    Copy the whole code that belongs to that part? Maybe it would be easier then. I honestly don't know. ^^ "
    The trouble is, I didn't touch it so much, so I can only ask you and here. So I'm sorry to ask for stupidity. ><
    Um ... the green arrow is the forum title for me. ^^"
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15311
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Solved Re: code problem, forum title

    Post by skouliki March 25th 2021, 6:57 pm

    we have
    -category titles
    -forum titles
    -subforum titles
    -thread titles

    first of all, to your codes above, these lines are giving the same result

    transition:all 0.35s linear;
    -webkit-transition:all 0.35s linear;

    no need to have them both

    so i think the code is wrong so lets try something ok

    delete this code
    Code:

    /* TITRE FORUM */
    .tleFRM a {
    padding-left:50px; letter-spacing:3px; font-family: Unkempt;
    color: #E3C2D6 !important; /* MODIFIABLE    */
    transition:all 0.35s linear; -webkit-transition:all 0.35s linear;
    }
     a:hover {
    color:#639EFF; /* MODIFIABLE */
    }

    replace with this

    Code:

    /* TITRE FORUM */
    div.tleFRM a {
    padding-left:50px;
    letter-spacing:3px;
    font-family: Unkempt;
    color: #E3C2D6 !important; /* MODIFIABLE    */
    transition:all 0.35s linear;
    }
     a:hover {
    color:#639EFF; /* MODIFIABLE */
    }

    and check if your category title Enciklopédia have the text effect you want

    you have a code or a javascript that has changed all forum elements to new FRM elements right ?





    Mineko
    Mineko
    Forumember


    Female Posts : 57
    Reputation : 1
    Language : Hungarian
    Location : Hungary

    Solved Re: code problem, forum title

    Post by Mineko March 26th 2021, 12:40 am

    I pasted it, but unfortunately it doesn't work. The Lastet topic (Friss nyomok) section has javascript. Maybe that's the problem? ><
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51498
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: code problem, forum title

    Post by SLGray March 26th 2021, 1:24 am

    Add !important to each line of your CSS codes.



    code problem, forum title Slgray10

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

    Mineko likes this post

    Mineko
    Mineko
    Forumember


    Female Posts : 57
    Reputation : 1
    Language : Hungarian
    Location : Hungary

    Solved Re: code problem, forum title

    Post by Mineko March 26th 2021, 2:16 am

    Thanks-thanks-thanks!! I love you
    Thank you very much! I love you
    It works. code problem, forum title 1f600 And I really love it! code problem, forum title 1f60d code problem, forum title 1f60d code problem, forum title 1f60d

    Solved I love you I love you I love you
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19324
    Reputation : 2005
    Language : fluent in dork / mumbojumbo & English haha

    Solved Re: code problem, forum title

    Post by Ape March 26th 2021, 3:59 am

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



    code problem, forum title Left1212code problem, forum title Center11code problem, forum title Right112
    code problem, forum title Ape_b110
    code problem, forum title Ape1010
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15311
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Solved Re: code problem, forum title

    Post by skouliki March 26th 2021, 11:20 am

    @Mineko

    i inspect the code and i saw that you added the !important wrongly, you must add it at the end of each line, not at the begging

    so here is the right code

    Code:

     
    /* TITRE FORUM */
    div.tleFRM a {
    padding-left:50px !important;
    letter-spacing:3px !important;
    font-family: Unkempt !important;
    color: #E3C2D6 !important;
    transition:all 0.35s linear !important;
    }
     a:hover {
    color:#639EFF !important;
    }

    if you still need help pm me to reopen this thread

    TonnyKamper likes this post