Create a 'yellow box" within posts

Posted in: Newspaper
Post count: 7

Will the solution outlined below work with this theme?

Here’s the code you can add to your theme’s “functions.php” file (or “custom_functions.php” on Thesis) to create a yellow box:

function make_yellowbox($atts, $content = null) {
return ‘<p style=”background: none repeat scroll 0 0 #ff9; clear: both; margin-bottom: 18px; overflow: hidden; border: 1px solid #e5e597;

padding: 13px;”>’ . do_shortcode($content) . ‘</p>’;
}
add_shortcode(‘yellowbox’, ‘make_yellowbox’);
Once the code it added, any text wrapped inside of this shortcode will appear in a yellow box.

[yellowbox]Here is the text in the yellow box[/yellowbox]

https://backlinko.com/increase-conversions

Post count: 22421

Hello,

Sorry but we have not tested it. Place the code in functions.php as the instructions say and check to see if it works or not.

Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.