CSS, short for Cascading Style Sheets, is a language used to control the presentation of HTML and XML documents including colors, layout and fonts.
3
votes
1answer
64 views
Review for CSS layout code
I want to get my first CSS layout reviewed.
First of all, the related HTML code is as follows -
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
...
-1
votes
1answer
44 views
Optimizations Help [closed]
How can we improve our Yslow performance grade C to A or B.
Looking for some helpful tips on improving the code on our website at www.wirenine.com - any tips to help improve page load times would be ...
1
vote
0answers
42 views
Review my Card Matching Game. (Update to an earlier post)
I updated my code according to a few suggestions from my last post, so I thought I'd repost it to see what other feedback I could get. I also commented it heavily and fixed some of the functionality.
...
1
vote
1answer
87 views
Toggleclass best practice (JQuery and CSS syntax)
I've created this fiddle: http://jsfiddle.net/9SXLJ/ to demonstrate something I've been working on. I've been trying to mimic the behaviour of Twitter where a tweet is expanded, the border-radius and ...
2
votes
1answer
81 views
How'd I do on this card matching game? Link and code inside
Here is the Card Matching Game.
And Here is the code:
// Author: Matt Gowie
// Created on: 10/01/12
// Project for Web Dev 2400
$(document).ready(function(){
var cardArray =
[
'd-ace', ...
1
vote
0answers
35 views
Complex CSS layout - Docked Footer and Elastic Content
I have based my code off several tutorials which has culminated what I think is quite a complicated CSS layout. It has a docked footer. The sidebars are turned on dynamically in my template depending ...
1
vote
1answer
29 views
HTML CSS Field Layout
I've had some help designing my field boxes and I was hoping to get feedback on the code. The fields will increase in complexity which is why I thought to structure it this way (image upload fields, ...
0
votes
2answers
101 views
Is this decent HTML5 or total garbage? [closed]
So this is my first real try with HTML5 and i'm kinda lost.
Is this an acceptable way to do it? Also, it's a mobile Wordpress theme... i decided to ipost only the final output.
Thank you.
...
0
votes
0answers
21 views
force stop dragging image located at the overflow:hidden div [closed]
i have an image placed at the overflow:hidden div which is scaling with browser window, in 1366x768 resolution image is wider than the browser which is ok because i would like to drag image left and ...
-1
votes
1answer
27 views
Create a box that will display subscriber options for a website [closed]
I am trying to figure out a way to create some kind of a popup information window when someone clicks on a "subscriber options" button.
An example of what I'm going for can be found here at ...
3
votes
1answer
91 views
make the fiddle cleaner
http://jsfiddle.net/hrishikeshp19/VyDsu/21/
Following is my HTML body:
<div id="header">
<div id="logo">
</div>
<div id="headercontent1">
</div>
<div ...
0
votes
1answer
76 views
Review my .PSD to HTML/CSS attempt [closed]
I'm learning. I wanted to convert this PSD to HTML/CSS: http://www.psdtemplates.com/preview/psd-template-018/
Here's my jsfiddle: http://jsfiddle.net/Joshi3s/FxfTY/
Images/fonts will obviously be ...
1
vote
0answers
29 views
CSS3 animations
I have the following code, which acts like a turntable and plays Sgt. Pepper when you load the page. This works only in Safari (I suppose I can delete the FF parts then), so I'm wondering how I can ...
0
votes
0answers
40 views
How to remove a div using .blur after using .click on another div [closed]
I am trying to make a big search bar div disappear the second I remove my mouse away from that div (but ONLY after the big search bar is visible from using .click function on another search bar).
...
3
votes
1answer
109 views
How to improve this JavaScript implementation of a TODO manager?
I was asked to create a TODO manager using JavaScript and CSS.
I did not get a good review on the code nor specific comments on how to improve it.
My implementation:
<html>
<head>
...