您好,这是我真正涉足深度编码项目。我想如果我能学会这样做,我会走得很远。到目前为止,我对自己的努力感到非常满意,但我希望得到一些帮助,因为我似乎无法做到我希望的事情。
我使用 Drupal。您可以在此处查看我正在处理的页面
我已经设法在我的 page.tpl 中添加了一个块区域(不要担心这不是一个 drupal 问题)我的块区域包含一个图像。我想在图像顶部打印我的标题。它似乎没有发生。
<?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 ?>
上面第 5 行中的打印渲染页面标题位是我的图像的块区域“标题”。我希望将标题放在图像顶部的中间。
有人可以提供更多建议吗?
感谢编辑添加-
<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>