Newsy Layout
- Posted by Patrick Valmont (3) Offline
Hi Support,
I recently purchased Minifrontpage pro and it works fine. However, I was surprised to find out that newsy layout does not have any features. It's static. Is there a way to add functionality so that newsy scrolls article up / down ?
Thanks
3 years 4 months ago #1
by Patrick Valmont
I recently purchased Minifrontpage pro and it works fine. However, I was surprised to find out that newsy layout does not have any features. It's static. Is there a way to add functionality so that newsy scrolls article up / down ?
Thanks
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5261) Offline
Hi, can you be more detail about it? What do you mean by 'it does not have any features' and scroll functionality?
3 years 4 months ago #2
by TemplatePlazza
Please Log in or Create an account to join the conversation.
- Posted by Patrick Valmont (3) Offline
Hi support,
I am testing on localhost for now so I don’t have a prod site. Why not add this as a feature in the module so everyone can benefit ? Would be awesome. Just a thought.
Thanks!
3 years 4 months ago #3
by Patrick Valmont
I am testing on localhost for now so I don’t have a prod site. Why not add this as a feature in the module so everyone can benefit ? Would be awesome. Just a thought.
Thanks!
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5261) Offline
- Posted by Patrick Valmont (3) Offline
Hi Support, any updates on extending newsy so that It can have the functionality as requested ? Srolling up/down with timer etc ? This would be amazing really.
Thanks!
3 years 3 months ago #5
by Patrick Valmont
Thanks!
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5261) Offline
Hi sorry we can't add this function as a new feature as this will add other js thing to maintain and also available js libs for this function are 10 years old on average.
But you can do this your self by doing template override.
You just need to add an id to the right container just like I did in the previous video, then declare css and js in the top of the override file just like :
If you don't know to add template override you can follow this vide
3 years 3 months ago #6
by TemplatePlazza
But you can do this your self by doing template override.
You just need to add an id to the right container just like I did in the previous video, then declare css and js in the top of the override file just like :
$doc->addStyleDeclaration("
#rightcont {
height:320px!important;
overflow:hidden!important;
}
");
$extrajs ="
JAVASCRIPT GOES HERE
";
$doc->addScriptDeclaration( $extrajs );
If you don't know to add template override you can follow this vide
Please Log in or Create an account to join the conversation.