在Wordpress上使用CSS重叠两个图像的最有效方法是什么?

时间:2018-07-23 07:16:40

标签: php html css wordpress

这是我的第一个WordPress开发,我只是想知道如何使用CSS使两个图像与封面图像重叠。

感谢所有帮助。预先感谢!

1 个答案:

答案 0 :(得分:0)

css中的一些改动和符号,可以实现设计

 .primary-navigation ul {
        text-align: center;
        list-style: none;
        margin-top: 50px;
        padding-left: 0;
        margin-bottom: -42px; /*Added*/
    }
.primary-navigation a {
        text-align: center;
        display: block;
        text-decoration: none;
        text-transform: uppercase;
        padding: 0px 20px;            /**Changed**/
        font-family: 'Quicksand', sans-serif;
        font-size: 12px;
        background-color: transparent;
        color: white;
        letter-spacing: 3px;
    }

    /*new css*/
    li#menu-item-29 {
        position: relative;
        top: 0;
        z-index: 1;
        vertical-align: middle;
    }