CSS Changes

Posted in: Newspaper
Post count: 45

(1)
Can I make the image overlay behind the text darker?
Posts, Style 7
Example Page:
https://cubanarts.xyz/2018/02/01/exploring-the-in-between-spaces-of-being-cuban/
CSS to target the background?

(2)
The Author/Date box on post pages doesn’t look good.
The padding is off?
You can see this on a post page:
https://cubanarts.xyz/2017/06/06/moving-things-cuban-video-art-in-the-us-southwest/
It should have equal padding around it like the following page:
https://cubanarts.xyz/
Is there basic CSS to correct this?

(3)
Can I match/align the tag, title and date area in the top header image to the content width on standard pages?
The top row (main image) is set to ‘Stretch row and content’.
The content below is set to ‘Stretch row’.
I’d like the title info to stay aligned with the content below as it does on ‘post’ pages.
Example Page:
https://cubanarts.xyz/

(4)
Is there any way to display the title info (heading, subheading and author/date) above or below a full-width header image?
Example:
https://cubanarts.xyz/2018/02/01/exploring-the-in-between-spaces-of-being-cuban/

Thank You!

Post count: 20688

Hi,

1. There is a gradient there – https://www.screencast.com/t/R7rLNFv30C
Either make modifications in the theme stylesheet to it
https://www.screencast.com/t/hSs3vZw7N
Or use a code to override it – https://www.screencast.com/t/Wlhdbkbjw6Rf
This is used in the example, make modifications to it if necessary, then enter it in Theme panel->Custom CSS code section
https://pastebin.com/7anw3Uyg

2. There is a margin right set for the date on post template 7
https://www.screencast.com/t/MiBnB8Zghp
You could remove that with a code like this

.td-post-template-7 .td-post-title .td-post-date {
margin-right: 0;
}

3. So maybe something like this – https://www.screencast.com/t/yavln0zMTbvv

.td_block_big_grid_fl_1 .td-big-grid-post .td-meta-align {
max-width: 1068px;
margin-left:auto;
margin-right:auto;
}

4. Maybe through code modifications in the post template files, for post template 7
https://www.screencast.com/t/ldqJsyiGiGLU
You could try to change the structure of the post template, and make tests.

Thanks

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