如何修复从水平切换到下拉菜单(WP Astra主题)的主菜单(主标题)?

时间:2019-10-19 01:24:10

标签: css wordpress

我的主菜单(主标题)从“水平”切换为“下拉”。我正在使用“ Astra”主题。

1 个答案:

答案 0 :(得分:1)

仅添加CSS将无济于事,因为主题及其CSSPHP规则取决于断点- CSS断点是网站内容根据设备宽度做出响应的点,使您可以向用户显示最佳的布局。

从Astra 1.4.0版本开始,您可以在自定义菜单refer to this documentation that explains how to do it.

中更改标题的断点。 如果您的主题低于1.4.0版,请将此PHP代码段添加到您的functions.php文件中。 Source

/**
 * Change the breakpoint of the Astra Header Menus
 * 
 * @return int Screen width when the header should change to the mobile header.
 */
function your_prefix_change_header_breakpoint() {
 return 1120;
};

add_filter( 'astra_header_break_point', 'your_prefix_change_header_breakpoint' );