Hi.
The theme works in WordPress 6.1 and PHP 8+.
The only thing which needs change is the function “tenderSpring_custom_css” which throws a PHP Warning.
Change it to the following.
/**
* Custom CSS support
*/
function tenderSpring_custom_css() {
$options = get_option( 'tenderSpring_theme_options' );
if ( (is_array( $options ) ) && ( array_key_exists( 'custom_css', $options ) ) ) {
$tenderSpring_customcss = $options['custom_css'];
if ( $tenderSpring_customcss ) {
echo "<style type='text/css'>";
echo $tenderSpring_customcss;
echo '</style>';
}
}
}
]]>
I’m looking to add some borders to my image when I post them.
Is there a way for this to be done automatically when I make a post?
I’ve tried adding the following to style.css, but it doesn’t appear to work.
img {
margin: 0;
padding: 3px;
border: 1px solid black;
}
On another note, is there a way to align a group of images? For example, if I have a series of three images displayed one next to the other, is there a way to center align the whole group? When I tried to center align using the menu buttons on the post screen, the images get forced to a new line instead; they end up center aligned, but arranged one on top of the other…
For reference, here’s my site: https://www.cleffonanime.com/
It’s currently in the test phase…
Hi,
Can you let me know how to hide ‘posted by date’ on the static page?
My website is https://www.phebestephen.com.
Thanks,
Phebe