if you check my site http://sonsoz.com.tr you can see my arrows at bottom of the blocks and as you can see my red block titles i have a space for the arrows…
Hope i explained what i mean…
I can earn some space by that way…
-
This reply was modified 10 years by
Smanchi.
Hi
To achieve that you need to edit the file corresponding for the block that you want to affect. For example if you want to move the pagination near the title in block 1 the file that must be edited is td_block_1.php: http://screencast.com/t/kVWLZQsk1 After that add this css in theme panel > custom css: http://screencast.com/t/LJEZAccv
.td-next-prev-wrap{
display: inline-block;
}
Thanks!
thnx and how about pagination and pull down filter in same line? what is the css for it?
İ mean title pagination and pull down filter in same line…
if possible…
by the way you guys rock , i really aprreciate fantastic….
-
This reply was modified 10 years by
Smanchi.
Hi
To display the category drop-down filter on the same line with the pagination it’s a bit tricky. First you need to place this line above the one which generate the block title like here: http://screencast.com/t/BbOO6beG9np then add this css in theme panel: custom css: http://screencast.com/t/Qojl70ezALSn
.td-next-prev-wrap{
display: inline-block;
}
.td_block_wrap .block-title{
float: left;
}
.td_block_1 .td_block_inner, .td_block_2 .td_block_inner, .td_block_3 .td_block_inner, .td_block_4 .td_block_inner, .td_block_5 .td_block_inner, .td_block_6 .td_block_inner, .td_block_7 .td_block_inner, .td_block_8 .td_block_inner, .td_block_9 .td_block_inner, .td_block_10 .td_block_inner, .td_block_11 .td_block_inner, .td_block_12 .td_block_inner, .td_block_16 .td_block_inner, .td_top_authors .td_block_inner, .td_block_text_with_title .td_block_inner {
clear: both;
}
Thanks!
oww i got a problem with author block the title seems to be hidden under author, can you check and find a solution for me also the title of social networks seems a bit weird after the code… http://sonsoz.com.tr
Please check and hopefull there is a solution for that 🙂
PS: cant click on facebook
-
This reply was modified 10 years by
Smanchi.
Hi
Use this css to correct this error: http://screencast.com/t/pfWr5ts5XpK
.td_block_authors .block-title, .td_block_social_counter .block-title {
float: none!important;
}
Thanks!