Viewing 30 posts - 1 through 30 (of 42 total)
  • Author
    Posts
  • #1116053

    Dear Team

    I’m facing some trouble to download the page Consulting.
    After downloading the xml. it looks completely different.
    Need help for set-up page.

    Thanks!

    #1116213

    Hey 751187,

    Do you mean that you can’t import the consulting demo? If so then please post admin login details in private so that we can have a closer look.

    Best regards,
    Rikard

    #1117905
    This reply has been marked as private.
    #1117970

    Hi Shpend,

    Thanks for the login details, I think you forgot to include the URL to your site though?

    Best regards,
    Rikard

    #1118047
    This reply has been marked as private.
    #1118172

    Hi 751187,

    Can you please share the login link to your WordPress dashboard?

    Best regards,
    Victoria

    #1118223
    This reply has been marked as private.
    #1118280

    Hi Shpend,

    Thank you, I am seeing the map on my end, what is the issue with it? Or did you get it working?

    Best regards,
    Victoria

    #1118483
    This reply has been marked as private.
    #1118541

    Hi,
    I made a template of your page and then created a new test page. I then replaced the full-width slider with the full-screen slider, and this seems to behave as you described.
    Please see the link in the Private Content area.

    Best regards,
    Mike

    #1118569
    This reply has been marked as private.
    #1118673

    Hi,

    Thanks for the update, you haven’t added an API key under Enfold->Google Services. That is likely why it’s not working. Please refer to this: http://kriesi.at/documentation/enfold/how-to-register-a-google-maps-api-key/

    Best regards,
    Rikard

    #1120432
    This reply has been marked as private.
    #1120451

    Hi,
    I assume that you mean that this is solved and we can close it, correct?

    Best regards,
    Mike

    #1123136
    This reply has been marked as private.
    #1123380

    Hi,
    Thanks for the login, I added your social icons to your footer via a HTML widget by copying your header social icons. Please review the code in the widget.
    To have the icons show correctly, I included this css in your Enfold Theme Options > General Styling > Quick CSS field:

    #custom_html-2 .social_bookmarks li {
        float: none !important;
        display: inline !important; 
    }

    To remove the transform scale from the image, I added this css your your Quick CSS.

    #top.home .avia-image-container.av-hover-grow img:hover,#top.home .avia-image-container.av-hover-grow .avia-image-overlay-wrap:hover {
        -webkit-transform: scale(1) !important; 
        transform: scale(1) !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    #1203003
    This reply has been marked as private.
    #1203029

    Hi,
    That is accomplished with css, for the layout you described above you probably find that if the middle image and text were flipped the whole page would be fine. So if you add a custom ID to this section and use the following css the image and text should be flipped. If not, then please link to the section so we can modify.

    @media only screen and (max-width: 767px)  {
    #custom-id .entry-content-wrapper {
        display: flex !important;
        flex-direction: column-reverse;
      }
    }

    Best regards,
    Mike

    #1203093
    This reply has been marked as private.
    #1203109

    Hi,
    Sure, please check the admin login, it’s not working for me.

    Best regards,
    Mike

    #1203111
    This reply has been marked as private.
    #1203116

    Hi,
    Ok, Ordering Flex Items is what you are trying to do, there are a couple of different “flex” options depending on the elements and their order. This guide might help visualize how flex works. Here is a video called: Change the order of columns for mobile devices on WordPress with CSS

    But if you include the URL to the page in question I can offer advice on getting this to work for you.

    Best regards,
    Mike

    #1203121
    This reply has been marked as private.
    #1203152

    Hi,
    Glad to hear you have it sorted out, shall we close this then?

    Best regards,
    Mike

    #1203175
    This reply has been marked as private.
    #1203981

    Hi,
    Typically, you would reduce the padding or margin for the text, such as this:

    #top.home .flex_cell.av_one_half {
    	padding-top: 10px !important; 
    	padding-bottom: 10px !important; 
    }

    Here is what the padding around the text looks like when it’s changed from 50px to 10px:
    2020-04-15_075451.png

    Best regards,
    Mike

    #1204154
    This reply has been marked as private.
    #1204405

    Hi,
    Thank you for the feedback, I now see that the css is added via javascript, so this script should work.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_cell_padding(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      	var width = $(window).width()
      	if ((width <= 768)) {
      $( '#top.home .av-layout-grid-container' ).each(function() {
      $( this ).find( '.flex_cell.av_one_half' ).not('.av-zero-padding').css({ 'padding-top': '10px','padding-bottom': '10px'});
      });
      	};
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_cell_padding');

    This will only work on your home page if you want it to work on every page, remove #top.home from the code.

    Best regards,
    Mike

    #1236785
    This reply has been marked as private.
    #1236967

    Hi,
    1: for your footer you can try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #main > div.container_wrap {
      min-height: 80vh !important; 
      }

    otherwise please link to an example page for us to examine.
    2: Please see this thread the second answer says try this: href="skype:live:emailnamewithoutdomain?call">

    Best regards,
    Mike

Viewing 30 posts - 1 through 30 (of 42 total)
  • The topic ‘Downloading page Consulting’ is closed to new replies.