Stretch the elements

Posted in: Newspaper
Post count: 8

Hi, how I can stretch the elements of the theme to cover the entire width of the page? Such as the slideshow of the home page or the main images of the posts.

Thank you very much

Post count: 6535

HI

Theme’s blocks were designed to be displayed on in a container by 1068px. To achieve a full width layout are required many customizations in theme’s core files, basically all layout must be rewritten.
This is a very complex task which involve lots of customizations and also time to be completed. We can’t offer customization services at the moment so if you really need this and you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.

Thanks for your understanding!

Post count: 8

ok, thank you, one more question, is there any css command that can refer to the whole theme and used to modify the overall opacity?

Post count: 6535

Hi

Are you referring at image’s opacity. If so then yopu can try this code and change the value as you want: http://screencast.com/t/enVDs19acqnp

.td-animation-stack-type1-2 {
opacity: 0.7 !important;
}

Hope this helps!
Thanks!

Post count: 8

Thanks, it will serve me, but I was referring to the white box that encompasses the whole theme, which is seen in the image I attached

Thanks!!

Post count: 6535

HI

I can’t find any image in this thread so please provide a link with it and maybe I can help.
Thanks!

Post count: 8

Hi, sorry, attached link, I mean the general white box

http://s25.postimg.org/94blhr6bj/white_box.png

Thanks!!!

Post count: 6535

HI

Try this css: http://screencast.com/t/0TSzrivVH

.td-main-page-wrap {
opacity: 0.7;
}

Thanks!

Post count: 8

Hi!

Thanks is there any way that the opacity is just the white box, but it does not affect items that are above (images, texts, etc)?

Thanks!

Post count: 6535

HI

Yes, you ca try a different approach by changing background transparency, try this code and check how it goes:

.td-main-content-wrap {
background-color: rgba(255, 255, 255, 0.7);
}

Thanks!

Post count: 8

Perfect!! Many thanks! It works great

Thanks

Post count: 8

Hi,

one last question, I get the transparency that I want in the main window and in the pages that I have (about me, contact, etc.) But posts this transparency does not apply, do I have to refer to another element css ?

Thanks!

Post count: 6535

HI

Replace the above code with this one, it should work fine on posts, I’ve also targeted few more elements in case is neded:

.td-main-content-wrap, .td-banner-wrap-full, .td-banner-bg, .td-category-header {
background-color: rgba(255, 255, 255, 0.7)!important;
}
.post {
background-color: rgba(255, 255, 255, 0);
}

Thanks!

Post count: 8

Thank you so much, was what I needed.

Thank you for answering so quickly!

Viewing 14 posts - 1 through 14 (of 14 total)
The forum ‘Newspaper’ is closed to new topics and replies.