Skip to content

Instantly share code, notes, and snippets.

@danielbouman
danielbouman / CSS toevoeging
Created June 4, 2012 15:44
Aanpassingen voor Wine I Suppose
.large .bottom_white{background: url('images/bottom4_white.png') bottom;}
@danielbouman
danielbouman / CSS
Created June 4, 2012 17:08
Basket button, Wine I Suppose
#content a.add{
width: 94px;
height: 37px;
position: absolute;
right: 18px;
top: 102px;
padding: 0 0 0 30px;
font: bold 12px/37px 'Arial';
color: #3f3f3f;
background: url('images/add.png');
@danielbouman
danielbouman / Groen blokje
Created June 4, 2012 19:59
Aanpassingen voor Wine I Suppose
.con div.succes{
margin: 0 0-7px 0;
padding: 0 0 20px;
line-height: 22px;
background: url('images/succes.png') bottom no-repeat;
}
vervangen door:
.con div.succes{
@danielbouman
danielbouman / HTML
Created June 11, 2012 06:17
Aanpassing Mike Verkouter
<a href="#" onmousedown="this.className='focus'" onmouseup="this.className=''">Facebook</a>
Vervangen door:
<a href="#" onmousedown="this.className='focus'" onmouseup="this.className=''" onmouseout="this.className=''">Facebook</a>
Dit bij elke button doen.
ul#fotos li.foto16{
position: absolute !important;
top: 201px;
left: -70px;
}
/* Vervangen door: */
ul#fotos li.foto16{
position: absolute !important;
top: 201px;
@danielbouman
danielbouman / style.css
Created June 20, 2012 10:02
Marlies Hanse
div#content {
width: 942px;
background: url("images/content_bg.jpg") no-repeat 0 0;
padding: 76px 38px 33px 38px;
overflow: hidden;
overflow: hidden;
}
/* Vervangen door: */
@danielbouman
danielbouman / ervaringen.html
Created February 17, 2014 11:58
HTML aanpassing ervaringen overzicht
<!-- Huidige situatie: -->
<li title="Bedrijfsuitje Stago">
<img src="/wp-content/themes/uit_zeilen/images/nophoto.png" alt="ervaringfoto" class="photo">
(...)
</li>
<!-- Nieuwe situatie: -->
<li title="Bedrijfsuitje Stago">
<div class="box-photo">
<img src="/wp-content/themes/uit_zeilen/images/nophoto.png" alt="ervaringfoto" class="photo">
<!-- Oude situatie -->
<a href="#" class="btn eventuele-extra-classes">button tekst</a>
<!-- Nieuwe situatie -->
<a href="#" class="btn eventuele-extra-classes"><span>button tekst</span></a>
<!-- Oude situatie -->
<ul class="pager">
<li class="previous"><a href="#">Vorig project</a></li>
<li class="next"><a href="#">Volgend project</a></li>
</ul>
<!-- Nieuwe situatie -->
<ul class="pager">
<li class="previous"><a href="#"><span>Vorig project</span></a></li>
<li class="next"><a href="#"><span>Volgend project</span></a></li>
@danielbouman
danielbouman / main.js
Last active August 29, 2015 14:02
Aanpassing WDHMN
// Huidig (regel 36 - 44):
$(document).on('click', function(e){
if( $(e.target).closest(menu).length > 0 || $(e.target).closest(menuToggle).length > 0 ) {
return false;
}
else {
rowOffcanvas.removeClass("active");
menuToggle.removeClass("active");
}
});