.navbar-left-forum li:nth-child(X) a:before {
font: normal normal normal 14px/1 FontAwesome;
content: \Y;
}
& nbsp ;
tasid said previously:
This seems better then the way I did it. Great tutorial. I used jquery for mine, but this is more effeciant.
Nosrac24? said previously:
Yes its works, It didn't work for me the first time but I figured it out :) here:
.navbar-left-forum li:nth-child(6) a:before {
font: normal normal normal 14px/1 FontAwesome;
content: \f234;
}
I got it to work but how do i edit the deisgn of the nav bar to look like the one in the picutre with the white line going along the top
[LSDRP] Kyle G. said previously:
Want forum button icons? Sorta like these?
Okay 2 questions;
1: How can I make it so theres spaces between the icon it self, and the button name, because myn at the moment looks a bit silly:I tried just adding a space after the simple it didn't work.
2: Is there anyway to make a custom van bar on this forums or is that un-able to do?
[LSDRP] Kyle G. said previously:
Want forum button icons? Sorta like these?
Okay 2 questions;
1: How can I make it so theres spaces between the icon it self, and the button name, because myn at the moment looks a bit silly:I tried just adding a space after the simple it didn't work.
2: Is there anyway to make a custom van bar on this forums or is that un-able to do?
.navbar-left-forum li:nth-child(1) a:before { /* 1 is the first child in the nav bar parent, can be changed to each subsequent child */
font: normal normal normal 14px/1 FontAwesome; /* sizing the icon */
content: "\f015 "; /* the unicode for the icon you want to use, in this case the house icon to denote homepage, and the non-breaking space character to add a space between the text and icon */
}
? A????? said previously:
? ConnorMeister said previously:[LSDRP] Kyle G. said previously:
Want forum button icons? Sorta like these?
Okay 2 questions;
1: How can I make it so theres spaces between the icon it self, and the button name, because myn at the moment looks a bit silly:I tried just adding a space after the simple it didn't work.
2: Is there anyway to make a custom van bar on this forums or is that un-able to do?
Just adding a space won't work in CSS and HTML since it reads a blank character (ie. a space) as whitespace. What you should do is add to denote a space (without the quotes).
Xeno, it does work. If people here, including myself, have gotten it to work using this method, then it DOES work. Here's the basic code:.navbar-left-forum li:nth-child(1) a:before { /* 1 is the first child in the nav bar parent, can be changed to each subsequent child */
font: normal normal normal 14px/1 FontAwesome; /* sizing the icon */
content: \f015 ; /* the unicode for the icon you want to use, in this case the house icon to denote homepage, and the non-breaking space character to add a space between the text and icon */
}
.navbar-left-forum li:nth-child(1) a:before {
font: normal normal normal 14px/1 FontAwesome;
content: " \f015& nbsp ;";
You currently don't have any notifications to read!