Hello this is me really dipping my toe into a deep coding project. I think if i can learn to do this i will have come far. I feel quite pleased with my effort so far but i'd love a bit of help as i seem to be unable to do what i was hoping.
I use Drupal. You can view the PAGE THAT I AM WORKING UPON HERE
I have managed to add a block region to my page.tpl (dont worry this isnt a drupal problem) My block region contains an image. I was wanting to print my title over the top of the image. It doesnt seem to be happening.
<?php if ($has_header): ?>
<!-- Header -->
<header id="header" class="container-wrapper">
<div class="container">
<?php print render($page['header']) ?>
<?php if ($title): ?>
<?php print $breadcrumb ?>
<?php print render($title_prefix) ?>
<h1><?php print $title ?></h1>
<?php print render($title_suffix) ?>
<?php endif ?>
<?php print $messages ?>
<?php print render($page['help']) ?>
<?php if ($tabs): ?><?php print render($tabs) ?><?php endif ?>
<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links) ?></ul><?php endif ?>
</div>
</header>
<?php endif ?>
the print render page header bit in line 5 above is the block region 'header' with my image. I was hoping to have the title left middle on top of the image.
Could anyone advise more?
Thanks edit to add-
<header id="header" class="container-wrapper">
<div class="container contextual-links-region">
<div class="region region-header">
<h2 class="element-invisible">You are here</h2>
<div class="breadcrumb">
<a href="/">Home</a>
</div>
<h1>football</h1>