Posts by Felipe Campos • 111 points
3 posts
-
6
votes2
answers306
viewsA: How does Facebook write color on the browser console?
You can do it like this: console.log('%c Espere!', 'color: red; font-size: 20px;'); It is in the second parameter that you put the styles you want.
-
0
votes1
answer76
viewsA: Mobile menu, change font color
Make sure you’re applying the color to the tag <a href... from the menu, this is where it should be applied. Provided that this element of id #advanced_menu_toggle is applied in a <ul>, it…
-
2
votes2
answers969
viewsA: Dropdown Menu Items do not change color
The tag <a> has a default style, and in Bootstrap for sure the color is applied directly to it. Then you should apply the color to the tag <a>, thus: .conteudo_drop a { color:#00008B; }…