Hi,
I am working on my side and cannot figure out how to make the slider automatically cycle through posts. Could you please advise on how to do this?
Also, on the template… How do I remove the very top menu (The dark one) I have tried everything and cant figure it out. The best i can do is get it to show “click here to create menu” but I can’t remove it completely?
site is http://www.irkitated.com
Thanks
-
This topic was modified 12 years by
irkitated.
hi,
for autoslide check out this thread : https://forum.tagdiv.com/topic/automatic-transition-big-slide-articles/#post-9066
for top menu : http://screencast.com/t/PvJNJ70EQQol
Thanks for you message.
Radu A.
The menu was a simple fix, thanks for that. I am having trouble with the autoslide though. The only options I have are these http://img226.imagevenue.com/img.php?image=695834216_image1_122_573lo.jpg
Hi,
Add this code 'autoplay' => '2', like here: http://screencast.com/t/E5m5xEoCONqp
Now is set on 2 seconds
Thanks!
Thanks but that still isn’t working. I put that in the correct place and updated the file. The code i have is
if (empty($paged) or $paged < 2) {
echo td_page_generator::wrap_no_row_with_bg_start();
if (empty($paged) or $paged < 2) { //show this only on the first page
?>
<div class=”row-fluid”>
<div class=”span12 column_container”>
<?php
echo td_global_blocks::get_instance(‘td_slide_big’)->render(array(
‘sort’ => ‘featured’,
‘hide_title’ => ‘hide_title’,
‘force_columns’ => 3,
‘autoplay’ => ‘2’,
‘limit’ => $td_slide_limit
));
?>
</div>
</div>
<?php
}
echo td_page_generator::wrap_no_row_with_bg_end();