This file contains 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
/* | |
CSS for the normal weight and style file for a custom font. | |
Attempts to load the file locally first. | |
Use the line that loads a woff2 version of the font if you have the required file, | |
or else delete that line and just use the woff file loading line. | |
Uses font-display:swap; to help the loading process. | |
*/ | |
@font-face { | |
font-family: 'Custom Font'; | |
src: local('Custom Font'), |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<link href="https://fonts.googleapis.com/css?family=PT+Serif|Varela" rel="stylesheet"> | |
<style> | |
:root { |
This file contains 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 "mainmenu.php" find this code on line 7 --> | |
<script type="text/javascript"> | |
jQuery(document).ready( function(){ | |
jQuery( '.mainmenuselect' ).change(function() { | |
window.location = jQuery(this).find( 'option:selected' ).val(); | |
}); | |
}); | |
</script> |
This file contains 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
/* Add to themename/SKINS/themename/css/default.css */ | |
.postbody_nix img { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
} |
This file contains 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
<!--To center an image--> | |
<p align="center"> | |
![alt]() | |
</p> | |
<!--To right align an image--> | |
<p align="right"> | |
![alt]() | |
</p> |