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
#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
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
?><?php | |
$defaultPath = "videos/"; // Verzeichnis im Upload-Ordner mit abschliessendem "/". Bsp.: "ordner1/ordner11/" | |
$defaultImage = "standard.jpg"; //Name des anzuzeigenden Standardbildes | |
#Default settings Vorschaubild | |
$img_width = 300; | |
$img_height = 300; | |
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
page.includeJSFooter.file23456 = fileadmin/templates/js/backstretch/jquery.backstretch.min.js | |
page.includeJS.file002 > | |
page.jsFooterInline { | |
10 = COA | |
10.10 = CONTENT | |
10.10.wrap = var images = [ | ]; | |
10.10 { | |
table = tt_content |
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
temp.typo3Variable = COA | |
temp.typo3Variable { | |
5 = TEXT | |
5 { | |
# Datum | |
insertData = 1 | |
data = date : d-m-y | |
wrap = <p> Das Datum heute: | </p> | |
} | |
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
#in die Konstanten eintragen | |
plugin.powermail.field.checkboxJS = 0 |
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
#non www to www | |
RewriteCond %{HTTP_HOST} !^www\. | |
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] | |
#www to non www | |
RewriteEngine On | |
RewriteCond %{HTTP_HOST} !^my-domain\.com$ [NC] | |
RewriteRule ^(.*)$ http://my-domain.com/$1 [R=301,L] | |
#http://dense13.com/blog/2008/02/27/redirecting-non-www-to-www-with-htaccess/ |
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
/** | |
* generate an array of params for a new marker icon image | |
* iconShadowImage is optional | |
* If anchor coords are not supplied, we use the center point of the image by default. | |
* Can be called statically. For private use by addMarkerIcon() and setMarkerIcon() | |
* | |
* @param string $iconImage URL to icon image | |
* @param string $iconShadowImage URL to shadow image | |
* @param string $iconAnchorX X coordinate for icon anchor point | |
* @param string $iconAnchorY Y coordinate for icon anchor point |
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 fetchURL($url) { | |
//$dateien = file ('http://www.example.com/'); | |
//return implode("",$dateien); | |
//Initialize the Curl session | |
$ch = curl_init(); | |
//Set curl to return the data instead of printing it to the browser. |