Skip to main content

Home/ Wordpress/ Group items tagged svg

Rss Feed Group items tagged

TheAppGuruz

SVG Shape Morphing HTML5 Tutorial - 2 views

  •  
    It's very easy to animate SVG Shape Morphing and comfortable. We can make batter graphics using SVG. Here, we need to define actual path of shape and...
  •  
    It's very easy to animate SVG Shape Morphing and comfortable. We can make batter graphics using SVG. Here, we need to define actual path of shape and...
Elías Gómez

Allow SVG through WordPress Media Uploader | CSS-Tricks - 0 views

  •  
    function cc_mime_types($mimes) {
    $mimes['svg'] = 'image/svg+xml';
    return $mimes;
    }
    add_filter('upload_mimes', 'cc_mime_types');
  •  
    function cc_mime_types($mimes) {
    $mimes['svg'] = 'image/svg+xml';
    return $mimes;
    }
    add_filter('upload_mimes', 'cc_mime_types');
Luciano Ferrer

Using @font-face | CSS-Tricks - 2 views

  •  
    "This is the method with the deepest support possible right now: @font-face { font-family: 'MyWebFont'; src: url('webfont.eot'); /* IE9 Compat Modes */ src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('webfont.woff2') format('woff2'), /* Super Modern Browsers */ url('webfont.woff') format('woff'), /* Pretty Modern Browsers */ url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */ url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */ } body { font-family: 'MyWebFont', Fallback, sans-serif; }"
Luciano Ferrer

Seguridad WordPress: Añadir un pestillo a WordPress para evitar acceso - 0 views

  •  
    " Un archivo .htaccess que es el que hará de pestillo. Cuando tenga el punto delante(.htacess) estará echado. Cuando no tenga el punto(htaccess) estará quitado. Un archivo close.php que es el que determinará que acción realizar cuando intenten entrar cuando el pestillo esté echado. Un archivo opcional close.html, por si queremos mostrar una página html como respuesta. Montaje Creamos el archivo .htaccess en el directorio /wp-admin/ de nuestro WordPress. Su contenido será el siguiente Archivo /wp-admin/.htaccess Apache RewriteEngine on RewriteBase /wp-admin/ RewriteCond %{REQUEST_FILENAME} !^(.+)\.(css|js)$ RewriteCond %{REQUEST_FILENAME} !^(.+)\.(gif|jpg|jpeg|png|ico)$ RewriteCond %{REQUEST_FILENAME} !^(.+)\.(eot|svg|ttf|woff)$ RewriteRule ^(.+)$ close.php [NC] "
1 - 4 of 4
Showing 20 items per page