Customizing the date on module 10

Posted in: Newspaper
Post count: 26

I want the date on module 10 to appears right before the title.
Inside td_module_10.php is the below code:


<div class="td_mod10 td_mod_wrap <?php echo $this->get_no_thumb_class();?>" <?php echo $this->get_item_scope();?>>
<?php //echo $this->get_image('art-thumb');?>
<div class="item-details">
<?php echo $this->get_title(td_util::get_option('tds_mod_10_title_excerpt'));?>
<div class="meta-info">
<?php //echo $this->get_author();?>
<?php echo $this->get_date();?>
<?php //echo $this->get_commentsAndViews();?>
</div>
</div>
<?php echo $this->get_item_scope_meta();?>
</div>

Even if I concatenate the $this->get_date() function before the $this->get_title() function, the date does not change its position.

Is there a way to accomplish such thing?

Also I would like to know if there is a way for td_module_3 (and all others with the small image), if the title is big enough, to go below the image like the image: https://i.imgur.com/1nJmprr.jpg

Thanks a lot

Post count: 7909

Hi,

I’m not sure what you are trying to do. You can show the date above the title: http://screencast.com/t/mmX4rq3L6http://screencast.com/t/niOLd7ECK
If you want to place the date beside the title you need to use custom css: http://screencast.com/t/NZTtYPHrSXL

.td_mod10 .entry-date{
float: left;
}

Unfortunately I don’t think that is possible without custom modification as there is margin left: http://screencast.com/t/Vsk9AMEi

Thanks!

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