Skip to content

Instantly share code, notes, and snippets.

View aboutsnippets's full-sized avatar

aboutsnippets

View GitHub Profile
@aboutsnippets
aboutsnippets / gist:4662529
Created January 29, 2013 07:43
SEO: 301 Redirect one old Url to new Url
#301 Redirect one old Url to new Url
Redirect 301 /oldurl.html http://www.domain.de/newurl.php
@aboutsnippets
aboutsnippets / gist:4609479
Created January 23, 2013 16:41
DRUPAL: image caption for individual image field – with html5 figure & figcaption wrapping.
<div class="<?php print $classes; ?>"<?php print $attributes; ?>>
<?php if (!$label_hidden) : ?>
<h2 class="field-label"<?php print $title_attributes; ?>><?php print $label ?>:&nbsp;</h2>
<?php endif; ?>
<?php foreach ($items as $delta => $item): ?>
<figure class="field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>>
<?php print render($item); ?>
<?php if ($item['#item']['title']): ?>
<figcaption><?php print $item['#item']['title']; ?></figcaption>
<?php endif; ?>
@aboutsnippets
aboutsnippets / gist:4604438
Created January 23, 2013 11:02
CSS: Ordered List, colored decimal Styling
.content{
counter-reset:section;
}
ol > li {
font-weight: 400;
list-style: none outside none;
margin: 0 0 10px 20px;
position: relative;
counter-reset:li;
@aboutsnippets
aboutsnippets / gist:4586929
Created January 21, 2013 15:43
CSS: Table with odd/even colored Rows , css3
tbody tr:nth-child(odd) {
background-color: #ccc;
}
@aboutsnippets
aboutsnippets / test
Created January 18, 2013 12:58
CSS: Links & Buttons more Button-like - feels like pressed down
/*Button feels like pressed down*/
.button:active, input[type=submit]:active{
position: relative;
top:1px;
}