出于某种原因,在我的商店结帐页面上,付款方式为黑色。拥有黑色背景,这有点“不可读”。
主题开发者为我提供了一些调整结帐/购物车页面的代码,但我找不到这个确切的部分,好吧,我不知道如何解决这个特定的部分......
这是CSS:
.woocommerce-checkout .woocommerce form .form-row label, .woocommerce-checkout. woocommerce-page form .form-row label {
color: #cdceb9; font-size: 11pt;
}
.input-text {
.woocommerce-checkout h3 {
color: #cdceb9; font-size: 11pt;
}
.woocommerce-checkout th {
color: #968152; font-size: 11pt;
}
.woocommerce-checkout table.shop_table th, .woocommerce-page table.shop_table th {
color: #968152; font-size: 11pt;
}
.woocommerce-checkout td.product-total,.woocommerce-checkout td.product-subtotal {
color: #cdceb9; font-size: 11pt;
}
.woocommerce-checkout .woocommerce table.shop_table tfoot tr td {
color: #cdceb9; font-size: 11pt;
}
Custom css for tweaking cart page
--------------------------------------------------
.woocommerce-cart .woocommerce table.shop_table th, .woocommerce-cart .woocommerce-page table.shop_table th {
color: #968152;
}
.woocommerce-cart .cart_totals tr td strong {
color: #cdceb9;
}
.woocommerce-cart .cart_totals h2 {
color: #cdceb9;
}
.woocommerce-cart td.product-total,.woocommerce-cart td.product-subtotal {
color: #cdceb9;
}
.woocommerce-cart .cart_totals{
color : #cdceb9;
}
我如何解决付款方式,以便我可以更改字体颜色?它是“您的订单”部分下的黑色文字......
您需要先添加购物车中的部分商品才能看到它
答案 0 :(得分:0)
试试这个:
.payment_methods.methods li label {
color: white;
}
当然,您需要将白色更改为您想要的任何颜色 对于与css选择器相关的未来问题,如果你使用chrome转到项目的位置并右键单击然后选择inspect,你会看到页面的HTML和CSS,重点是你想要的项目,试着找出究竟是什么你需要改变然后将它应用到你的css文件中,并阅读一些关于css
的内容订单详情之间的边界: 如果你想隐藏它们使用:
.woocommerce-page table.shop_table tfoot th {
border-top: none;}
如果你只改变颜色使用:
.woocommerce-page table.shop_table tfoot th {
border-top: 1px solid #968152;}
或用你想要的颜色替换#968152