Hello johnmiao,
1)I suppose that you want that your text title to fit in one row, right? You will have to decrease the font-size from your Theme panel for Post Title, like this -> http://screencast.com/t/5tgZRrXvr
2)For achieving that, you will have to use a bit of CSS code to do that. Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-post-title:before {
content:'\2022';
float:left;
display:inline-block!important;
line-height: 50px;
margin-right:7px;
font-size:30px;
}
The result you should see here -> http://screencast.com/t/ba6HEngFsm
Thanks for your understanding!
Thank you for the replying.
But what I am talking about is for the Block setting in the front page.
Question 1:
I want to make ALL title of block 17 and block 9 be forced one row, not only for certain items


Question 2:
I would like to make the bullet icon on the Block 17 and Block 9 ONLY.

Hello johnmiao,
Please try the following code and place it in Theme panel->Custom CSS area.
The code is ->
.td_block_9 .td-module-title:before, .td_block_17 .td-module-title:before {
content:'\2022';
float:left;
display:inline-block!important;
line-height: 50px;
margin-right:7px;
font-size:30px;
}
Please notice that this type of feature could be set only from Excerpts, like this -> http://screencast.com/t/ErpFUSB4UvkE For more information for this, please check our documentation here -> https://forum.tagdiv.com/excerpts-introduction/
Thanks.