制作爆头图像响应

时间:2017-12-27 20:55:04

标签: html css responsive-design

我正在努力使我的网站响应,我遇到了我的标题图片问题。图像是爆头,并与右侧对齐。在手机和平​​板电脑上,图像在底部和右侧被切断。我想让爆头居中并出现在我的标题中的h1,h3和p之上(在手机和平​​板电脑上)。是否有任何方法可以实现这一目标,同时保持我的图像仍然对齐(在桌面上)?谢谢!

for f in * ; do cp $f $f_copy ; done

1 个答案:

答案 0 :(得分:0)

固定宽度通常会使响应式设计更加困难。您是否考虑过将图像宽度设为百分比而不是固定像素?

或者,您可以在重要的断点处添加媒体查询。类似的东西(但取决于您的具体需求和布局):

// Conditionally remove action to send email
function unhook_emails($email_class) {

    // Check whether to send the renewal email or not
    $send_renewal_email = check_send_renewal_email();

    if (!$send_renewal_email) {

        // Remove action to prevent email from being sent
        remove_action(
            "woocommerce_order_status_completed_notification",
            array(
                $email_class->emails["WC_Email_Customer_Completed_Order"],
                "trigger"
            )
        );
    }
}

add_action("woocommerce_email", "unhook_emails");