Posts by Patrick Oliveira • 73 points
9 posts
-
0
votes4
answers7832
viewsA: Redirect problem in Wordpress
In case someone has done all the settings and still not solved, in my case I identified that the server was returning error 404 for the index file, so I entered the FTP and checked that the…
-
0
votes1
answer188
viewsA: Div being superimposed by another
Basically, I made a mistake from the start, I had hard work to do manually what CSS3 does automatically! I recommend this article: http://desenvolvimentoparaweb.com/css/flexbox/ The use of Flexbox…
-
0
votes1
answer188
viewsQ: Div being superimposed by another
I am adjusting the mobile version of a page, using the bootstrap I defined my Divs with the classes col-Md-4 (desktop version) col-Xs-6 (mobile version). In the desktop version is working normal…
-
0
votes2
answers2173
viewsA: How to make a Bootstrap Collapse button disable the other
You can use jQuery for this: $('#id-botao').click(function(){ $('#div-esconder').collapse('hide'); }); I’ve already used this code in a project, it’s supposed to work...…
-
1
votes1
answer222
viewsA: Hide Carrousel images when opening on mobile and show others - Bootstrap 4
Use media queries, try this way: #carouselInicio { @media screen and (max-width: 720px) { display: none; } } #img-mobile { display: none; @media screen and (max-width: 720px) { display: block; } }…
-
0
votes3
answers118
viewsA: Logic for using foreign key - a user’s notes
You must have a table for User and one for Note, this note must have a foreign key (User Id). Thus, a user will have many notes and a note only a user, when he wants to know about a certain note…
-
0
votes1
answer492
viewsA: Change content according to select option
First try to assign an id to each option, so it is easier to access them by javascript. Then assign Ids to the content as well (for example H1 id="meuh1") and leave this content hidden, then try…
-
0
votes1
answer135
viewsQ: Push a Collapse button through the menu
On the page I’m developing, the contents are all hidden by the "Collapse" bootstrap class. As it is a Single Page, I would like my menu to go up to its respctive Section and then show the content…
-
3
votes4
answers18367
viewsQ: Applying opacity in a Background
I’m trying to apply opacity to my background image. I’ve tried using rgba, and the pseudo-class after. Is there any other way to apply this filter only to the image without affecting the content?…