Questions tagged as 'css'

1
answer

Creating tabs without rectangles

I need a little help. I have these tabs that are working, but visually I do not like the rectangles where I click and want to change. Original: link I want to remove the tabs: Andputsomethinglikethis: I've tried several ways but I...
asked by 15.04.2015 / 11:45
1
answer

min-height, does not work on mobile what do I do? [closed]

I'm developing a desktop and mobile site, but when I'm on the mobile, I have to decrease the height of the slider on the right mobile, however when I put min-height: 250px! important, it will not, even me trying for all the forms I can not solve...
asked by 12.01.2015 / 19:28
1
answer

Transition with anchors in single page applications [duplicate]

How can I implement a smooth scroll transition effect through anchors using Jquery? The template below shows an example of a scroll transition I'm looking for.    link I would like to understand the effect, and for this reason I'm...
asked by 24.11.2014 / 17:52
1
answer

Insert into table and then click using Jquery [duplicate]

I'm dynamically inserting into my table, so far so good. The problem is how much I try to click on one of the lines and I have no answer, I believe that I am not inserting in the DOM, someone could help me. INSERTING: $('#tabelaChat').app...
asked by 12.11.2014 / 17:20
2
answers

How to hide empty query post?

I created a Query post for a certain category <div class="querypost-home" id="conteudo-home4"> <?php $args = array( 'category_name'=>'oportunidades', 'numberposts'=>1, 'offset'=>3 ); $my_posts = get_posts($args); if( $my_p...
asked by 05.11.2014 / 22:40
1
answer

Make else in jquery to control scrolltop

I have a% div of%, that when it hits 31px it stays with .menuFixo , otherwise, top: 0 , did with Jquery, but did not work. > $(window).scroll(function () { if ($(window).scrollTop() > 31) { $(".menuFixo").css("top",...
asked by 19.01.2015 / 17:09
1
answer

Making width: responsive webkit-min-content

I have a simple HTML snippet: <div> <img src="http://www.placehold.it/200x200"><p>LoremipsumdadeedaherpdederpIlikecoffeecoffeecoffee</p></div>MyCSS:div{max-width:webkit-min-content;max-width:-moz-min-content;}...
asked by 08.10.2014 / 16:32
3
answers

How to leave a 'fixed' div bounded by a main div?

I'm trying to do something like this: link where the div containing the values of the purchase is fixed only while the customization options are visible, but I believe that it is not possible to do this with 'fixed', the only thing I have mana...
asked by 08.10.2014 / 15:19
1
answer

How to automatically select menu item?

I have the following code: link HTML: <!DOCTYPE html> <head> <title> Teste </title> </head> <body> <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="navba...
asked by 29.09.2014 / 15:18
1
answer

Tab system does not work on mobile

I am creating a mobile site and in a certain part there is a system of tabs. The system is pure css that I found on the internet ... The problem is that when the site is viewed by the cell phone, the tabs do not work right. In iOS for exa...
asked by 03.10.2014 / 20:00