Senff
-
For Some Reason Float Image Not Working??
You're having some listitems (LI's) that are not wrapped in a UL. LI's should ALWAYS be nested in a UL or OL. http://codepen.io/senff/pen/BbviL YOU CAN'T USE AN LI WITHOUT A UL AROUND IT Yes you can. OL work too. :)
-
Best way to tackle this
You mean the squares being irregular in size? That looks like a mistake on the graphic designer's part. Doesn't seem like a mistake, I think it's just to make things more natural. I would just use an image that's already ro…
-
IE8 displays website partially.
Remove the 250px height of .promoContainer.
-
background music
There are plenty of audio players for your web site out there: http://bit.ly/nWuQfp But for heaven's sake, do not use any autoplay option.
-
Which one do you suggest and why? (PHP Book)
Head First. Cause it's awesome.
-
Button type image doesn't change size.
You could try adding: background-size:100% 100%;
-
Background overflowed..........plz help
@kazitouhid what do you WANT it to do when the items don't all fit on screen? Should they wrap below, should the items be smaller, etc.?
-
Loading image wont display on some pages
It also worked for me on the ABOUT page. Isn't it just a "problem" that the "Loading" image is just not shown because the page loads (too) fast? Keep in mind that the image itself also needs time to load, so if it's st…
-
Loading image wont display on some pages
Sorry, but can't help unless we see the pages in question.
-
Loading image wont display on some pages
I know that, but the part of your code above only relates to HIDING the spinner after everything has finished loading. It has nothing to do with the way the spinner is being shown in the first place, so it's impossible for us to tell why it doe…
-
Loading image wont display on some pages
I know what you mean, but the script you posted above HIDES the spinner (and shows the content) once the page is done loading, so that doesn't help us to see why it doesn't show before the page is done loading in the first place.
-
Almost there with Git - deployment question
@TheDoc: but that's a workflow issue, isn't it (please correct me if I'm wrong)? What @liberty1979 is referring to, is auto deployment I think (files are deployed on server once you push). I've tried to get that going but that…
-
Supported devices for RWD
Once you view the site in your browser, resize your browser window slowly. Make sure that the site always looks good on every single size between 300 and, say, 1300. Once that's done, you can be sure that it will look good on every mobile devic…
-
Almost there with Git - deployment question
I believe the production server has to pull the files in order to get them all. Pushing them from your local only moves it to the repository (which is on Github or Bitbucket or wherever). At least, I think so. Git still confuses the hell out of me …
-
How Webpage renders in SMART TV?
This takes me back to the time when we worried about how our sites looked on WebTV and the AOL browser. ;)
-
Domain name availability search toolbar?
Hmmm.... http://css-tricks.com/forums/discussion/21983/domain-name-search-box/p1
-
CSS and html checklist legal
Not so fast, Batman! http://en.wikipedia.org/wiki/Web_accessibility#Legally_required_web_accessibility
-
Video background on website
It's simply a full-screen div with HTML5 video playing in it.
-
Apply background color to every 1+2 and 3+4 on hover
Well, so much for "Yes it HAS to be a table, as for the table is being filled by a CMS."..... ;)
-
bring a Div on top of the IFrame
You'll need to show the CSS in order for us to find out what could be wrong. In general, it shouldn't be a problem to have a DIV placed on top of an iFrame: http://codepen.io/senff/pen/wpFiz
-
Sidebars correct in Firefox, incorrect in Chrome
Not unless you can show us the page in question....! :)
-
Snippet redirects to iPhone and Android as desired, but how do I go the other way around?!
Of course, the cliche solution would be to say "make your site responsive and you won't have to deal with redirects!" but I guess that's not what you're looking for right now and that would take a while to fix. ;) I would p…
-
Apply background color to every 1+2 and 3+4 on hover
Yea, if it HAS to be one table and nothing else, JS is the answer. However if the table cells are allowed to have elements (either another table, or divs) then it can be done without JS.
-
Apply background color to every 1+2 and 3+4 on hover
Hmmm... this then? http://www.codepen.io/senff/pen/BsJmc (pen updated)
-
Apply background color to every 1+2 and 3+4 on hover
Not sure if this is what you mean? http://www.codepen.io/senff/pen/BsJmc
-
Why is my background image not adjusting?
Basically it's because width:100%; is used on that particular DIV. So I suspect that upon loading the site, that div will only take up 100% of the VIEWPORT, not of the SITE. Since the site is too wide for smaller screens (and since the header …
-
Disable second button onclick event, if first button is clicked.
If my images have the class as in the jquery code it wouldn't work. @PixelGrid would you mind making it so that it also accepts the img tags with the class Do you really need him to write the code for you? No offense, but if you know what&…
-
Css Issue on Mobile
The quickest solution might be to add this line in the HEAD tag of your page: A better solution would be to clean up the header a bit, with the "header-inner" there, the 225 pixel padding, and the logo floated right, there's a l…
-
Disable second button onclick event, if first button is clicked.
Ok, then can you use one of the examples above (take @pixelgrid's latest one for example) and use it on an actual page so we can check what might be the problem?
-
Disable second button onclick event, if first button is clicked.
Did you load the jQuery library on your page? I don't see it anywhere on the page you gave us as an example (http://reallycoolstuff.net/PROJECTS/harol/index.html), and all solutions posted here require that to work. If you don't have it, …