试图编辑一个php文件,将其内容放在div中

时间:2015-05-12 11:36:42

标签: php css wordpress woocommerce

所以我在我的wordpress woo商务网站上有一个php脚本,它使页面顶部看起来像这样: enter image description here 当你点击链接,然后像这样: enter image description here

我想将整个内容放在div中,以便我可以添加背景和边框并添加一个h1标签,然后我将编辑css,如下所示: enter image description here 还有这个: enter image description here

这是控制该部分的php:

<div class="login_section">
<?php
/**
 * Checkout login form
 *
 * @author      WooThemes
 * @package     WooCommerce/Templates
 * @version     2.0.0
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

if ( is_user_logged_in() || 'no' === get_option( 'woocommerce_enable_checkout_login_reminder' ) ) {
    return;
}

$info_message  = apply_filters( 'woocommerce_checkout_login_message', __( 'Returning customer?', 'woocommerce' ) );
$info_message .= ' <a href="#" class="showlogin">' . __( 'Click here to login', 'woocommerce' ) . '</a>';
wc_print_notice( $info_message, 'notice' );</div>
?>

<?php
    woocommerce_login_form(
        array(
            'message'  => __( 'If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing &amp; Shipping section.', 'woocommerce' ),
            'redirect' => wc_get_page_permalink( 'checkout' ),
            'hidden'   => true
        )
    );

?>
</div>

我是一个完全初学的php,所以我的问题是,我在哪里放DIV和H1标签才能实现我的目标?

我希望我已经提供了足够的信息!

非常感谢

EDIT ********************* 所以我尝试将整个东西放在DIV中,它可以在除safari之外的所有浏览器中运行,它会显示DIV内部的所有内容(好像根本没有标记。

所以我仍然不确定应该在哪里正确放置div标签。有什么想法吗?

3 个答案:

答案 0 :(得分:0)

您应该创建一个新类并添加或删除login_section并添加一个新的。在wordpress文件夹主体中的style.css中创建。

答案 1 :(得分:0)

事实证明我可以将整个内容放在div中!

答案 2 :(得分:0)

最后通过在父php文件中调用函数的位置放置一个div来解决它