Questions tagged as 'css'

1
answer

How to give hover opacity effect in img's?

I would like to know how to put a hover effect on the img's site link .     
asked by 09.12.2015 / 23:18
2
answers

How to do Menu Dropdown with popping effect

$(function () { $(".menu2").hide(); $(".open").stop(true, true).mouseover(function() { $(".menu2").fadeIn(100).animate({ top: '-50' }, 400); }); $(".open").mouseleave(function() { $(".menu2").stop(true...
asked by 17.02.2016 / 01:48
1
answer

How to calculate percentage in top property in css? [closed]

I wanted to know how to calculate percentage in the top property. I searched google, but I did not find my doubts.     
asked by 06.12.2015 / 22:18
1
answer

Problems setting up Table with CSS

I'm creating a commercial project in JSF, and to start the project I started to create the layout of the pages, to create the project, I'm doing it in pieces, and in each piece of the project I'm creating small projects that will be part of a si...
asked by 08.12.2015 / 14:59
1
answer

Css Responsive does not work correctly

I'm having a problem where I'm doing a responsive display where the desktop is getting over @MEDIA SCREEN and the cell phone is not catching the responsive. .portfolio-modal .close-modal { position: absolute; right: 25px; width: 180px; top: 5p...
asked by 19.11.2015 / 16:46
2
answers

Validate input to receive value with separator per point with jquery?

I need you to only receive values with this formatting (20.00) Resolved <!-- apenas números--> <script> function somenteNumeros(num) { var er = /[^0-9.]/; er.lastIndex = 0; var campo = num;...
asked by 30.12.2015 / 14:29
1
answer

Problem in developing the comments.php form of Wordpress

Hello! I'm developing a theme and my form in comments.php is giving error. The rest of the comments file is working right. I am following the book "How To Be a Rockstar Wordpress Designer" as a reference and have copied the code in full. Here...
asked by 03.11.2015 / 13:57
1
answer

generic styleClass in table

I'm putting together a table and I wanted to know the following: I want to put a css style in the column headers, do I need to use a styleClass in each header or can I declare a generic for all headers? <p:dataTable styleClass="tabela">...
asked by 23.10.2015 / 15:13
2
answers

Page with different layout

I'm starting to develop themes for WordPress and until then I got some content and tutorials on how to do such thing, however the information I have is that: page.php page is responsible for displaying site pages such as contato...
asked by 09.10.2015 / 14:26
1
answer

Layout of many columns with datatable

I have a problem with datatable layout. I ended up creating a very long component (if I'm not mistaken, about 25 columns). I need to move one of these columns (year) according to the scroll bar. Move with the bar I already managed, using p...
asked by 04.10.2015 / 13:40