(04-12-2019, 10:02 AM)Wouter60 Wrote: Please, share the view you've written so far.
Use the PHP code block button at the toolbar of the forum editor, are include it as an attachment.
Hey @Wouter60 this is my code, I took out alot of the css that was in the original code and placed it in a css file, still didnt work. Trying to center and add a background and color:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CULTURED KINK</title>
<style type="application/css/style.css">
<link rel="stylesheet" type="text/css" href="<?=base_url()?>application/css/style.css"/>
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
</style>
</head>
<body>
<h1 class="text-align: center;"><b>WELCOME TO CULTURED KINK!</b></h1>
<a href="#" class="btn btn-danger btn-lg active" role="button" aria-pressed="true">ENTER</a>
<p class="footer">CREATED BY TINICO ENTERPRISES, LLC</p>
</body>
</html>
Thank you for the help, its greatly appreciated