Insert image in the page template
-
Good morning, folks! I am creating a custom post login page my way , I created a page template and tals . I have already entered div with colored background, put a text, everything worked , but in time to set a background-image to a div , the fund does not appear, what will that be? Detail, the image path is correct.
My code is this .
————————————————————————–
<?php
/**
* Template Name: Pós-login
*
*/
?>
<html>
<head>
<title>Tela de Login</title>
<style>
body{margin:0px;}
.principal{
width:100%;
background-color:#D56E6F;
background-image:url(images/banner-3.jpg);
background-repeat:repeat-x;
height:158px;}
</style>
</head>
<body>
<div class=”principal”>
</div>
</body>
</html>
————————————————————————–
- The topic ‘Insert image in the page template’ is closed to new replies.