• What should I add to this so that my SSL certificate shows up?

    <?php
    /**
    	Template Name: Page with background only
    
    */
    ?>
    <html>
    <head>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <style type="text/css">
    body { background-color: #cccccc; background-image: url('http://uffekirkegaard.dk/wp-content/uploads/2010/10/bg.jpg'); background-repeat: repeat-y; background-position: top center; background-attachment: scroll; }
    #page-content { width: 800px; margin: 20px auto; }
    </style>
    <title><?php wp_title( '|', true, 'right' ); bloginfo('url'); ?></title>
    <?php wp_head(); ?>
    </head>
    
    <body>
    <?php while (have_posts()) : the_post(); ?>
    <div id="page-content">
    	<?php the_content(); endwhile; ?>
    </div>
    </body>
    </html>
Viewing 1 replies (of 1 total)
  • Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    That background image URL needs to be HTTPS:

    url('https://uffekirkegaard.dk/wp-content/uploads/2010/10/bg.jpg');

Viewing 1 replies (of 1 total)
  • The topic ‘What should I add to this blank page template so my ssl cert shows up’ is closed to new replies.