pager position
demaker - August 13, 2009 - 17:12
| Project: | Dynamic display block |
| Version: | 6.x-1.0-rc6 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
Thanks for this module.
See attachment for link to my example page.
I'm trying to put the pager between the image and the slide text. Can you help me with this?
Another question: is it possible to put the tinymce editor inside the slide text window (content news item)?
Hoop to hear from you.
Best regards,
Elton Eerkens
| Attachment | Size |
|---|---|
| link.txt | 43 bytes |

#1
#2
Elton, Sorry missed this issue in the issue queue.
You can do this by adjusting the CSS.
Make the pager position absolute, position:absolute
Set top to just under the image, top:496px
Give a z-index of 100 to make the pager in the front, z-index:100
Display the pager as a block, display:block
.number-pager {display:block;
position:absolute;
top:496px;
width:450px;
z-index:100;
}
Make the slider height bigger to fit the slide text, add height:520px;
.slider-inner {height:520px;
}
Set the slide-text below the pager, bottom:-13px
.slide-text-bottom {bottom:-13px;
}
With my fckeditor wysiwyg editor it is automatically added to text areas, I don't know the settings for tinymce.
Hope this helps you further, please let me know.
#3
close issue, 8 weeks without activity.