Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #954130

    Hello,
    I’m kind of proud to make the ticker working in the place I wanted it to use.
    Now I’m experience my CSS-skills aren’t enough to put it across the
    full site. I try it with settings in Enfold and with the plugin I installed
    with no success.
    It’s as it should on the left side. The scrolling text however, should be
    possible on the same hight with titel of the ticker and not scrolling under the title element
    only in its size. Perhaps some sections are having an collision, so the ticker is behind white space.
    Hopefuly there is a CSS shortcode for it. Have the admin informations in the private
    content box. You’ll see the scrolling as described here.
    Thank you for your time and service.
    Best regards,
    John

    #955071

    Hey John,

    There is not much room for the title and the sliding text to be on the same line.
    Or I am not really getting what you’re trying to achieve.

    Could you please attach a mockup of what you’re trying to achieve?

    Best regards,
    Victoria

    #963432

    Sure, Victoria,
    I was very busy because of the GDPR changes and configurations.
    May have a look into the private section. Into the green lined area we plan to set a custom scroller.
    If it isn’t possible to set the scroller like this:

    NEWS: MY_custom_News

    Than I want it like this:

    NEWS:
    …………MY_custom_News

    Note: I add the points to have the same space like the above example.

    Thank you for your time an service.

    Best regards,
    John

    #964627

    Hi,

    Thanks for the update. Use the “ava_after_main_container” hook to render the news below the header. Example.

    
    add_action( 'ava_after_main_container', 'ava_after_main_container_mod', 10 );
    function ava_after_main_container_mod() {
    	$output  = '';
    	$output .= do_shortcode("[av_submenu which_menu='' menu='6' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled' av_uid='av-7sgq']
    [av_submenu_item title='Menu Item 1' av_uid='av-1qu' link='' linktarget='no' button_style='']
    [av_submenu_item title='Menu Item 2' av_uid='av-41hu' link='' linktarget='no' button_style='']
    [/av_submenu]";
    	echo $output;
    }
    

    You can replace the $output with the “news” scroller script or html.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.