posterity576
-
New website - feedback please!
The inconsistency in the horizontal space of the header and footer concerns me. Overall, good job.
-
Blog Page CSS Question
I don't know if you are aware of this, but people who don't have a Squarespace account are unable to view the blog post on your site. As far as achieving the desired effect, I would use margin to add space between the time stamps and the …
-
Is it appropriate to use [nav] multiple times?
albeit it really doesn't make much sense to use them multiple times.
-
Is it appropriate to use [nav] multiple times?
Nav and footer tags can be used multiple times on a page in HTML5, albeit it really doesn't make much sense to use them multiple times. The same is true of header tags so long as they're wrapped in a section or article tag.
-
Is Chris Coyier Always Busy?
@dfogge There's no need, whatsoever, to flog an already dead horse. I'm sure @codegraphics now understands the forwardness of his message and that his best bet is to patronize the help of other resources on the web.
-
Unordered List Help
Here is your refactored pen: http://codepen.io/anon/pen/DkAKy
-
Unordered List Help
Change the display to display: inline-block, as was suggested by @Paulie_D. Additionally, give the li's a width of 16% (1/6 = 16%). This should make it such that your list items line up from left to right.
-
Using the pre and code HTML tags
Sometimes it's the simplest solutions that belie us! Thanks.
-
Does hand-coding make me a good designer?
If you don't understand what you're coding, is it even appropriate to refer to it as coding? Much in the same way as reading requires a basic facility with language, so coding requires an understanding of basic coding principles.
-
Need Help Positioning div
I am also slightly confused as to what you want, but if you are concerned about the position of the div with an ID of dvid at smaller breakpoints, I would simply change the property value to something that isn't as wide as 200px. The reason you…
-
Responsive Design won't work on my phone!
@sloveland I didn't see that you posted the same thing. Oops!
-
Responsive Design won't work on my phone!
Easy fix. Add the following within the Head section of each of your documents:
-
Height of the footer element
@theacefes If memory serves me correct, Chris has already created a screencast in which he covers, albeit circuitously, the position property values. Perhaps it was this video: http://css-tricks.com/video-screencasts/42-all-about-floats-screencast/…
-
Feedback on my website?
@sorrentandrea: You are correct. HTML is for content, structure, and organization, while CSS is designed to drive the style of that content. The way your HTML is structured now, it is apparent that you're using it for both structure and styling…
-
Feedback on my website?
Your website, on the whole, looks great. The one thing I would suggest changing is using the text-transform property instead of capitalizing all of your text. I noticed this specifically on your home page, but I'd be hard-pressed to say it…
-
can any one help ?
Is the new page you want add related in any way to your blog page? That is, are you looking to number your pages (i.e., paginate your pages)? The solution you might be looking for might require Ajax, but it's hard to know for certain because yo…
-
Rate my site redesign (WIP)
I really like the design. While it does mirror closely the CSS-Tricks design, it does have its own, unique flavor. I also very much like the responsive design-y things, too. The one suggestion I have is to maybe float the search bar to the right of…
-
CSS Content in next line
This may just be me, but forcing user to be on the second line affects readability. When readability is low so too is rate-of-completion. Just a thought.
-
Responsive Website not working
Let me know if it works.
-
Responsive Website not working
Include this in the head section and you should be fine:
-
Essential Things to Place in HEAD?
You could also, as a suggestion, view the source of any site (including this one: view-source:http://css-tricks.com/) to get an idea of what to include in the head section.
-
Essential Things to Place in HEAD?
I include the doctype in the head section so the browsers know what version of HTML I'll be using. Hope that helps.
-
How to use ">" in CSS?
I say this with respect @TheDoc, but > isn't a descendant selector; it's a child selector. If you were to use > in an attempt to apply some sort of styling to a nested set of list-item elements, the styling wouldn't be applied.
-
can anyone tell me the best website to learn html. css and js..please...
Before you attempt to learn JS and jQuery, I'd strongly recommend learning (and becoming comfortable with) HTML and CSS. There are many places on the web to learn HTML and CSS, but I'd personally recommend purchasing a book. The advantage…
-
Extra indent when viewing source code in browser
@chrisburton Yeah, I've tried that, too, but no cigar. I suppose I'd rather have odd indentation in my code than a bug-laden, hardly functioning web site.
-
Extra indent when viewing source code in browser
@TheDoc I wrote and saved my code as .html and I am still getting the odd indentation. Perhaps it's a browser bug -- I don't know . . .
-
Extra indent when viewing source code in browser
@chrisburton I suppose I'm very particular.
-
How to implement icon fonts
I haven't uploaded any of my files to my server yet. I prefer developing locally. Do I need to do that in order to get the icon fonts to work? I thought using icon fonts was as simple as downloading them to one's hard drive and then linkin…