我的主菜单(主标题)从“水平”切换为“下拉”。我正在使用“ Astra”主题。
答案 0 :(得分:1)
仅添加CSS
将无济于事,因为主题及其CSS
和PHP
规则取决于断点- 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' );