Syntax highlighting


Deprecated: htmlentities(): Passing null to parameter #2 ($flags) of type int is deprecated in /home1/barbeeph/public_html/backlight-2-100/blog/wp-content/plugins/cc-syntax-highlight/class-plugin.php on line 137

Deprecated: htmlentities(): Passing null to parameter #2 ($flags) of type int is deprecated in /home1/barbeeph/public_html/backlight-2-100/blog/wp-content/plugins/cc-syntax-highlight/class-plugin.php on line 137

Sample


<div id="pallet-credits">
	<p>Your text</p>
	<p>Your text</p>
	<p>Your text</p>
</div>	


<div id="main-copy-credits">
	<p>Your text</p>
	<p>Your text</p>
	<p>Your text</p>
</div>

And the css:


/*This makes it so that the copy in the main column is not displayed at widths wider than the breakpoint*/

#main-copy-credits {
	display:none;
}

/*This controls when the text is displayed. Set max-width to the same breakpoint as the page template*/	

@media screen and (max-width: 640px) {
		#main-copy-credits {
			display:block;
		}
		#pallet-credits {
			display:none;
		}
}
May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031