Posts by Rblima • 129 points
9 posts
-
2
votes2
answers1661
viewsA: Alignment of Bootstrap grid
I tested it on my machine and it worked now, maybe it is the spacing between the tags, try to disable the browser cache too, if you have in Chrome in the Network tab enables the option Disable…
-
5
votes2
answers14542
viewsA: How to ignore Folders/Directories in GIT? Ex: . Metadata , . recommenders
gitignore serves exactly that, create it at the root of your project with the name .gitignore and inside it insert the code. # lembre de colocar o nome da pasta sem o ponto na frente # Para ignorar…
-
0
votes1
answer144
viewsA: How to show buttons for each menu option?
if you just want a formatting for your buttons you can insert a class class="btn-opcao-1" and add a CSS to it, so each button will be different from the other. If you don’t have as much knowledge of…
-
2
votes2
answers1177
viewsA: Code to Leverage Browser Cache Leaves the Site Offline
I use this code on some websites and it works, test your project, change only the timeframe of each item that may be different for you ! #Força a utilizar Cache-Control e Expires header <IfModule…
-
1
votes1
answer278
viewsA: Make content appear according to button clicked in the side menu
Hello friend as your question we achieved this effect using Ajax, see the code working below, hugs. $(document).ready(function() { loadDataOnReady(); loadDataOnClick(); changeSteps(); nextStep();…
-
-1
votes4
answers1464
viewsA: Bootstrap how to print table background colors?
if you want to add in the line of code you must do: <table class="table"> <tr> <td style="background-color: red;">Link</td> </tr> </table> If you want the…
bootstrap-3answered Rblima 129 -
0
votes1
answer764
viewsA: Boostrap menu with two lines
Hello friend see code below is basically what you need, hugs. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport"…
bootstrap-3answered Rblima 129 -
0
votes2
answers538
viewsA: Image does not change size - flexbox
I don’t understand if you want this behavior only on the responsive screen, but if it is just add this code inside the MEDIA SCREEN that will work, just adjust the height you want, hugs. .titulo {…
-
-1
votes1
answer40
views