-
Replied To a Post in Unexplained, explained padding
In this case just float them, because you set fixed dimensions of 80px on them anyways so there's no need for using inline-block. -
Began Watching Unexplained, explained padding
https://jsfiddle.net/rw2894fe/2/ I don't need to explain the issue, it's visible the second you look at it. Red anchors seem to have "unexplained" padding on bottom and right side. Removing it … -
Replied To a Post in Good alternative item, to serve properly as trigger to CSS execution
You can't have anchor tags within an anchor tag and think about it for a second... does it make sense? In order to show/hide the div while hovering the anchor, … -
Began Watching Good alternative item, to serve properly as trigger to CSS execution
https://jsfiddle.net/c9jmjcy0/3/ The reason that it doesn't work is because for some reason `<a>` denies wrapping `<div>`. Probably specification. The only solution is to wrap it around other item. Do we … -
Replied To a Post in How to write cleaner CSS?
You're getting way too specific with long selector chains like that which makes it imo harder to read and it will give you in the end specificity issues - https://css-tricks.com/specifics-on-css-specificity/ … -
Began Watching How to write cleaner CSS?
At the end of the day, I end up in: `menu div#memberArea div#dropdown-trigger div#dropdown-content div#form div#authSubmitButtons input#authRegisterButton`. And now many people recommend shortening it down, sure! But as soon as … -
Replied To a Post in Adding shapes to an image
I'd recommend to set the fridge image as a background-image to an HTML element such as a div that will have the same dimensions as the image. Then you can … -
Began Watching Adding shapes to an image
My goal is to make manipulations to an image by adding shapes on top of the image using JavaScript. For example, adding rectangular shapes to an image of a refregirator, … -
Replied To a Post in What's wrong with this line HTML?
For starter I'd recommend to take out the onclick attribute from the HTML. Keep structure and behavior seperate. <input id="aaa" formaction="register.php" type="submit" value="Register" /> And then within `<script>` tags document.getElementById('aaa').addEventListener('click', … -
Began Watching What's wrong with this line HTML?
`<input id="aaa" onclick="scrollTo('registerBox'); return false;" formaction="register.php" type="submit" value="Register" />` If JavaScript is enabled (which it is, and it's working on other functions and triggers). Shouldn't it execute `scrollTo("registerBox");` and don't … -
Replied To a Post in creating dynamic li
And on a side note and off topic. The `datetime` attribute is specifically for the `time` element. <time class="metro_tmtime" datetime="2013-04-10 18:30"> <span class="date">1/4/13</span> <span class="time">17:20</span> </time> https://schema.org/docs/gs.html#advanced_dates -
Began Watching creating dynamic li
hello all, i want to create dynamacially this thing and want to populate data alternatively on green,red,gray li and so on but i can't able to do it plz help … -
Replied To a Post in Unslider jquery plugin arrow doesn't display
> why does the click function on the arrow doesn't work on mine? Which arrow? Where's yours? Sorry, but my christal ball is at the dry cleaner. -
Replied To a Post in Unslider jquery plugin arrow doesn't display
Obviously I was not clear enough, but let me try again :) Unslider has by default no left and right arrows, but 'next and 'prev' text links. Just like you … -
Replied To a Post in How to Combining Roll Over Image with radio Button
Wow... that is some ancient Dreamweaver way to mark-up a page. Not sure what you're after either, but if you want to override the default look of radio buttons (checked … -
Began Watching How to Combining Roll Over Image with radio Button
i have creating a feedback devices system, and already done with only the radio button. but the people wants more, then i added some roll over image, and having dificulties … -
Replied To a Post in Landing page artwork
Shutterstock, Dreamtime, 123f and the likes do have them, but also http://www.freepik.com/free-photos-vectors/backdrop and perhaps at http://allthefreestock.com/ -
Began Watching Landing page artwork
I'm trying to design a landing page for my API product, and it seriously is lacking any images. Where are the best places to get those Photoshop-ready backdrops that all … -
Replied To a Post in Unslider jquery plugin arrow doesn't display
By default the arrows option is set to true, which means its shows the 'next' and 'prev' text links and not left & right arrows. Do you want left & … -
Began Watching Unslider jquery plugin arrow doesn't display
Hello guys, I have a problem on using the image slider plugin called "Unslider" which is a jquery plugin. I follow all the procedures / instructions on how to set … -
Replied To a Post in Best Way to have .mov autoplay on IPhones
Apple blocks autoplay of media (video or audio) in Safari on iOS by default and if you're going to use the `video` tag, then I'd recommend to convert your `.mov` … -
Began Watching Best Way to have .mov autoplay on IPhones
All, I have a .mov file and am wondering what is the best way to have this autoplay so that users don't have to hit the play button while viewing … -
Gave Reputation to Saro_1 in Website loads weird
Hi gentlemedia, Thank you, it works! Appreciate the help! Any chance you also work as a freelancer / company? So I can keep you in file for future problems :D -
Replied To a Post in Website loads weird
Like I said since that mobile off-canvas nav gets altered with JavaScript by adding all this mm- classes to certain elements and the mobile nav gets even moved with JS … -
Replied To a Post in IFrame Not Displaying
I tried it before with daniweb url (also https) and it didn't load either, so I tried now with css-tricks.com (also https) which to my surprise does load, so that … -
Replied To a Post in IFrame Not Displaying
Downvote? Yes from me. If you ask for help on a forum and you can't bring up some patience and start yelling, what would you've expected? You yell that you've … -
Replied To a Post in Website loads weird
I never did something with Shopify, so I'm not sure what's possible to do. How much are you in control of adding or editing the core files or is there … -
Replied To a Post in Website loads weird
After looking more deeper in Chrome DevTools I see that the mobile nav (off-canvas nav) is controled by the [mmenu jQuery plugin](http://mmenu.frebsite.nl/) which adds loads of `mm-` sufix classes dynamically … -
Replied To a Post in Website loads weird
I think it has to do with the mobile navigation. If I resize the browser window to narrow to the point where your mobile navigation (hamburger icon) reveals, then a … -
Began Watching Website loads weird
Hi Daniweb, I noticed that [this website](http://bit.ly/2d0tjQn) first loads the lists before it gets its css mark-up. Is there a way to prevent this from happening? Thanks a lot! -
Marked Solved Status for Unable to store radio button state (:checked) or value in localStorage
I have the following which works fine for text inputs, textareas and selects with the class 'stored'. $(function() { $.each($('.stored'), function() { if(localStorage[$(this).attr('name')]) { $(this).val(localStorage[$(this).attr('name')]); } }); $('.stored').on('change', function() { … -
Replied To a Post in Unable to store radio button state (:checked) or value in localStorage
Thanks, Diafol! I know I go wrong with using `name`, because the radio buttons do have of course the same `name`, but I couldn't figure out what to use instead … -
Created Unable to store radio button state (:checked) or value in localStorage
I have the following which works fine for text inputs, textareas and selects with the class 'stored'. $(function() { $.each($('.stored'), function() { if(localStorage[$(this).attr('name')]) { $(this).val(localStorage[$(this).attr('name')]); } }); $('.stored').on('change', function() { … -
Began Watching Unable to store radio button state (:checked) or value in localStorage
I have the following which works fine for text inputs, textareas and selects with the class 'stored'. $(function() { $.each($('.stored'), function() { if(localStorage[$(this).attr('name')]) { $(this).val(localStorage[$(this).attr('name')]); } }); $('.stored').on('change', function() { … -
Replied To a Post in IFrame Not Displaying
google.com is not http as you have now, but https. Try just with another URL that is not https! -
Replied To a Post in IFrame Not Displaying
What and where did you change something? If I change that Google (https) url with the url (just http) of my own webpage, then it will get displayed. See that … -
Replied To a Post in Css Horizontal Dropdown Menu Visibility Problem
You will need to wrap your submenu items in an ul tag as well. The way you have it now is not valid HTML either. Then you could combine `visibillity: … -
Began Watching Css Horizontal Dropdown Menu Visibility Problem
i am implementing dropdown menu in html on hover by using CSS . But the problem arises when i implement it in My Already developed template . I am not … -
Replied To a Post in Slider elements moving not smoothy
You can use 'timeline' in Chrome DevTools tools to record a page load and meaure & analyze stuff like paint, FPS and CPU. Compare between the new and the old … -
Replied To a Post in IFrame Not Displaying
okay, I've dumped the code above in a pen (which you could also do by the way instead of letting people guess from an image) and gave the iframe a … -
Replied To a Post in IFrame Not Displaying
I'm also not sure what you're after. You're talking about an iFrame, but have inserted a webview element into your HTML with an iFrame attribute. As far as I see … -
Began Watching IFrame Not Displaying
So I'm making an OS in javascript/html. I made the login screen (although it's as secure as a calculator, it looks quite nice). I made the Operating System Interface using … -
Replied To a Post in Slider elements moving not smoothy
Sorry, no can do. My JS skills are very limited so I would use CSS keyframes or if it has to be JS based animations to cover older browsers as … -
Replied To a Post in Slider elements moving not smoothy
I do see a slight hick-up in the animation too. It is slight, because there's nothing else that could influence the animation (like a design as a background). Why not … -
Began Watching Slider elements moving not smoothy
Hi all, I have made simple slide that slides block from the left to the right. I used requestAnimationFrame for repated tasks. It works. But one problem is that when … -
Replied To a Post in how to do cross browser compatibility?
BrowserStack is great! It comes with a price, but it's worth it! https://www.browserstack.com/ -
Began Watching how to do cross browser compatibility?
how to do cross browser compatibility> -
Replied To a Post in Responsive banner slide in Dreamwever
Wow! DW and its extensions still spits out some messy HTML & CSS :) I see a fixed width and height in px as inline CSS, so like this it … -
Began Watching Responsive banner slide in Dreamwever
Hi all, I'm new in this forum and also completely newbie in Web development-so please forgive my lack of knowledge.. I'm modifying a Web template and I've inserted images slide … -
Replied To a Post in Virtual drawing Mannequin with modern browser power?
I'm not into this, but you might want to have a look into Webgl. https://docs.webplatform.org/wiki/webgl https://www.chromeexperiments.com/webgl
The End.