I’m designing this website: http://www.latinacorriere.it/ltcwp/ and i would like the Title to appear above the main image of the HP. I used the block 13 with 1 image, but I couldn’t find any block displaying the title above the featured image,
-
This topic was modified 10 years by
giantastic.
Hello ,
There is a block that has titles above images if you want to use it:
http://demo.tagdiv.com/newspaper/block-6/
If not, you can move the title of block 13 to the top with this custom CSS:
.td_module_14 .td-module-meta-info{
bottom: 325px;
}
.td_module_14 .entry-title:after{
border-bottom:none;
}
result:http://screencast.com/t/UAl470fZvQ
Thank you.
Hi, thank you for your support.
I tried your custom CSS and it worked properly, but I’d prefer to have the title outsite (above) the featured image, like in block 6.
The problem with this is that the theme puts the posts in two columns, so I get smaller TITLE and white space on half column.
Is it possible to enlarge the display of block 6, to get all the space filled?
If you want to take a look, you can use the same address http://www.latinacorriere.it/ltcwp/
Thank you,
Gianni Ceccano
Unfortunately, you cannot stretch the content of block 6 to fit the whole container. But you can customize the previous block you had: block 13 to meat the requirements.
Replace the previous code with this one:
.td_block_13 .td-module-meta-info{
bottom: 420px;
}
.td_block_13 .entry-title:after{
border-bottom:none;
}
.td_block_13 .td-module-thumb{
height:390px!important;
margin-bottom:0!important;
margin-top: 200px;
}
.td_block_13 .td_module_wrap {
padding-bottom:0!important;}
The result: http://screencast.com/t/xUa05UqGcW
Thanks.
Hi,
You can use an alternative method. Edit td_module_14 in the theme files and just move the title code above the image: http://screencast.com/t/SCRthLrAq. Then use a bit of css styling to adjust the title:
.td_block_13 .meta-info-container h3{
padding-left:20px
}
.td_module_14 .td-module-meta-info{
bottom: -45px;
}
Now the responsiveness does not get affected.
Thanks.
You rock!
This is definitively better. Thank you for surveying.