无法在codeigniter 3文件结构中找到根index.html文件。我想显示一个应该在所有页面上都可见的聊天按钮。
我必须查找哪个文件?
该按钮显示在所有页面上,但它坚持只是在标题,它不是相对于身体,我猜
这是一个Template.php文件,它 Package 了应用程序-
<body style='position:relative,z-index:10'>
<?php $this->load->view('website/layout/header'); ?>
<?php $this->load->view('website/layout/whatsapp_button');?>
<?php $this->load->view('website/'.$content);?>
</div>
<?php $this->load->view('website/layout/footer'); ?>
</body>
whatsapp_button.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1"
name="viewport" />
<meta name="description" content="" />
<meta name="author" content="" />
</head>
<body>
<!-- start header -->
<div className=''>
<a style='position:absolute,font-size:20px,z-
index:100,top:500px'
target='_blank'
href='https://api.whatsapp.com/send?phone='>
Chat
</a>
</div>
</body>
</html>
1条答案
按热度按时间vdgimpew1#
没有这样的文件。视图(html输出)是从控制器加载的
控制器索引函数(或加载html输出的任何地方)中的典型结构可以是:
例如,页眉可以保存菜单,页脚可以保存所有脚本
把你的按钮放在其中之一,因为你将加载页眉和页脚总是
更多:正在加载Codeigniter 3页