Skip to content

Instantly share code, notes, and snippets.

View bmarshall511's full-sized avatar

Ben Marshall bmarshall511

View GitHub Profile
@media print {
h1,
h2,
h3,
h4,
h5,
h6 {
page-break-after: avoid; // Prevent headings from being printed at the bottom of the page
}
@media print {
@page {
margin: 1cm; // Use centimeters or inches, not pixels
}
body {
width: 100%;
margin: 0;
padding: 0;
}
}
@media print {
nav,
.search-form {
display: none;
}
}
@media print {
body {
background: #fff;
color: #000;
}
}
@media print {
// Place your print styles here
}
.button {
width: 200px;
height: 50px;
}
.box {
width: 400px;
overflow: hidden;
}
<?php
/**
* @file
* Sets up a custom filter that enables custom shortcodes.
*/
/**
* Implementation of hook_filter_info()
*/
function custom_shortcodes_filter_info() {
<?php
require_once('class.stockMarketAPI.php');
?>
<h1>Current Stock Information for AAPL</h1>
<?php
$StockMarketAPI = new StockMarketAPI;
$StockMarketAPI->symbol = 'AAPL';
?>