Posts by Gustavo Nunes • 170 points
3 posts
-
1
votes3
answers2076
viewsA: Wampserver 2.5 installation/run error
Try adding the Apache service: 324 [switchApache2.2.22] 325 Action: service; Service: wampapache; ServiceAction: stop; Flags: ignoreerrors waituntilterminated 326 Action: run; FileName:…
-
3
votes1
answer508
viewsA: Tilted carousel (diagonal) in jQuery and CSS
If you don’t need to natively support Internet Explorer 8, you can use the CSS Transform property: .carousel{ transform: rotate(-5deg) } http://jsfiddle.net/c7wkoyfc/…
-
10
votes1
answer1119
viewsA: How to style, with CSS, a SELECT that is inside PHP?
The fact that select is generated by PHP makes no difference as to the stylization of it. Remember, your PHP script is returning HTML, which is interpreted in the browser. Regarding stylisation,…