Created
October 1, 2017 17:51
-
-
Save dherbold/c5a74f09057be50f00173ea3d544f93d to your computer and use it in GitHub Desktop.
per page education.asu.edu header addition of USNews graphic. Template override to target phd program pages to display US News Best Grad School graphic.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="<?php print $classes; ?>"<?php print $attributes; ?>> | |
<style> | |
.usnewscontainer { | |
min-height: 200px; | |
} | |
.usnewscontainer h1 { | |
display: inline-block; | |
padding: 15px 0 0 30px; | |
} | |
.usnewsbannerbadge { | |
vertical-align: middle; | |
display: inline; | |
float: left; | |
} | |
@media (max-width: 650px) { | |
.usnewscontainer h1 { | |
display: inline; | |
padding-left: 0; | |
font-size: 42px; | |
} | |
.usnewscontainer { | |
min-height: 120px; | |
} | |
.usnewsbannerbadge {margin-right: 20px;} | |
} | |
</style> | |
<div class="usnewscontainer"> | |
<img class="usnewsbannerbadge" src="/<?php echo drupal_get_path('theme', 'innovationchild'); ?>/images/usnews-head-badge.png"> | |
<div class="usnewstitlecontainer"> | |
<?php print render($elements['title']); ?> | |
<?php print render($title_suffix); ?> | |
<?php print render($content); ?> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment