Customizing blocks on front page

Posted in: Newspaper
Post count: 26

I would like you to ask you some questions:

1. How I can change the white background color on boxed layout homepage with background: http://themeforest.net/item/newspaper/full_screen_preview/5489609 (the part between footer and big slider)?

2. How I can change the gray background color on the footer of the same page?

3. On homepage how to disable the hyperlink on block titles, make entire background of .block-title the same color and change the color and padding of ajax arrows?

4. How to make the category article display view not to show images, eg as block 10 that displays only the titles?

5. How to make a specific block 10 on homepage to have overflow-y and max witdh?

6. Is there a way to make a featured post on big slider sticky, so to stay there even if it is very old?

7. What is the minimum resolution that a featured image should have to fit on every block and slider?

Thanks a lot

Post count: 7909

Hi,

1. Please try this custom css for background color: http://screencast.com/t/3Nd1pdmNKB

.td-page-wrap{
background-color: rgba(42, 172, 203, 0.38) !important;
}

2. I think that you refer to this shadow: http://screencast.com/t/w3vHbM9pk so please try this css code in Theme Panel > Custom Css: http://screencast.com/t/K7V92H9tCC0

.td-full-layout .td-footer-wrap{
background: none !important;
}

3. Please remove this code from td_block.php: http://screencast.com/t/MCSkzGbWD
And also add this css to remove underline when you hover: http://screencast.com/t/ztNDEiKt

.td_block_wrap .block-title a:hover{
text-decoration: none !important;
cursor: default;
}

Also for background I think that you want something like this: https://forum.tagdiv.com/topic/background-color-for-title-of-block-or-widget/
For the arrows you can use a background image to replace them, as the arrows are images and you cannot change the color: http://screencast.com/t/Xsbs6PmTqZ5

.td_ajax-prev-page, .td-ajax-next-page{
background-color: blue;
}

4. You can try customize a module for example comment this code in module_search.php: http://screencast.com/t/jwd5LedNCV use it for category page from Theme Panel: http://screencast.com/t/3OW8Hp2l8
And use this custom css: http://screencast.com/t/eUkykVx7QCe
Or you can create a new module: https://forum.tagdiv.com/topic/has-anyone-successfully-made-custom-blocks-that-show-up-in-visual-composer/#post-10478

5. You can add an extra class to the column and target block 10 using inspector tool.

6. Unfortunately theme doesn’t an option for this and you will need custom work for this. You can try to follow this topic but this will affect all blocks: https://forum.tagdiv.com/topic/how-to-sticky-post-on-big-silider/#post-12938

7. WordPress has some default cropping sizes http://screencast.com/t/ifk8fE1HYk and we added more sizes inside the functions.php file – http://screencast.com/t/2QaaubXnqxL
Those sizes are used on modules and sliders (including the Big Slider), you can read here about the thumbs used on modules and sliders https://forum.tagdiv.com/modules-and-blocks/ It isn’t an ideal image size so it can look good on all thumbs.

Thanks!

Post count: 26

Thanks a lot for the immediate answer. I have not checked all solutions, but I will soon. Thank you very much.

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