- test
This file contains hidden or 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
img.bg { | |
/* Set rules to fill background */ | |
min-height: 100%; | |
min-width: 1024px; | |
/* Set up proportionate scaling */ | |
width: 100%; | |
height: auto; | |
/* Set up positioning */ |
This file contains hidden or 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
#back-top { | |
position: fixed; | |
bottom: 30px; | |
margin-left: -150px; | |
} | |
#back-top a { | |
width: 108px; | |
display: block; | |
text-align: center; |
This file contains hidden or 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
-webkit-text-size-adjust: none |
This file contains hidden or 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="bgh"> | |
<img src="path/to/image.jpg"/> | |
</div> |
This file contains hidden or 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
<?php | |
/* | |
** @Title: Recaptcha Validation | |
** @Date Modified: 6/01/09 | |
** Instructions: Place this code in a file called "ajax.recaptcha.php" | |
*/ | |
//A. Load the Recaptcha Libary | |
require_once('/location/to/recaptchalib.php'); | |
This file contains hidden or 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
//TypoScript | |
# Multi Domain Configuration | |
[globalString = ENV:HTTP_HOST=example1.de] | |
config.baseURL = http:// www.example1.de/ | |
[global] | |
[globalString = ENV:HTTP_HOST=www.example2.de] | |
config.baseURL = http:// www.example2.de/ | |
[global] |
This file contains hidden or 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
//x=1 | |
jQuery('.block-inner.box.platte_200x280 a.download:eq(1)').addClass("view"); |
This file contains hidden or 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
//Title Format | |
function str_replace(search, replace, subject) { | |
return subject.split(search).join(replace); | |
} | |
function formatTitle(title, currentArray, currentIndex, currentOpts) { | |
return '<div id="ttt">'+str_replace("|", "<br>", title)+'</div>'; | |
} | |
This file contains hidden or 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
function str_replace(search, replace, subject) { | |
return subject.split(search).join(replace); | |
} |