Hi there,
Can you help me? http://robo2day.com/wordpress/?page_id=836
I would like to have a list with only the titles and aligned left.
And idealy a smaller font…
Thx again,
OJ
HI
Try this css in theme panel > custom code > custom css: http://screencast.com/t/926OXnlHKRl
.td_block_10 .td_module_9 .entry-title{
text-align: left;
font-size: 15px
}
Hope this helps!
Thanks!
excellent. Learning everyday! Thank you.
Can you also explain how i can remove the author name&date and how to decrease the size of the ‘box’? Idea is that the result looks like a plain list…
i tried this (custom css code) but the 2nd part doesnt seem to work…
.td_block_10 .td_module_9 .entry-title{
text-align: left;
font-size: 14px
}
.td_block_10 .td_module_9 .td-module-meta-info{
display:none!important;
}
Just tried this:
.td_block_10 .td_module_9 .entry-title{
text-align: left;
font-size: 14px
}
.td_block_10 .td_module_9 .td-post-author-name, .td_block_10 .td_module_9 .td-post-author-name span, .td_block_10 .td_module_9 .td-module-comments{
display:none!important;
}
.td_block_10 .td_module_9 .td-post-date, .td_block_10 .td_module_9 .td-post-date span, .td_block_10 .td_module_9 .td-module-comments{
display:none!important;
}
Probably not so neat coding, but it works.
One remaining question though: How can I make the boxes smaller and how to remove the thin dividing lines between thes? So that distance between the lines (posts) becomes much smaller and looks more like a standard list?
-
This reply was modified 9 years by
itsoeds.
HI
Try this code: http://screencast.com/t/xev4GUa7Vdjh
.td_block_10 .td_module_9 .item-details {
margin-bottom: 0px;
padding-bottom: 0;
}
.td_module_9{
margin-top: 0;
}
.td_module_9 .item-details{
border-bottom: 0;
}
Thanks!
One more question (Im happy with the solution but i’m hoping for a stretch…):
Is it possible to insert a HTML LIST BULLET or a small picture (e.g. the highlighted image in the post)?
And how should i do that?
something like this
etc
-
This reply was modified 9 years by
itsoeds.
HI
You can use a raw html to insert a list on page: http://screencast.com/t/wdTRfuV3F For more detail please check this link: http://www.w3schools.com/html/html_lists.asp
Thanks!
I would like to have the bullet (LI) automatically before each post.
See http://robo2day.com/wordpress/?page_id=836 halfway the page.
How can i do that?
Thx
Hi
The bullets are available only for lists and posts displayed in blocks are not in a list. You will need some customization in theme’s code to achieve a similar rezult. We can’t offer customization services at the moment so if you really this or you’re not aware of the steps you need to take in this regard my advice is to look for someone who can help you with implementation or hire a freelancer to do it for you.
Thanks!