1
vote
1answer
20 views

Issue with a section content

I have a issue with a section in its content. If you see everything i write in the section goes outside of it and the section appear to be empty! HTML: <section id="scopri"> <article ...
1
vote
1answer
151 views

HTML5 section and article layout for web application

I know this is a common question among web devs and designers today, "when do I use a section or article element?" I have done quite a bot of research about the semantics meanings for each, but i ...
0
votes
1answer
35 views

<article> and <section> for forum's topics? [duplicate]

I don't know if it could be a good idea use for show a forum's topic this code: <article> <section>First post</section> <section>Second post</section> ...
0
votes
1answer
36 views

Html5 element confusion

I am slightly confused as to the best html5 element to use for a product review - similar in style to a review you can see on amazon or other ecommerce site. Should this be a section or an article?
0
votes
2answers
57 views

Why is last-child not targeting the last article tag in this fiddle?

Why is last-child not targeting the last article tag in this fiddle? http://jsfiddle.net/gunP9/ <div class="parent"> <article class="example">111</article> <article ...
1
vote
0answers
66 views

Sort article tags with nested DIVS with date not working

I have been trying to sort the date text and links. With the help of this question Use jQuery to Sort DIV based on Grandchild DIVS, I was able to get really far. At the moment the date is being read ...
1
vote
1answer
103 views

html5 article or section

I am making an "About" section on a webpage in HTML5 and I am not quite sure whether to use the <article> or <section> tag. It is just a page containing some about info. The ...
0
votes
2answers
2k views

HTML5 <section>'s inside <article> and header

I'm trying to make a semantic HTML5 code and not sure if it will be right. Visualy I have an article/post divided in 3 cols: IMAGE (200px) | H1+ Summary + More Link (350px) | Additional Section with ...
0
votes
1answer
330 views

HTML5 semantic structuring of article and section on web site with multiple sub levels

Which of the following - if any - is the most correct way of using the article and section elements on a web site with multiple sub levels? The first example creates this flat outline like this. ...
0
votes
1answer
201 views

Hide Article in Joomla Section but show in Category?

Ok, relatively new to Joomla and I am attempting to make some changes to an existing Joomla 1.5 site. Basically I've created a new set of articles under a new category, within an existing section. ...
1
vote
1answer
501 views

Right HTML 5 Article Structure

I hope the question is not too generic, but I would need an advice: Which one of the following examples would you consider to be the right one? Number 1 <article> <section> ...
3
votes
2answers
2k views

HTML5, <section> inside unordered list

Can I use <section> tag inside unordered list? I know, that <section> represent a generic section of document. Usually we find heading inside. So... I have list of products. Usually ...
0
votes
1answer
135 views

Problem with anchor image source not displaying

I can't see why the images on the <a> aren't displaying. What am I doing wrong? <section class="group"> <section id="projects" class="module"> <h1 class="">To help ...
114
votes
5answers
67k views

HTML5 best practices; section/header/aside/article tags

There is enough information about HTML5 on the web(also on stackoverflow), but now I'm curious about the "best practice". Tags like section / headers / article are new, and everyone has different ...
7
votes
2answers
834 views

<section> or <article>, which is contained in which

Trying to get my head around the new semantic elements in HTML5. Does a <section> belong inside an <article> or is it the other way around? Does it even matter? I'm looking at ...