Forum Replies Created

Viewing 30 posts - 25,441 through 25,470 (of 34,364 total)
  • Author
    Posts
  • Hi,
    Glad we could help, we will leave this open should you find the same error again in your audit.

    Best regards,
    Mike

    in reply to: Question About Adding a Child Theme #991799

    Hi,
    Ok, I got your child theme working correctly now, with the theme settings and the custom functions.
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Typically this is caused by unclosed html tags in the page, but in this case I was unable to find any. Do you have any other pages performing like this? I could take a look at them too.

    Best regards,
    Mike

    in reply to: Add social and a button before burger #991795

    Hi,
    I took a look at your link above in the Private Content area, but the menu, and button doesn’t look like the same setup as in your image. Please link to the live site so we see the current placement.

    Best regards,
    Mike

    in reply to: Layerslider white line on left #991794

    Hi,
    If you can change the color of the line by changing the main background color, wouldn’t changing it to black solve? Or you could try going to your slider in the layerslider and set a black background color.
    2018-07-30_220102

    Best regards,
    Mike

    in reply to: Embedding Comodo Seal in Footer #991791

    Hi,
    We could assist with some custom functions to do this, or you could use the plugin Header and Footer Scripts which will do the same and allow you to easily manage it in the future.
    If you would like us to assist, please check the login in password above as I was unable to login.

    Best regards,
    Mike

    Hi,
    Unfortunately there in not. Perhaps there is a menu plugin that can do this with shortcode that we can use in the same function above.

    Best regards,
    Mike

    Hi,
    I tested the post by Enabling the Avia Layout Builder Debugger and checking the parser for layout errors (broken code) but found none, I then copied the post to my localhost which behaved the same way, unable to save & bold text.
    This leads me to believe the elements have a unrecoverable error, however I was able to copy the page elements to a new post, one at a time to rebuild your post. Please see link in Private Content area.
    The post is set to “pending” now so you can review and make any changes to it, I recommend viewing the two side by side to compare, and once your happy delete to old one and publish the new one.
    I hope this is acceptable.

    Best regards,
    Mike

    Hi,
    Sorry the sub-menu is a full width element, but you can have it only show on pages:

    add_action('ava_after_main_title', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	if(is_page()) {
    		echo do_shortcode("[av_submenu which_menu='center' menu='25' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu=''][av_submenu_item title='Menu Item 1'][av_submenu_item title='Menu Item 2'] [av_submenu_item title='Menu Item 3']
    [/av_submenu]");
    	}
    }

    or even just some pages by creating an array of their ID’s
    I tried many of the hooks to see if I could find another place to put the sub-menu, but most don’t work without braking the page, except before the footer worked with and without the sidebar. Probably no help for you though.

    	add_action('ava_before_footer', 'ava_before_footer_mod');
    	function ava_before_footer_mod() {
    			echo do_shortcode("[av_submenu which_menu='center' menu='25' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu=''][av_submenu_item title='Menu Item 1'][av_submenu_item title='Menu Item 2'] [av_submenu_item title='Menu Item 3']
    	[/av_submenu]");
    	}

    Best regards,
    Mike

    in reply to: How To Remove Avia Builder #991351

    Hi,
    Sorry you can’t completely remove the advanced layout builder as it is built into the theme, but you can hide the ALB button and editor with this code to the end of your functions.php file in Appearance > Editor:

    	function remove_alb() { 
    		?>
    		<style>#avia_builder { display: none !important;  } #avia-builder-button { display: none !important;  }</style>
    		<?php
    		} 
    		add_action( 'init', 'remove_alb');

    Best regards,
    Mike

    Hey Josiah,
    You can add your sub-menu to all pages and posts by adding this code to the end of your functions.php file in Appearance > Editor:

    	add_action('ava_after_main_title', 'ava_after_main_title_mod');
    	function ava_after_main_title_mod() {
    			echo do_shortcode("[av_submenu which_menu='center' menu='25' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu=''][av_submenu_item title='Menu Item 1'][av_submenu_item title='Menu Item 2'] [av_submenu_item title='Menu Item 3']
    	[/av_submenu]");
    	}

    Try replacing the shortcode with yours.

    Best regards,
    Mike

    Hi,
    Thanks for the login, I see that your page has two strong tags right before the content that covers the whole page, yet looking in the layout builder I can not find them.
    I also see that you have a few editor addons such as TinyMCE Advanced which I have seen cause issues in the past, but you said that you tried disabling the plugins. I also see Autoptimize is also serving pages for logged in users, and I was unable to clear the cache of 317mb.

    I did find that I could override the strong tag for the page with this code in your WordPress > Customize > Additional CSS:

    #top.postid-22709 .avia_textblock  p {font-weight: 300 !important; }

    and since I checked 4 other pages that don’t have this issue, perhaps this will help you.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Magazine element tooltip #991330

    Hi,
    Please edit: \enfold\config-templatebuilder\avia-shortcodes\magazine\magazine.php
    and go to line 632, look for:

    $titleAttr		= "title='".__('Link to:','avia_framework')." ".the_title_attribute(array('echo' => 0, 'post' => $entry->ID))."'";

    and remove the

    Link to:

    in the line.

    Best regards,
    Mike

    in reply to: Full screen slider / image with footer #991328

    Hi,
    Yes it will.
    Please clear your browser cache and check after you add it.

    Best regards,
    Mike

    in reply to: Social Share Buttons+ Centering Text in Sidebar #991327

    Hey better_in_violet,
    Your social icons are missing the icon, which in the code looks like a little square. Here is a example:

    <a target="_blank" href="http://twitter.com" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Twitter"><span class="avia_hidden_link_text">Twitter</span></a>

    look for:

    data-av_icon=""

    that is the actual icon, or font.
    I recreated them for you, and I added this code to your Quick CSS to hide the border between each one:

    border-color: transparent;

    Then to center them I added this css to your WordPress > Customize > Additional CSS:

    #text-2.widget .social_bookmarks li {
    margin-left: 9px !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Enfold header behaves weired #991324

    Hi,
    Please try changing the subtext font-size to: 12px
    like this:

    @media only screen and (max-width: 767px) { 
    .logo h1 {
    font-size: 14px !important;
    margin-bottom: 0px !important;
    padding-top: 10px !important;
    }
    #top .logo .subtext {
        font-size: 12px !important; 
        width: 70% !important; 
        left: 32px !important; 
        top: 20px !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Can't show show create date below title in a blog post #991323

    Hi,
    ops, your right, please replace the css with this:

    #top.single-post span.post-meta-infos {
    margin-top: 0px !important; 
    padding-top: 0px !important;
    float: none !important;
    }
    #top.single-post span.av-vertical-delimiter {
    display: none !important;
    }

    Best regards,
    Mike

    in reply to: Main Menu problem #991318

    Hi,
    I added this css to your Enfold Theme Options > General Styling > Quick CSS field:

    #top.home #menu-item-746 > a > .avia-menu-fx {
        opacity: 0 !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Create clickable background image for entry page #991315

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Enfold header behaves weired #991313

    Hi,
    I added this css to your Quick CSS:

    @media only screen and (max-width: 767px) { 
    .logo h1 {
    font-size: 14px !important;
    margin-bottom: 0px !important;
    padding-top: 10px !important;
    }
    #top .logo .subtext {
        font-size: 14px !important; 
        width: 70% !important; 
        left: 32px !important; 
        top: 20px !important; 
    }
    }

    the after clearing my browser cache, see results in screenshot in Private Content area.
    Please try clearing your browser cache a few times.

    Best regards,
    Mike

    in reply to: Create clickable background image for entry page #991285

    Hi,
    I tried to recreate your example, and found that modifying it a little worked.
    First I added a empty color section with 100% browser height, and gave it the ID “hintergrund”
    Then I added a code block element in the color section with a link and a class “takeover”

    <a class="takeover" href="http://google.com/"></a>

    Then I added is css:

    #hintergrund { 
    background: url('https://127.0.0.1/2017demo1/wp-content/uploads/2015/07/portfolio-4-3.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }
    
    .takeover { 
        position: absolute; 
        display: block; 
        width: 100%; 
        height: 100%; 
        z-index: 1; 
        top:0;
        cursor: pointer; 
    }

    please note the “top:0;” it forced the link cover the top of the color section, where it had been down about half way.
    The background image was visible and the link worked.
    Here is some more info on the subject: Turn an Entire DIV into a Clickable Link

    Best regards,
    Mike

    in reply to: Enfold header behaves weired #991267

    Hey fabienneBESD,
    Thanks for the images, what I see is your text logo & sub-text is too big for mobile, I suggest using a media query in your css to make it a little smaller for mobile only.
    You have two options, first is to make both logo & sub-text smaller to fit, but both would be very small.
    Second, hide the sub-text on mobile & make the logo slightly smaller, but it would still look large.
    The only issue I for see is the sub-text is inside the H1 and link of the logo class, so I may want to add another class to the title text to target it better, depending on your choice.

    Please let us know if either of these options will work for you and include a admin login so we can assist.

    Best regards,
    Mike

    in reply to: Create clickable background image for entry page #991174

    Hey Michael,
    I’m not sure that is going to work for you, at least the way I’m reading it. Here is another option: Apply link to column box where a link is inside the container and the javascript forces it to apply to the whole div.

    Best regards,
    Mike

    in reply to: how to change the fontcolor for the pagetitel? #991157

    Hey Karl,
    Do you mean the color of the text in the page title, or the background color for the page title?
    We can assist with some css, please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    Hey HexaG,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Turn off mobile view for tables only #991155

    Hey millend,
    Please include the url to the table in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Top Bar Padding #991148

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: 2 columns row for mobile devices #991146

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Add nofollow attribute to external links in buttons #991143

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Layerslider white line on left #991133

    Hi,
    Thanks for the details, I do see it in your screenshot now. But I couldn’t recreate it in my browsers at full screen. I also try dragging my browser across two screens to make in very large.
    I checked in Chrome, Firefox, Edge & IE11.
    But on a hunch I’m going to suggest this css in your WordPress > Customize > Additional CSS, because it will take precedence.

    #top.home .avia-layerslider .ls-wp-container {
        margin: 0px !important
    }
    #top.home .ls-wp-container,#top.home .ls-wrapper.ls-bg-wrap {
    background-color: #000 !important;
    }

    Best regards,
    Mike

Viewing 30 posts - 25,441 through 25,470 (of 34,364 total)