hi guy,
I think buttons in smart list are a little hidden. how can I make them bigger or stick out in some way so people get it.
Thanks in a advance!
Hi,
You can try this custom css and change the values how you need: http://screencast.com/t/K5S3GVfB6ab
.td_smart_list_3 .td-icon-left, .td_smart_list_3 .td-icon-right{
min-width: 100px;
height: 35px;
}
.td_smart_list_3 .td-sml3-top-controls .td-icon-right, .td_smart_list_3 .td-sml3-bottom-controls .td-icon-right{
padding: 6px 10px 2px 25px;
}
.td_smart_list_3 .td-sml3-top-controls .td-icon-left, .td_smart_list_3 .td-sml3-bottom-controls .td-icon-left{
padding: 6px 25px 2px 10px;
}
Thanks!
Thanks a lot, how cna i make fornt and sympbol bigger as well?
Hi,
Please try this custom css for that: http://screencast.com/t/LfCVnagYMlqv
.td_smart_list_3 .td-sml3-top-controls .td-sml3-control-text, .td_smart_list_3 .td-sml3-bottom-controls .td-sml3-control-text{
font-size: 20px;
}
.td_smart_list_3 [class^="td-icon-"]:before, [class*=" td-icon-"]:before{
font-size: 30px;
}
Thanks!
it worked too, one last question. If i wanted the color to be a dark pink and light pink in mouse over. would that be possible too?
Hi,
Please try this custom css for hover background: http://screencast.com/t/ebcM6KTvQb
.td_smart_list_3 .td-sml3-top-controls i:hover{
background-color: rgba(255, 134, 219, 1);
}
Thanks!
hi there and thanks!!!
No what i mean is that the button color is a dark pink then mouse is not around.
but when mouse hovers it becomes a brighter pink. also please include code for the lower buttons as well.
Thanks again!
Hi,
Please try this custom css background color: http://screencast.com/t/LmsCdUEsNZMn
.td_smart_list_3 .td-icon-left, .td_smart_list_3 .td-icon-right{
background-color: #D3249C;
}
Thanks!