What's new
  • The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Help page.
    Found a dead link? Use the report button!

QUESTION I need help with my uniform style Xenforo

adedekevictor

New member
Member
Messages
13
Reactions
1
I current use the uniform style from on here
Same as nullcave but my search icon and few other icon from the header nav isn’t showing.
IMG_8312.jpeg

@raz0r is there a way you solved this?
Post automatically merged:

I think the icon is just transparent cos I can click on the invisible iconIMG_8313.jpeg
 
Reacted by:
Avesome icon contains invalid code or the codes are premium, try choosing another icon
 
Reacted by:
css.php wait:13
Change: width blok
.p-navgroup-link.p-navgroup-link--iconic i::after {
min-width: 0px;
/* width: auto; */
}
 
Reacted by:
Add this code to extra.less

Code:
.p-navEl-link{
    &:before{
        font-size: 15px;
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-right: 5px;
        .m-faBase();
        font-weight: 999;
    }
    &[data-nav-id="searchForums"]:before{content: '\f689';}
}

use inspect elements to view the data-nav-id
you problem was solve if you understand!
 
Reacted by:
  • Like
Reactions: dodong662
Getting the data nav id is what i don’t understand
I have added code to extra.less
Add this code to extra.less

Code:
.p-navEl-link{
    &:before{
        font-size: 15px;
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-right: 5px;
        .m-faBase();
        font-weight: 999;
    }
    &[data-nav-id="searchForums"]:before{content: '\f689';}
}

use inspect elements to view the data-nav-id
you problem was solve if you understand!
D
 
Reacted by:
mobile version screen problems
extra.less
.p-navgroup-link.p-navgroup-link--iconic i::after {
width: -65px;
min-width: 0px;
}
icon width problems
 
Reacted by:
Top