Hi,Hella. Thanks for your interest.
My problem is this: when I download individual sections (not full pages) of your sections repository, these (sections) are embedded within your own html 'frame', like this:
<html>.....<body>.... <section> </section> ...</body>...</html>
.
Now: If I want to 'concatenate' several sections to assemble a coherent design, something like:
<section 1> </section>
<section 2> </section>
<section 3> </section> ....
I can not insert these frames again and again, like this:
<html> ... <body> <section 1> </section> </body> </html>
<html> ... <body> <section 2> </section> </body> </html>
<html> ... <body> <section 3> </section> </body> </html>
<html> ... <body> <section 4> </section> </body> </html> ...
and so on, every time I insert a new section. ¿Is that clear?
So I've tried extracting all the html snippets corresponding to each section's frame and placing them (the single section's snippets) inside a single <html> </html>
frame, like this:
<html> <! - HTML FRAME OF THE FIRST SECTION -HEADER- OF DESIGN 'X' ->
<section 1> </section>
<section 2> </section>
<section 3> </section>
</html> ....
But it does not work…. So: WHAT IS THE RIGHT WAY TO CONCATENATE THESE INDIVIDUAL SECTIONS TO 'build' a coherent design and, above all, that works?
Hi,Hella. Thanks for your interest.
My problem is this: when I download individual sections (not full pages) of your sections repository, these (sections) are embedded within your own html 'frame', like this:
`<html>.....<body>.... <section> </section> ...</body>...</html>`.
Now: If I want to 'concatenate' several sections to assemble a coherent design, something like:
<section 1> </section>
<section 2> </section>
<section 3> </section> ....
I can not insert these frames again and again, like this:
<html> ... <body> <section 1> </section> </body> </html>
<html> ... <body> <section 2> </section> </body> </html>
<html> ... <body> <section 3> </section> </body> </html>
<html> ... <body> <section 4> </section> </body> </html> ...
and so on, every time I insert a new section. ¿Is that clear?
So I've tried extracting all the html snippets corresponding to each section's frame and placing them (the single section's snippets) inside a single `<html> </html>` frame, like this:
<html> <! - HTML FRAME OF THE FIRST SECTION -HEADER- OF DESIGN 'X' ->
<section 1> </section>
<section 2> </section>
<section 3> </section>
</html> ....
But it does not work…. So: WHAT IS THE RIGHT WAY TO CONCATENATE THESE INDIVIDUAL SECTIONS TO 'build' a coherent design and, above all, that works?