Wordpress 自定义主题分页问题
Wordpress Custom Theme Pagination Issue
我为 2 家姊妹公司工作,我们已将一个网站的模板复制到另一个网站以实现大部分功能。
出于某种原因,我无法像在一个网站上那样使用分页。我们正在使用自定义主题,所以我似乎无法使用任何插件。
分页在此处运行良好:https://clcanursing.co.uk/news/ and I want to be able to replicate how it looks and how it reacts to tablet and mobile devices. I am trying to copy it onto this page: http://clcacalldirect.com/blog/但在此处失败。
如有任何帮助,我们将不胜感激!
谢谢,
安迪
您的问题似乎与 CSS 相关。您缺少一些样式(例如下面的样式)。确保复制所有样式。
使用开发工具查看两段代码之间的差异。
编辑:
下面的代码为您提供了 tablet/mobile
上的确切样式和功能
@media (max-width: 1200px) {
.pagination .default--button {
border-radius: 0;
width: 49% !important;
text-align: center;
margin-top: 70px;
}
}
我为 2 家姊妹公司工作,我们已将一个网站的模板复制到另一个网站以实现大部分功能。
出于某种原因,我无法像在一个网站上那样使用分页。我们正在使用自定义主题,所以我似乎无法使用任何插件。
分页在此处运行良好:https://clcanursing.co.uk/news/ and I want to be able to replicate how it looks and how it reacts to tablet and mobile devices. I am trying to copy it onto this page: http://clcacalldirect.com/blog/但在此处失败。
如有任何帮助,我们将不胜感激!
谢谢, 安迪
您的问题似乎与 CSS 相关。您缺少一些样式(例如下面的样式)。确保复制所有样式。
使用开发工具查看两段代码之间的差异。
编辑: 下面的代码为您提供了 tablet/mobile
上的确切样式和功能@media (max-width: 1200px) {
.pagination .default--button {
border-radius: 0;
width: 49% !important;
text-align: center;
margin-top: 70px;
}
}