Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #607530

    As you see in my sceenshot, i have only made to buttons to my slide, how do i insert a third button? – I cant get acess to attach more than to buttons….

    See here:

    #608010

    Hi ErikOestergaard,

    No it’s limited to two buttons, but send us a link to your site to see if we can come up with an alternative for you.

    Thanks,
    Rikard

    #608230

    Hello Rikard, i have figuered out that i can live with only two buttons.
    Try look at my picture, and see the underlining for “Teksttroldmand – Foredragsfortæller – Professionel projektmager”
    How do i remove the underlining while still keeping the links?

    #608251

    Hi!

    Please provide the link to the site where we can inspect the element in question.

    Regards,
    Vinay

    #608325

    I cant give a link, its a Local server. IT should be pretty easy to solve for you….
    Some css?

    #608758

    Hi!

    The reason we require the link is because there are more than one way to setup the elements how it looks in the picture.

    The css is as below it will work only if you change the custom_class to the actual class name of the menu elements.

    .custom_class {
    text-decoration:none!important;
    }

    If you cannot find the class name please right click page view source copy all code and past it to pastebin.com and share the link to the pastbin here.

    Regards,
    Vinay

    #608774

    I have a link to pastebin here:

    #608953

    I would like some other things fixed too.
    I have linked given my credentialts as private.

    1. How can you remove date and author from the blog section? Look at the “mer’ Kjer.
    2. Remove the underlining from the text in the slider.

    Looking forward to your reply.

    #609322

    Hey!

    1. Remove date author from blog

    .post-meta-infos {
    display:none!important;
    }

    2. Remove underline text

    #top .avia-caption-content a {
        text-decoration: none!important;
    }

    3. To add a dark overlay behind the slider text

    .slideshow_align_caption {
        background: rgba(0,0,0,.5);
        display: inline-block!important;
        padding: 30px;
        top: 25vh;
        transform: translateY(-50%);
    }

    Regards,
    Vinay

    #609416

    Thanks very much, how do i remove the date and author in the sidebar on the blog?

    – Erik

    #610003

    Hi Erik,

    I couldn’t see any author information in the sidebar on your blog page, did you remove it? You can try the following CSS to hide the date:

    .sidebar .news-time {
    display:none !important;
    }

    Regards,
    Rikard

    #611434

    Thank you very much.
    How do i remove the “blogindlæg” above all blog posts? – I guess its the post category i want removed from the blog overview.

    – Erik

    #611437

    Hi!

    Please add following code to Quick CSS as well

    span.blog-categories {
        display: none!important;
    }

    Regards,
    Yigit

    #611835

    Thank you, that worked.
    How do set the Født, fundraising and Km til KBH counters to be above the number on the frontpage?

    #611838

    Hey!

    Please go to enfold/config-templatebuilder/avia-shortcodes/numbers.php file and find

            		// add blockquotes to the content
            		$output  = '<'.$tags[0].' '.$style.' class="avia-animated-number av-force-default-color avia-color-'.$color.' '.$meta['el_class'].' avia_animate_when_visible" '.$style.'>';
            		$output .= 		'<strong class="heading avia-animated-number-title" '.$font_style.'>';
            		$output .= 		$before.$this->extract_numbers($number).$after;
            		$output .= 		"</strong>";
            		$output .= 		"<div class='avia-animated-number-content' {$font_style2}>";
            		$output .= 		wpautop( ShortcodeHelper::avia_remove_autop( $content ) );
            		$output .= 	'</div></'.$tags[1].'>';

    and change it to

            		// add blockquotes to the content
            		$output  = '<'.$tags[0].' '.$style.' class="avia-animated-number av-force-default-color avia-color-'.$color.' '.$meta['el_class'].' avia_animate_when_visible" '.$style.'>';
            		$output .= 		"<div class='avia-animated-number-content' {$font_style2}>";
            		$output .= 		wpautop( ShortcodeHelper::avia_remove_autop( $content ) );
                            $output .=               "</div>";
            		$output .= 		'<strong class="heading avia-animated-number-title" '.$font_style.'>';
            		$output .= 		$before.$this->extract_numbers($number).$after;
            		$output .= 		"</strong>";
            		$output .= 	'</'.$tags[1].'>';

    If you would like to apply the changes in child theme, please see – http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Regards,
    Yigit

    #615184

    Problem solved. Sorry.

    #615721

    Hi,

    No problem, glad you got it fixed :-)

    Best regards,
    Rikard

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Make a third button on slider.’ is closed to new replies.