- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在重新开发我的 Thoughtforce.org 页面,我喜欢它在主要内容之上写着“最新帖子”,我正试图在 Wordpress twentysixteen 主题上复制它。看起来好像他们添加了一个标签来执行此操作,但我不确定,而且我已经搜索了几个小时。这是标签的样子。
<div id="main" class="site-main boxed group">
<div id="primary" class="content-area boxed">
<h3 class="section-title"><span>Latest Posts</span></h3>
<div id="content" class="site-content group one-column" role="main"
<article id="post-455" class="boxed post-455 post type-post status-publish format-standard has-post-thumbnail hentry category-sociology">
<a href="http://www.thoughtforce.org/de-facto-vs-de-jure/" title="De Facto vs. De Jure (And Their Relationship to Segregation)" class="home-thumb boxed">
<img width="435" height="247" src="http://www.thoughtforce.org/wp-content/uploads/2017/03/waiting-room-435x247.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="">
此外,我相信解决方案在某种程度上与类“section-title”的 标识有关。这就是我认为代码很重要的地方。
.section-title, #reply-title{
font-family:'Raleway', Arial, Helvetica, sans-serif;
font-size:1em;
color:#fff;
font-weight:bold;
background-color:#dc2834;
margin-left:-35px;
padding-left:35px;
padding:2px 0 1px 35px;
margin-bottom:30px;
position:relative;
}
.section-title a{
color:#fff;
}
.section-title:before, #reply-title:before{
content:"";
display:block;
width: 0;
height: 0;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-right: 5px solid #000;
position:absolute;
left:0;
bottom:-5px;
}
.section-title:after, #reply-title:after{
content:"";
position:absolute;
display:block;
width:5px;
height:5px;
background:#dc2834;
bottom:0;
left:0;
z-index:1;
最后,该区域的 twentysixteen 代码如下所示:
<div id="content" class="site-content">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<article id="post-1" class="post-1 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">
<header class="entry-header">
我已经添加了框。这是代码:
#main {
padding:30px;
margin-left:0;
margin-right:0;
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .2);
-moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .2);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .2);
}
编辑 添加代码:
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
*/
get_header(); ?>
<div id="primary" class="content-area boxed">
<?php upright_breadcrumb(); ?>
<h3 class="section-title"><span>
<?php
if ( is_category() ) {
printf( __( 'Category: %s', 'upright' ), '<span>' . single_cat_title( '', false ) . '</span>' );
} elseif ( is_tag() ) {
printf( __( 'Tag: %s', 'upright' ), '<span>' . single_tag_title( '', false ) . '</span>' );
} elseif ( is_author() ) {
/* Queue the first post, that way we know
* what author we're dealing with (if that is the case).
*/
the_post();
printf( __( 'Author: %s', 'upright' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' );
/* Since we called the_post() above, we need to
* rewind the loop back to the beginning that way
* we can run the loop properly, in full.
*/
rewind_posts();
} elseif ( is_day() ) {
printf( __( 'Daily Archives: %s', 'upright' ), '<span>' . get_the_date() . '</span>' );
} elseif ( is_month() ) {
printf( __( 'Archives: %s', 'upright' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );
} elseif ( is_year() ) {
printf( __( 'Yearly Archives: %s', 'upright' ), '<span>' . get_the_date( 'Y' ) . '</span>' );
} else {
_e( 'Archives', 'upright' );
}
?>
</span></h3>
最佳答案
您好,我认为您应该使用 .page-title
而不是 #main
.page-title, #reply-title {
background-color: #dc2834;
color: #fff;
font-family: "Raleway",Arial,Helvetica,sans-serif;
font-size: 1em;
font-weight: bold;
margin-bottom: 30px;
margin-left: -35px;
padding: 2px 0 1px 35px;
position: relative;
}
.page-title a {
color: #fff;
}
.page-title::before, #reply-title::before {
border-bottom: 5px solid transparent;
border-right: 5px solid #000;
border-top: 5px solid transparent;
bottom: -5px;
content: "";
display: block;
height: 0;
left: 0;
position: absolute;
width: 0;
}
.page-title::after, #reply-title::after {
background: #dc2834 none repeat scroll 0 0;
bottom: 0;
content: "";
display: block;
height: 5px;
left: 0;
position: absolute;
width: 5px;
z-index: 1;
}
.page-title, .page-title a, .page-title::after { background-color: #000000;}
然后在index.php文件中
<main id="main" class="site-main" role="main">
请添加以下代码
<h1 class="page-title">Latest Posts</h1>
它工作正常。参见 https://ibb.co/nmhKVk
关于php - 如何在 Wordpress 主页上的盒装内容中添加章节标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43850586/
如果应用程序是通过企业签名分发的,那么是否有任何框架允许我在后台接收Home 或Power 按下事件? 最佳答案 iOS 中的所有事件都是 UIEvent,它是 GSEvent 的包装器。通过一些技巧
版本为 1.4.1.4 的 Prestashop 网站使用 category.php 文件作为类别页面。不幸的是,1.6.0.6 的更新删除了该文件,因为它已被视为已弃用。 ( URL structu
我最近在 Github 存储库中为我的公司创建了一个全局 wiki。这是一个空的存储库,我创建它只是为了使用它的 wiki。 我的问题:在这个 wiki 存储库的首页上,显示了自述文件。这个自述文件是
我有一个非常简单的体育网站,主页上有不同运动的链接,如足球、篮球、无挡板篮球等。我想要的是当用户点击 Football 时,要存储的值,以便下次访问者访问该页面时它将打开足球页面。 到目前为止,我已经
我已经实现了onOptionsItemSelected来控制主页按钮: override fun onOptionsItemSelected(item: MenuItem): Boolean {
我不知道如何为匿名用户隐藏主页选项卡,Plone 版本是 4.3.7。最好隐藏导航栏,我发现可以通过 ZMI Portal_actions/portal_tabs/index_html 来做到这一点,
我正在尝试通过修改注册表来更改 IE 主页。我已经使用 bat 文件成功完成了此操作; REG ADD "HKCU\SOFTWARE\MICROSOFT\INTERNET EXPLORER\MAIN"
我已经使用 Spring Roo 生成了一些页面,我需要在应用程序的主页上显示数据库中的一些项目。那么我如何将带有数据的模型传递到主页,Roo 添加了以下行,我已注释掉 我使用 Roo 创建
我有 HomeController 类: @Controller public class HomeController { @RequestMapping("/") public S
用户按下“主页”按钮时,我需要显示退出确认对话框。如果是,则需要退出该应用程序。 按下“主页”按钮时是否可以显示? 最佳答案 这可能会导致您的应用被拒绝 从Apple HIG: 总是准备停止 当人们按
我只是想知道是否有人在Magento中格式化面包屑有任何经验? 我想用图片替换当前显示文本“HOME”的链接。 我以为用图片替换某些文本是一种简单的情况,但是似乎“HOME”文本/链接是动态创建的,因
我制作了登录功能,因此当用户登录时,它将导航到其他页面,但问题是登录成功后,用户只需按物理后退按钮即可再次返回登录页面。现在我想要的是登录后用户无法再次返回登录页面,因此当按下物理后退按钮时,它将关闭
我有 2 个 Activity ,1 个用于注册,1 个用于我的应用程序主页。现在为了在它们之间做出选择,我必须创建另一个 Activity 来检查一些细节并决定去哪个 Activity 。问题是,在
public void onBackPressed() { Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCa
实际上我正在开发一个应用程序,这个应用程序应该在安装的设备上打开,这样我就可以阻止/禁用返回、主页、多任务的物理按钮。 我已经阅读了一些关于如何做到这一点的文章,但仍然不知道如何在我的应用程序中实现它
我在浏览器中输入以下 URL http://localhost:8081 并以连接错误告终。使用 catalina 脚本启动 tomcat 后,我得到一个空白页面。有人知道为什么会这样吗? 最佳答
我正在尝试在 Eclipse 中设置一个 spring mvc 项目。我创建了一个动态 Web 项目并创建了源和配置文件。当我在由 eclipse 启动的 tomcat 上运行该项目时,我总是遇到 4
我在Tomcat中部署了我的应用程序,应用程序路径是: http://localhost:8080/myapp 但我想限制我的用户看不到 Tomcat 主页,即如果他们输入: http://local
在创建一个 vue nativescript 应用程序并通过以下方式运行之后: tns preview 我得到: *** Terminating app due to uncaught excepti
与其说我是网页设计师,我更像是一个程序员,我正在尝试做一个简单的(我认为)设计,比如 gmail 的主页 https://mail.google.com/intl/fr/mail/help/about
我是一名优秀的程序员,十分优秀!