Hello guys,
Very good job with this theme.
I have a question for you:
Is their a way to change the black gradient that appears in the pictures from the big grid module?
i Know that you used so that the text can be read but i don’t really like it.
Maybe a black transparent stripe like you have in your other theme: NEWS?
Can i do that? Can you help me?
Thank you
Check this post. They cleared that up for me through their answers.
https://forum.tagdiv.com/topic/gradient-shading-in-block-pics/
Hi,
Thanks @fixthisbuildthat
@adi_mitran It can be change only with css code, please follow that solution.
Thanks!
Hello,
i don’t want to create a gradient anymore. I would like to have a transparent black stripe instead in the elements from the big grid and everywhere else where i have the same effects.
Also how can i remove the authore name from the modules that have the title over the picture, like the big grid module. I just want to have the title there.
Thank you.
Hi,
Please try this custom css for Big Grid: http://screencast.com/t/aHPPwbQZ
.td-image-gradient:before{
background: transparent;
}
.td-module-thumb a:last-child:before{
background: transparent !important;
}
Also you can add a background to the title: http://screencast.com/t/QFsFaBh7IFL
.td-big-grid-post .entry-title a{
background-color: rgba(0, 0, 0, 0.38);
}
Please use Chrome and inspect blocks/modules that you want to change and add the css in Theme Panel > Custom Css.
You can edit module files that are used on blocks and comment or delete author line. For example this module(td_module_mx5.php) is used by the Big Grid: http://screencast.com/t/Nw3AfazOS41
Result: http://screencast.com/t/I5j2Hs2O
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
Thank you for your answers but:
1. You didn’t understand me with the black stripe.
I want a black transparent stripe from the left margin of the picture to the right margin of the picture, and the height of the stripe should start from the bottom margin of the picture and it should end just above the title.
As i told you, i would like to look like in your other theme called NEWS.
2. I found the big grid php file but when i use “//” to comment the lines get_author and get_date nothing happens. Just that in front end the line containing the author and date moves about 5px to the right.
On the other hand if i delete these 2 fields it works.
Sorry guys,
ignore the second point in my previous post. I was putting the comment symbol before “<?php” and that’s why it didn’t worked
Hi,
I guess that this is what you need: http://screencast.com/t/s4BjRCTHe0
Please add this code in Theme Panel > Custom Css with the code from above that remove gradient:
.td-big-grid-meta {
background-color: rgba(0, 0, 0, 0.60);
}
Thanks!
Hello,
Yes something like that, but i want the stripe to be a little bit higher that the text. Now it’s as high as the text and it looks ugly.
thank you.
Hi,
Please add some top-padding like this: http://screencast.com/t/np5K8BsaWF
.td-big-grid-meta {
background-color: rgba(0, 0, 0, 0.60);
padding: 5px 20px 14px 20px;
}
Thanks!
