Viewing 30 results - 83,911 through 83,940 (of 142,726 total)
  • Author
    Search Results
  • #750722

    Hey Dave,

    Please go to Apperance > Widgets and create two widget areas “header” and “header-two” and then add following code to Functions.php file in Appearance > Editor

    
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    	dynamic_sidebar( 'header-two' );
    }

    Then add following code to Quick CSS in Enfold theme options under General Styling tab

    #header .widget:nth-child(1) {
      left: 50%;
      padding-top: 0;
      position: absolute;
      top: 0;
      transform: translate(-50%);
      z-index: 999;
    }
    #header .widget:nth-child(2) {
      left: 0%;
      padding-top: 0;
      position: absolute;
      top: 0;
      transform: translate(-50%);
      z-index: 999;
    }

    Best regards,
    Yigit

    #750713

    In reply to: WP-Rocket

    Hi!

    Thank you very much for do letting us know!
    WP-Rocket has also worked out some of it compatibility with Themes that are Top in their area, like Enfold.
    Thank you!

    Regards,
    Basilis

    #750705

    Hey

    Sorry for the late reply! With upcoming update we will make mobile improvements.

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 990px) {
    #advanced_menu_toggle, #advanced_menu_hide { display: none !important; }
    .responsive .main_menu .avia-menu { 
        display: block !important;
        float: right;
        margin-top: -130px;
    }
    }
    

    Best regards,
    Yigit

    #750702

    Thanks for your response as always, Yigit!

    I was afraid that was going to be the case, that launching a video in lightbox in desktop is an enhancement even though in mobile that’s already the behavior. I think this is something between a bug and an enhancement but I won’t debate…. :)

    The issue I run into and the reason I’m using Lightbox for the video is that if I just use the video element, it’s HUGE on the page…. and if I put it inside a layout element (1/5 + 3/5 + 1/5) then it looks too small (Goldilocks…)

    Is there a different way to get at the goal, which is to have a nice centered video that is larger than the 3/5 above but smaller than the full screen that the video element produces?

    Thanks!!!!!!!!

    #750696

    Here’s where I am now… but it took me all morning for something that should be really simple….

    http://www.thomashenthorne.com/marin-luxury-homes-sizzle-reel/

    I ended up pulling the thumbnail from Youtube, then going into Photoshop and creating an image with the red “play” button graphic, then merging those two, then saving as an image, then linking the image on the page to the Youtube video but with the special format Yigit suggested in different thread to different user, then I had to create “only_desktop” css class because on mobile this version doesn’t work (have to hit two clicks) whereas the normal insert video element works great on mobile (e.g. launches Lightbox).

    The video element on desktop should also by default launch a lightbox… this is a lot to go through just to have a Youtube video launch in lightbox, yes?

    Help…..

    Thanks!!!!!!!!!!
    Rob

    #750692

    Great, Yigit, works great…. now don’t forget this open thread… :) :) :) ha ha

    ( I know it is getting late Europe time….)

    acscreativenew
    Participant

    Hi,

    Im trying to change every string of text in my site that says “check out” to “place order”. I have changed most of them but I cant seem to figure out how to change the one in the small widget that shows up in the top right hand side of that page. It has a little cart icon and when you hover over it it had your items and checkout in there.

    Any ideas on how to change that?

    #750683

    Hey!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top #wrap_all .av-main-nav ul > li > a, #top #wrap_all .avia_mega_div, #top #wrap_all .avia_mega_div ul, #top #wrap_all .av-main-nav ul ul {
        font-weight: bold;
    }
    

    Best regards,
    Yigit

    #750643

    Hi, there is the link to the page with no option to klick on the element: http://www.aktivklimahaus.at/mieten/graz-zentrum-reininghaus-sued/page/2/
    It’s the first part “Haus L: Top 9 …”

    But if you go to the next portfolio http://www.aktivklimahaus.at/portfolio-item/haus-l-top-3-eg/ you can navigate to the “Haus L: Top9 .. “. Maybe there is an option to make it not reachable but still visible in the first view.

    #750641
    Mark Hancock
    Guest

    Thank you, Basilis. I hope that you have checked the other lengthy post that Yigit was moderating, this is the link and it has all of the connection information: https://kriesi.at/support/topic/enfold-support-login-not-working/?avia_support_contact=avs_58828fcdc65623.49744768_736672

    Please keep in mind I have multiple issues, the most important being the menu problems and the second being that I cannot login to the Kriesi support site. I need both of these issues resolved.

    #750637

    Never mind, think I finally found the solution.

    Guenni007: https://kriesi.at/support/topic/on-each-page-one-different-background-image/
    every page of your site has its own page-id in form of a class to body ! (look to the source code of the concerning website page)
    so if you don’t want to install a plugin the only way is to set up for each page-id a unique rule in quick css

    so if you have the code above set up first the non-changing rules:

    .main_color {
    background-attachment: fixed;
    background-clip: border-box;
    background-color: #ffffff;
    background-origin: padding-box;
    background-repeat: no-repeat;
    background-size: cover;
    }
    and than for every page (even if home page got it) for example.

    .page-id-31 .main_color {
    background-image: url(“//studiopsicologoverona.it/wp-content/uploads/2016/03/PSICOLOGO-VERONA-GIORGIO-DAL-MASO.jpg”);
    }
    .page-id-65 .main_color {
    background-image: url(“//studiopsicologoverona.it/wp-content/uploads/2016/03/PSICOLOGO-ROMA-GIORGIO-DAL-MASO.jpg”);
    }

    #750626

    Hi!

    Yes, however you can change the code to following one to apply it only on a certain page, in example, page ID is 59

    add_action('avia_before_footer_columns','avia_footer_top_column');
    function avia_footer_top_column(){ 
    if(is_page(59)){
              dynamic_sidebar( 'footertop' );
    }
    }

    Cheers!
    Yigit

    #750624

    We have already gone thru the process of providing our member information in the beginning of the support thread: https://kriesi.at/support/topic/issues-with-blog-2/#post-748451

    That is not the only explanation as you will see in the support thread link I have provided above, we sent only one reply (#748644) on February 17 that has gone unanswered for 5 days.

    #750610
    MarcG5
    Participant

    Hi Guys,

    I’m not too sure why my last ticket was closed so I’ve created another here for the same problem that I am having with the image alt-tags.

    A few months back I asked about removing Alt tags from images on the gallery. Yigit kindly provided advice on an edit to enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php which worked perfectly at the time. Here is the old link: https://kriesi.at/support/topic/removing-alt-text-from-images/

    I have updated both WordPress and Enfold to their latest versions and applied the altered line of code. The problem I have is when my galleries first load the ‘alt-tag’ is removed. However, when you click on ‘load more’ those images that are subsequently loaded show the ‘alt-tag’.

    Yigit previously asked for my access details which I have included in the pvt section. If you could let me know what you find / change I can then replicate it to my live site.

    Thanks for your help!
    Marc

    #750606

    Hi BPC!

    Add to your custom CSS

    .main_color .onsale { margin-top: -250px !Important; }
    

    and let us know if we can do anything else for you.

    Best regards,
    Basilis

    #750598

    Hey nwcm0819!

    Can you please provide us links of your topics.
    Also – are you a member of our forums?
    We provide supprot to registered members and we do try to see all the tickets.
    The only explanation can be that your post has many replies of you inside and been drived to the bottom.

    A link would be much helpful.

    Regards,
    Basilis

    #750537
    BPC
    Participant

    Hi,

    The text Sale (aanbieding) is placed over the title

    How to place the sale in the top of the item ?

    #750529

    Are you sure? At the beginning of this thread you said it WAS possible. I then followed a load of instructions from you. If it isn’t possible why didn’t you say that at the start and save us both a load of time.

    I’ll ask the question again. Perhaps one of your colleagues might have an idea:

    On a mobile device in the catalogue (tractor) page the sidebar shows at the bottom after you scroll through all the products for that category. I need it to show the sidebar or a widget at the top so they can select an attribute (parts type) from the Woocommerce Layered Nav widget first. (I cannot envisage a scenario where having the sidebar after scrolling through all the products would be of any use on mobile devices.)

    Thanks
    Rob

    #750502
    FinHenri
    Participant

    Hi,

    I’m building my very first website ever. I’m have few problems.

    Website is not ready yet and i need to upload real content to portofio etc. now there is just few bad sample pics. Im using ajax type portfolio i think :D
    Anyway it looks pretty fine on desktop exept i need to figure out how to make thumbnails smaller .
    Problems are in mobile. First of all there is empty white space under background image on front page. background image is parallax and im wondering if that problem is somehow related to that?

    Other thing is on my ajax portfolio page. You can find it on ” MB vito” page. It redirects me to page where i see only thumbnail pic ( only on mobile)

    Let me know what should i do and if i have done whole thing wrong.

    Thank you very much.

    By the way Enfold theme is great! I had no idea i could get so far without any coding skills.

    #750498
    mofix
    Participant

    Hi,
    I have a container/color section with 6 columns with circles and with css it works fine (fantastic) in desktop view. I’ve got this css code:

    #six-columns .column-top-margin { margin-top: 0px !important; }
    #six-columns div .av_one_fifth { width: 15%!important; margin-left: 2%; }
    #six-columns .first { margin-left: 0!important; clear: none; }
    #six-columns .el_after_av_one_fifth { margin-left: 2%!important; }
    #six-columns .container { width: 100% !important; max-width: 100%; padding-left: 75px; padding-right: 75px; margin: 0; }

    But it’s not working in responsive view, the columns remains on vertical line. You can see it and test at the url in private content, scroll down to Products section in grey with the circles. Please help.

    Thanks, kindly regards, Mathilde

    #750495
    Powtin
    Participant

    Hi,

    ich habe leider doch wieder ein Problem mit dem erweiterten Layout editor. Dachte eigentlich ich hätte das Problem über ein Konvertieren in reinen Text gelöst.

    Ich habe in einem Blog Post das Problem, dass er an zwei Stellen Code ausgibt und nicht das passende Element:

    [/av_textblock] [/av_one_full] [av_one_full first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading heading='Zunächst etwas Geschichtliches des barocken Städtchens' tag='h2' style='' size='' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading] [/av_one_full] [av_one_full first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_textblock size='' font_color='' color='']

    Wenn ich jetzt an dieser Stelle reinen Text aus einem Texteditor reinkopiere, bekomme ich an einer anderen Stelle das Problem. Aber immer nur an diesen zwei speziellen Stellen.

    Ich habe bereits alle Plugins deaktiviert – Problem tritt immer noch auf. Bei einem vorherigen Post ist das Problem nur an einer Stelle aufgetaucht – dies konnte ich wie bereits angemerkt über reinen Text ausbessern.

    Vielen Dank im Voraus,
    Konstantin

    #750488
    Monique
    Participant

    Hi guys,

    (1) I set up a page with a sidebar right (Hoe werkt het). I see there is (space for) a sidebar, but I don’t see the content of the sidebar.

    (2) When I use content section for the content of the page, the sidebar is seen, however is forced down under the content. This is not what is supposed to happen!? I always thought that only happened with grid rows!

    (3) I know I can use grid row and that I can put a widget area with a sidebar within a cel, but don’t like (‘hate’) the look of the sidebar style (which is different from the standard sidebar on a page). You can tweak a bit with css but it is never going to be the same…

    Can you please check? I have created test pages for you to be found on top of the WP pages menu. You can play with them like you wish.

    Thanks & regards,
    Monique

    #750472

    Hi integraing!

    Please refer to my post here – https://kriesi.at/support/topic/lightbox-for-mailchimp-form/#post-582439

    Cheers!
    Yigit

    #750454
    tankstelle
    Participant

    Dear support,

    i will create a google maps in footer and in contact page. But it does not work.

    Yes i have read this thread: https://kriesi.at/support/topic/missingkeymaperror-doesnt-work/#post-681054
    Yes i have read this thread: https://kriesi.at/support/topic/google-maps-api-error-2/
    Yes i have create a api key with domain variants: *.tankstellenmuseum.de/* with http, without http and many more….
    Yes i have install this plugin: https://de.wordpress.org/plugins/api-key-for-google-maps/
    Yes i have edit the class-framework-widgets.php with this codes from: https://kriesi.at/support/topic/google-maps-api-error-missingkeymaperror-3/#post-677308
    With my api key and without my api key.

    But dont happened…..Why?
    Google Map error again….

    When i edit a google map in a page and give him the address, than i get error again….show pic.

    What is here wrong???

    #750444
    JennyGr
    Participant

    Hi there is a gap on this page I can’t get rid of, between the booking form and the text underneath it. It doesn’t show on mobile but does on desktop. Can you advise please?

    Thanks

    Jenny

    steviger
    Participant

    Hi,
    For a new project I’d like to have the logo left, menu below and an extra widget on the right hand side as shown here.
    I’m using a child theme and I tried the following:
    Read the instructions here
    Looked at this tread

    Placed this code in my style.css of my child theme:

    #header .widget {
    height:200px!important;
      right: 0!important;
      top:20px!important;
      padding: 0!important;
      position: absolute!important;
      z-index: 999!important;
    }

    And placed this code in my functions.php of my child theme:

    add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    Could you point me in the right direction so I can make it look like the preview?

    Thanks in advance!

    Regards,

    Steven

    Hey Mike,

    Removing the animation does not solve the problem of stacking some image on top of another image when you refresh the page.

    Regards,
    pandaweb

    #750436
    GSM
    Participant

    I like the lazy load effect and used it for many elements of our homepage. Most pages have sub-menus to navigate on site via anchors.

    When the visitor scrolls down the page the first time, he/she sees the desired lazy loading effect.

    When the visitor loads the page and uses the sub-menue to navigate to content at the bottom of the page, it takes quite a while until the elements appear. Reason seems to be that all the lazy elements are loaded top to bottom in sequential order and if the page is long it takes a while until all (actually not visible) elements above the desired content are loaded.

    There’s also a further lazy load issue when combining anchors and masonry galleries. As the galleries expend with loading its content/pictures, quite often the anchor content moves out of focus. Only when all the content has been loaded the anchor works correctly.

    What I was wondering is whether there’s a way to speed up the loading of these hidden elements? So that there’s just the regular wait for the elements of the anchored bottom elements.

    #750422

    In reply to: Show excerpt

    Hi Nikko,

    We do not want to use the ‘read more’ tag because of the duplicate content problem for SEO.
    So we want to use the excerpt.

    We found an answer here already, now hoping the design issue can be fixed also:

    #750407

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 30 results - 83,911 through 83,940 (of 142,726 total)