Posts by Marco Antonio • 31 points
3 posts
-
1
votes2
answers275
viewsA: How to select a particular post in Wordpress?
The best way to do this, in my opinion, is by using CSS3 selectors for example: p:nth-child(n+3) { color:#f00; } So you always select the third p of a given element.…
-
0
votes2
answers149
viewsA: Function jQuery to hide elements
I believe you must have some sort of mask behind that content of yours, correct? Do something like that: $("#mascara").click( function(e){ e.preventDefault(); $(".sua-tela").fadeOut(function(){…
jqueryanswered Marco Antonio 31 -
2
votes1
answer158
viewsQ: Checkbox that pulls content from a custom post type
I have a custom post type knits (here will be registered all knitwear products) and have another custom post type products (where will be listed all products). What I would like to do: in this…