更改标题背景图像的宽度

时间:2016-04-29 05:02:47

标签: css wordpress css3

这是我的网站。 http://hollywoodpress.biz/its-you-zayn-malik/我想更改标题背景图片的宽度。我从http://placeimg.com/这个网站获取图像,每次更新页面时,我都会得到不同的图像。但图像大小设置为1000 * 400。所以图像水平重复。我想拉伸图像。我怎样才能做到这一点?请帮我。感谢。

1 个答案:

答案 0 :(得分:0)

像这样更改代码,

    LinearLayout lLayout = (LinearLayout) findViewById(R.id.Layout6);
    RelativeLayout.LayoutParams relativeParas = (RelativeLayout.LayoutParams) lLayout.getLayoutParams();
    relativeParas.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
    lLayout.setLayoutParams(relativeParas);

.gdlr-page-title-wrapper {
    background-size: contain;
    background-image: url('http://placeimg.com/1000/400/tech/sepia');
    background-repeat: no-repeat;
    background-position: top center;
}