Posts by Willian Sabião • 56 points
3 posts
-
3
votes1
answer1370
viewsA: How to change TAB color in bootstrap
In the code you sent you can use the following code: .nav>li>a { // para todos os links color: gray; } .nav-pills>li.active>a, .nav-pills>li.active>a:hover,…
-
0
votes2
answers260
viewsA: Call in API does not work
If you have access to wordpress, you can add functions.php within the theme used: (I used this function with the wp-Rest plugin as well) /** * Add REST API support to an already registered post…
-
1
votes2
answers2314
viewsA: Translation of static website content into 4 languages
You can do all translation via Gulp, it has interesting i18n modules https://www.npmjs.com/package/gulp-static-i18n You need a module in Gulp that reads your text or html elements with a data/class…