"RESPONSIVE" Blank Page Template
-
I have this code to create a blank page template which works ok but the content is not mobile responsive. Is there a way to do so by modifying this code?
<?php /** Template Name: Blank Page */ ?> <html> <head> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <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>
Do I need to insert a link to the CSS file of my theme?
Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘"RESPONSIVE" Blank Page Template’ is closed to new replies.