我试图制作一个看起来有点像上图的标题.
我想添加不同深浅的绿色形状.(图像是在油漆中修改过的.)
我玩过我能在互联网上找到的东西并最终得到了这个:
.container
position: relative
width: 100%
min-height: 100vh
margin: 0 auto
overflow: hidden
background-color: green
&::after
content: ''
position: absolute
background-color: #6fbc29
padding-bottom: 124.42136%
width: 100%
bottom: 0
left: 0
transform: rotate(80deg)
transform-origin: left bottom
Run Code Online (Sandbox Code Playgroud)
https://codepen.io/anon/pen/rGXQaw
我不想添加图像作为背景.我无法弄清楚如何为此代码添加更多形状.还有其他方法我应该尝试撰写吗?
有人可以帮忙吗?
我正在尝试从我的商店、类别和标签页面中删除面包屑。但没有任何效果。
add_filter( 'woocommerce_before_main_content', 'remove_breadcrumbs');
function remove_breadcrumbs() {
if(!is_product()) {
remove_action(
'woocommerce_before_main_content','woocommerce_breadcrumb', 20, 0);
}
}
Run Code Online (Sandbox Code Playgroud)
想从这里开始,但我不知道缺少什么。