Help with wordpress twenty fourteen theme

Luckyluk

Banned - Selling via PM
Joined
Jan 10, 2022
Messages
348
Reaction score
130
Anyone can help me how i make the photo of my homepage stretched? this is how it is now
06ReWWv
anyone can help please?
 
Anyone can help me how i make the photo of my homepage stretched? this is how it is now
06ReWWv
anyone can help please?
Not exactly sure where that photo came from or how your homepage is set up

but you could add in a css/html to it

CSS
CSS:
body {
    margin: 0;
    padding: 0;
}
.banner {
    width: 100%;
}

HTML
HTML:
<img class="banner" src="/images/yourpicture.jpg" alt="" />
 
<img class="bg" src="/images/picture.jpg" alt="picture" />

CSS
.bg { width: 100%; }
body { margin: 0; padding: 0; }

try this in css
 
Back
Top