Dear tagDiv team!
Thank you for your continued support and assistance. The site is progressing nicely, but there are still some small things i would like to change
On the different big grids, the mx6 module (big grid small thumb) has the title and the author/date line slightly misalligned (http://lumens.hu/ ), while mx 5 and 11 works fine
And mx 12 (Big Grid 8, small container) doesnt show author and date, even though it’s specified in its php file
Is there any way to solve this issue?
Thank you for your help and support
Hello Atreaer
The author and date from those particular modules were hidden deliberately for aesthetic reasons.
You can adjust the author and date from the mx6 module using this custom css:
.td_module_mx6 .td-post-author-name {
left: -5px;
}
.td_module_mx6 .td-post-author-name span {
margin: 0 -3px 0 2px;
}
Thank you.
Dear Bogdan!
Thank you for the snippet, it worked perfectly!
I understand the aesthetic choice of hiding them -the blocks are quite narrow all right- but just out of curiosity: is there a way to undo this hiding, and show author and date on Mx12?
Thank you again for your support!
Hi,
It actually depends on the big grid used. For example big grid 7 uses module mx12 with the author and date visible but mx6’s author and date hidden: http://demo.tagdiv.com/newspaper/big-grid-7/
It is a simple CSS code applied to hide them. you can override this code with custom CSS for example in big grid 8 which you mentioned:
.td_block_big_grid_8 .td-small-thumb .td-module-meta-info {
display: block!important;
}
Thank you.
-
This reply was modified 10 years by
Bogdan B..
Okay so im using a Big Grid 7 and the dates are not showing on any of the same boxes. I need them show. I have tried a few custom CSS codes and cant get them to show can you please help me with this?
Hello,
Module mx6 which is used by this big grid is set differently. It does not have author and date set to it at all in the theme files. You can add them by editing the module file and adding this code to it:
<?php echo $this->get_author();?>
<?php echo $this->get_date();?>
http://screencast.com/t/ohfkHglf
Then it will show up in your big grid. You can then style it a bit with CSS to give it the correct font size:
.td-big-grid-post.td-small-thumb .td-big-grid-meta {
font-size: 11px;}
result: http://screencast.com/t/aUMO15np5iV0
Thank you!