Posts by haykou • 3,602 points
126 posts
-
1
votes1
answer842
viewsQ: How to add a class to an HTML element with PHP?
I created a side menu using text widget in wordpress <ul style="list-style:none"> <li style="margin-bottom: -15px !important;"><a…
-
4
votes1
answer707
views -
-1
votes2
answers1405
viewsA: How to make an image divide the text from within a bounded width div?
My solution would be this for your problem, but you would have to give the spaces inside the html, so I don’t know if it would work in your case, this is like a "gambiarra" *{ box-sizing:border-box;…
-
7
votes2
answers9366
viewsA: How to split an image into multiple parts with link?
Use the tag map and area html, as in the example below Good summarizing you can create a Shape for the link and pass the coordinates, each number is a coordinate x,y. In case I drew a square passing…
-
3
votes1
answer1111
views -
18
votes2
answers4037
viewsA: Arrows using CSS only
Using CSS I would do so, styling the way you want. .seta { position: absolute; padding: 3rem; /* Arrow size */ box-shadow: 1px -1px 0 1px red inset; -webkit-box-shadow: 2px -2px red inset; border:…
-
0
votes1
answer192
viewsQ: Returning Image with Google Feed API
I am trying to return the image of an rss feed using the Google Feed API and Jquery function parseRSS(url, location, container) { $.ajax({ url: document.location.protocol +…
-
1
votes3
answers134
viewsA: Menu with the themes
There are several ways to do this, I would do so, <ul id="esquerda"> <li><a href="#">email</a></li> <li><a href="#">contactos</a></li>…
-
1
votes1
answer7838
viewsA: Rotate text via CSS
The Rotate property does not work in IE8 http://caniuse.com/#feat=transforms2d To work in IE8 have some schemes using filter, I think this topic solves your problem:…
-
1
votes2
answers119
viewsA: The same transition does not work on different elements
First replace with -Moz prefixes everything you want the effect for, then add a display:block in span, looks like this: .detailsHover span { font-size: 12px; top: 30%; position: relative;…
-
1
votes1
answer935
viewsQ: Join two Arraylist
I made a ArrayList (nomeTimes) which receives a number of team names as per the for down below: for(int i = 0; i<numeroTimes;i++){ String nomeTime=entrada.next(); nomeTimes.add(nomeTime); } My…
-
2
votes1
answer191
viewsQ: Passing data from one txt to another txt
I have a file .txt with three names separated by comma, in this case: test.txt João,Maria,José In my class I take the file and pass to a array, separating by comma: String nomeArquivo="teste.txt";…
-
1
votes3
answers118
viewsA: Media Querie is not compatible with Internet Explorer 2014
I tested Respond.js here and it worked, but you have to use the server to make it work, if you try directly in the browser will not work (at least with me). I used that goal <meta…
-
0
votes3
answers5268
viewsA: Events onmouseover and onmouseout slow to exchange images
Use img:Hover, set a background-image pro img, and then another background-image for img:Hover, I would at least do so. Help yourself, http://www.corelangs.com/css/box/hover.html…
-
5
votes1
answer961
viewsQ: Custom auto increment
I have to generate an auto increment of the type "000"+id, but I can not get to something concrete, my base is this below, I wanted only a light even of how to do, I do not need the answer itself.…
-
1
votes3
answers2063
viewsA: Problem with Div scrolling when running Zoom
If Zoom, is manual (Ctrl+scroll) and from what I understand you want to fit the footer exactly at the foot of the main div, just change the footer css margin-top: -38px; for margin-top: -36px;…
-
0
votes1
answer433
viewsQ: Width of a <td> is not of last size
Good afternoon, I’m having a question here in the form mounting using and varied. i have the following table: <table> <tr> <td>Nome:</td> <td>Senha:</td>…
-
0
votes1
answer1512
viewsA: How to make a div that expands and shows hidden content?
I don’t understand very well what you want, but if you want the information to appear when the mouseover is triggered you must put: **overflow:hidden;** .eventos-blocos{ width:250px; height:100px;…
-
1
votes1
answer577
viewsA: Keyboard navigation
You can use the same accesskey itself but need to show the user how to access it, either by audio or some caption explaining how to use in each browser/OS.…
-
2
votes2
answers1218
viewsA: Increase Size Field Balls for Password
Well, I was curious and the best I could find was this, @media screen and (-webkit-min-device-pixel-ratio:0){ /* START WEBKIT */ INPUT[type="password"]{ font-family:Verdana,sans-serif; height:30px;…
-
1
votes1
answer198
viewsQ: Show menu with ng-click + ng-class
I am trying to make a side menu that appears when the user clicks a button, using a class . is-Visible <button ng-click="visible=!visible;">Click me to open the menu!</button> <div…
-
1
votes2
answers3400
viewsA: custom filter with Angularjs
Well, I found a solution as I wanted, I just did not understand the part of regex.test but I think the solution can serve other people with doubt. var List = function($scope){ $scope.names=["Tax",…
-
0
votes2
answers3400
viewsQ: custom filter with Angularjs
Talk people, I have the following problem, I have a list of names: $scope.names=["Max", "Tom", "Ralf", "Jerry", "Snow", "Carl"]; I made a normal filter for input search <ul> <li…
-
0
votes1
answer252
viewsQ: ng-switch + Function
Good afternoon, I’m trying to use the ng-switch to display a value that depends on a condition that is in a function, but I can only pass fixed values to the field, the function with if does not…
-
2
votes2
answers2218
viewsQ: Adding values with Angularjs
I’m trying to do a simple college job but I’m caught on one thing, I have a list of objects with properties: $scope.items = [ {title: 'Chuveiro Elétrico', quantidade: 4, potencia: 3500}, {title:…
-
1
votes1
answer709
viewsQ: How to take data from two different txt, Java
Talk personal, I have a problem here, I have two . txt and I want to create a new txt joining some data of these two . txt, follows below how I get the data from . txt, can anyone give me a way to…