Posts by Jota • 49 points
10 posts
-
0
votes2
answers367
viewsA: Resize image with CSS
Try to apply: background: url(sua-imagem.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }…
-
0
votes1
answer17
viewsA: Sidebar is under the picture, how to take
Do you say the sticky menu that comes with scrolling the page? If it is, add the following CSS class: header .polar-sticky-menu.sticky { position: absolute; !important}…
-
0
votes2
answers62
viewsA: Wordpress plugin to restrict access to files only after registration
Try this one Copysafe PDF Protection
-
0
votes2
answers104
viewsA: How to hide empty query post?
Use the following condition so that the class only appears if there is content: if ( $query->have_posts() ) : ?>
-
0
votes2
answers75
viewsA: I cannot use Pseudo-classes in css
I have not tested the code, but there is a semicolon (;) missing on line 7. Try this and it will probably work.
-
0
votes1
answer52
viewsA: Flip over elements Collapse
You can use Jquery’s Toogle method to toggle between class and pseudo-class based on the click event. Jquery $('.rotacao').on('click', function(){ // exercido o evento de clique sobre a classe…
-
1
votes2
answers697
viewsA: Fixed div passing behind the others
You can use z-index to set the order of the elements. In this case, you want to overwrite all elements with your div, use the following: #suadiv{ z-index: 99; /* 99 para que não tenha duvidas sobre…
-
0
votes1
answer42
viewsA: Error when migrating Wordpress site
CORS uses HTTP headers to ensure access to servers other than the source of the domain. For example when you use CSS CDN files. In your case access is being blocked. To solve this in a simple way,…
-
0
votes1
answer58
viewsA: How to delete strange character appearing in page header
I think the previous answers solve the problem, but in the latter case you can solve using CSS: .wrapper { margin: -25px; }
-
0
votes1
answer61
views