static html to home page

Permalink
hi i have watched some youtube videos to make my html css code into my concrete 5 home page but for some reason i am unable to complete the final steps i cannot locate my static code in the upload theme section.... please help

 
hutman replied on at Permalink Reply
hutman
Can you explain a little bit more the steps that you have taken and the one that you are stuck on? There are many videos and it's very hard to tell where you are stuck by this description.
leilajade replied on at Permalink Reply
okay so i have managed to get to step 11 but am stuck on step 12.

here is the link that i have been using
https://documentation.concrete5.org/developers/designing-for-concret...

i cant seem to find where the header and footer links are to be placed within my code.
i already have a header within my static html and dont want to lose that on my live page, but would like the administrative header options that concrete offers

please help
LucaBn replied on at Permalink Reply
LucaBn
Before step 12 your default.php file should be something like this:

<head><!-- your code --></head>
<body>
   <header><!-- your code --></header>
   <!-- your code -->
   <footer><!-- your code --></footer>
</body>


After step 12 your default.php file should be something like this:

<head>
   <!-- your code -->
   <?php Loader::element('header_required') ?> 
</head>
<body>
   <header><!-- your code --></header>
   <!-- your code -->
   <footer><!-- your code --></footer>
   <?php Loader::element('footer_required') ?>
</body>


Check if the position of concrete elements is right (and obviously be sure to be logged in as administrator when you check this).