Block 20 + Block 15 Customizing…

Posted in: Newspaper
Post count: 7

Hallo there and many gongrats on your work so far… Recently decided to purchase your theme, which, in my opinion, is by far, one of the most complete ones out there. Was also impressed by the support you provide,
a factor that is usually ignored by developers… Talking about support, brings me to a couple of questions:
1) Block 20. First, if possible to reduce the size of ‘title quote’ and if the ‘quote’ can be extended
to cover all bottom part of image shown. Second, if the ‘category tag’ can be moved to lower left or right corner
of image or even, if possible to be attached on top of the image window (outside the image area) eg. on the right corner.
2) Block 15. The same as above, concerning only the category tag, meaning if it can be attached outside the image area.
Thank you in advance,

Kind regards,

Post count: 1291

Hi,

1) You could change the font size using custom css, ex – http://screencast.com/t/ErWmsISX8mHg
You can also use custom css to change the width of the title container, by default is set to 90% – http://screencast.com/t/OrTa0XYEmhttp://screencast.com/t/XnZu4yonft

.td_block_20 .td_module_14 .entry-title a {
font-size: 18px;
line-height: 20px;
}
.td_block_20 .td_module_14 .td-module-meta-info {
width: 100%;
}
.td_module_14 .td-module-meta-holder {
background-color: rgba(255,255,255, 0.9);
}

The css can be added in Theme Panel -> Custom CSS.

2) You mean to place it bellow the image? try this – http://screencast.com/t/ZdBHqpOALwAC

.td-module-image .td-post-category {
position: relative;
display: inline-block;
}

Thank you!

  • This reply was modified 10 years by Emil G.
Post count: 7

Hallo again and thank you for your swift response. For no.2 I meant, above the image but attached to it and on the right side of it.
thanks again!

Post count: 22421

Hi,
You can move the category titles to the top of the image:
.td-module-image .td-post-category {
position: absolute;
top: -17px;
display: table;

But it will not be so easy to align them to the right. It will need customization as the responsiveness will be broken.
I hope this helps.

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.