Viewing 30 results - 81,181 through 81,210 (of 142,855 total)
  • Author
    Search Results
  • #779648

    In reply to: menu position

    THX!!!!
    everything works ( position, behavior when shrink,social button position)

    for people who are loking for the same needs, finally i put:

    #top #header .av-main-nav > li > a {
    line-height: 140px !important;
    }
    #top #header.header-scrolled .av-main-nav > li > a {
    line-height: 44px !important;
    }
    #header_main nav .social_bookmarks {
    top: 80%!important;
    }
    #header.header-scrolled #header_main nav .social_bookmarks {
    top: 50% !important;
    }

    Thx again

    BR
    Noelle

    kwlodar
    Participant

    Here is the site: https://www.sensity.pl/o-sensity/zespol/

    In my resolution (1920×1080) each picture has 404×404 px. Unfortunately Google PageSpeed claims that on desctop version pictures are too big and need to be optimised: https://developers.google.com/speed/pagespeed/insights/?hl=pl&url=https%3A%2F%2Fwww.sensity.pl%2Fo-sensity%2Fzespol%2F&tab=desktop. As a source Google takes 705×705 px files.

    How to fix it?

    I fount similar topic here, but it has no conclusion: https://kriesi.at/support/topic/google-page-insights/

    #779634

    Also – while you are in there, check out the top left corner of the text block when you open it to look at the text / css……

    I noticed this text overlaying each other AFTER I updated to the most recent version. Not really a big deal to me, just thought I’d let you know.

    Screenshot:

    #779629
    Muskrat37
    Participant

    Good Morning All,

    Running into a problem with the Text editor.

    I’ve found several issues with this going back to 2013. I’ve tried the solutions except this one found here: https://kriesi.at/support/topic/2-things-how-do-i-remove-automated-p-tags-in-straight-text-a-bug-in-enfold/


    You can also edit config-templatebuilder > avia-shortcodes > textblock.php, find this code on line 61:

    $params[‘innerHtml’] = “<div class=’avia_textblock avia_textblock_style’ data-update_with=’content’>”.stripslashes(wpautop(trim(html_entity_decode( $params[‘content’]) ))).”</div>”;

    Replace it with:

    $params[‘innerHtml’] = “<div class=’avia_textblock avia_textblock_style’ data-update_with=’content’>”.stripslashes(trim(html_entity_decode( $params[‘content’]) )).”</div>”;

    While I know that this solution would most likely work – the above solution would be overwritten upon updating the Enfold theme. I don’t want to have to make this change in the main themes code every time I update the theme.

    I’ve tried adding the below lines to the functions.php file in my child theme, but it doesn’t work.

    “remove_filter( ‘the_content’, ‘wpautop’ );
    remove_filter( ‘the_excerpt’, ‘wpautop’ );

    I need a solution to this as I tend to get creative with my CSS using the display property and these auto added paragraph tags are killing me.

    I have created a demo page for you to see the code I’m referencing and how I’m using the CSS. Please note, I use custom CSS that I upload via FTP. I have also created a user account for you with administrator privileges.

    #779628

    Hi,

    Thanks for providing the login, it’s not a bug, since you are using 1/1 Column it doesn’t expand to 100% of the screen and the border on top showing is it’s wrapper which is auto-generated (you can test this by giving it a border size value and color), I have replaced the 1/1 Column with a color section which is more appropriate solution. Hope this helps :)

    Best regards,
    Nikko

    #779614

    Hi Frank,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        width: 56%;
    }
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #779611

    In reply to: Enfold & WooCommerce

    Hi NeilJC,

    Here is a thread on wordpress.org about this https://wordpress.org/support/topic/lightbox-wont-disable/
    and here is another solution on our forum https://kriesi.at/support/topic/disable-lightbox-on-all-product-pages/#post-296872

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #779588

    Hey!

    You can always create that as a plugin
    https://kriesi.at/support/topic/adding-new-advanced-layout-builder-element/

    and add it so you can use as an element when ever you want.

    Also, we would love if you want to submit it as a code snippet on our library here:
    https://github.com/KriesiMedia/enfold-library/

    Regards,
    Basilis

    #779578

    Why do I need clickable columns? Many of my client designs call for clickable containers that do not have an image and many clients do not have the knowledge to write the html or edit it and rather use a page builder element. Other Enfold forum users have the same need.

    Clickable columns work fine if I override columns.php in a child theme, but I don’t want to break a site if columns.php is updated on the parent side. By adding a new clickable columns tab, this way the only element that would break are clickable columns not every column in the entire site.

    Here is the pastebin: https://pastebin.com/NPH0MEcM

    However, I only changed the class name, $atts and this code:

    // Linkable columns
    				$link = $atts['link'];
    				$linktarget = $atts['linktarget'];
    				
    				$blank = (strpos($linktarget, '_blank') !== false || $linktarget == 'yes') ? ' target="_blank" ' : "";
    				$blank .= strpos($linktarget, 'nofollow') !== false ? ' rel="nofollow" ' : "";
    
    				$link = aviaHelper::get_url($link);
    
    				$tag = !empty($link) ? array("a href='{$link}' {$blank} ",'a') : array('div','div');
    				
    				$output  .= '<'.$tag[0].' class="flex_column '.$shortcodename.' '.$extraClass.' '.$first.' '.$meta['el_class'].' '.avia_sc_columns_linkable::$extraClass.' linkable-column" '.$outer_style.'>';
    			
    				//if the user uses the column shortcode without the layout builder make sure that paragraphs are applied to the text
    				$content =  (empty($avia_config['conditionals']['is_builder_template'])) ? ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content)) : ShortcodeHelper::avia_remove_autop($content, true);				
    
    				$output .= trim($content).'</'.$tag[1].'>';	
    #779557

    Hi,

    To get better search results you might want to consider a plugin that allows you more control. Here is some reading on the topic

    http://www.wpbeginner.com/showcase/12-wordpress-search-plugins-to-improve-your-site-search/

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #779551

    Hey m_reiprich,

    Please refer to this thread for a possible solution.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #779541

    Hi,

    Here is how to specify the width of sidebar once and how to adjust menu links in that sidebar

    
    #top #main .sidebar_left .sidebar {
        width: 260px !important;
    }
    
    #nav_menu-5 li a {
        color: #ffffff;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #779533

    Hey lapi84,

    Please refer to this thread for a possible solution.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #779529

    Hi,

    Glad to hear that :) I don’t think that you will have any problems since the demo pages are already imported but I think you would still have issues importing xml files (probably because of server settings) I just found out that you had similar issues with: https://wordpress.org/support/topic/failure-to-import-and-invalid-post-type-errors/

    Best regards,
    Nikko

    #779528

    In reply to: menu position

    Hi Noelle,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #header.header-scrolled #header_main nav .social_bookmarks {
      top: 50% !important;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #779523

    Thanks!

    When I deleted the first tab (which only had 1 x 1/2 column), then the other two tabs worked. As soon as I recreated the first tab, with only one 1/2 column again, then the other two tabs stopped working again. I added a second column in the first tab with no content and the other two tabs started working again.

    It almost looks as though the system that decides whether to attach a “first” indicator to the column short codes counts how many columns there are, including in previous tabs.

    Is this a bug that will be fixed in a future update, or did I do something wrong when I set up the tab section?

    #779518

    Hi,

    1. Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .avia_ajax_form input.button {
        background: red;
    }

    2. Go to enfold\framework\php\class-form-generator.php and find this code (line 322):

    $this->button_html .= '<input type="submit" value="'.$submit_label.'" class="button" '.$this->submit_attr.' data-sending-label="'.__('Sending','avia_framework').'"/>';

    Replace Sending with the text you want to use.

    Best regards,
    Nikko

    #779512

    In reply to: Left Menu Sub Text

    Hey (Email address hidden if logged out) ,

    Please go to Appearance > Menus and click Screen Options and check “Description” and edit your text in description field. If you don’t see description available, please click “Screen options” on the top right of the screen and make sure to check “Description”.

    To remove the footer go to Enfold, footer and add the following in the Copyright field

    [nolink]

    You can add your own content after the nolink code.

    Best regards,
    Jordan Shannon

    #779458

    Hi Victoria,

    Thanks for your reply. I’m not sure why I have a copy of /js/avia.js in the child theme. It’s not something I normally do during development.

    I’ve tried updating the file with the contents from /enfold/js/avia.js and the gallery is now working as expected.

    I then removed this from the child theme thinking that if it was no longer present that it would default to the parent but it doesn’t. It leaves me with an area on the website where the gallery should be but no content and the sliders also stop working.

    Can you advise?

    Thanks.

    #779401

    This post has a Featured Image of the ‘normal’ size, 700px x 467px. It has this code

    .big-preview img {
    	width: auto;
    }

    in a child theme style.css to override the width: 100% in layout.css, for the FI to display at its ‘proper’ defined size. If you use Developer Tools to temporarily turn off this child declaration you will see the FI fill the whole of the outer entry-content-wrapper container (not what is required).

    This other post has a FI of 467px x 467px. It is displaying at that ‘proper’ size – which is what I want – because of the child CSS override above. Again, turn this off temporarily and the 467px wide image fills the whole container.

    So you can see that I have managed to override width:100% in layout.css.

    Sometimes however an FI will be another smaller size so I need a solution that works for all FI image sizes i.e. stop the enlargement to fill the outer container, and my question is whether I have done it in the right way with width:auto or is another CSS statement a better / correct way e.g. inherit?

    #779382

    In reply to: Social Media Icon Size

    Hi,

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

    #top #header .social_bookmarks li {
        margin-right: 5px;
    }
    .sub_menu a {
        font-size: 13px;
    }
    

    Best regards,
    Yigit

    #779369
    t73z
    Participant

    Hello,

    i have two icon lists next to each other with big icons. It looks fine in desktop view but not in mobile view. The vertical distances between the icons are not equal. You can see it on my frontpage where I have the 10 icons.
    How can I fix that?

    • This topic was modified 8 years, 11 months ago by t73z. Reason: typing error
    #779367

    In reply to: logo large

    Hey!

    Your logo was not inserted in full size. I inserted it in full size and then added following code to Quick CSS in Enfold theme options under General Styling tab

    .html_header_top.html_logo_center .logo {
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    Please flush browser cache and review your website now :)

    Cheers!
    Yigit

    #779362

    In reply to: Social Media Icon Size

    Great that works perfectly, when you increase the size of the icons they are too close together. Is there a way to space them out more. Also is there some code to resize the secondary menu text in the top bar?

    #779357
    fairusd
    Participant

    Hi,

    I would like to align the three image buttons(Follow Us on Instagram, Find out more and Sign Up Today) into one single column. Currently it’s in align as one row – stacking on top of each other.

    Any help would be much appreciated :)

    Hi,

    we can’t really help you with building lots of custom code for you for different screen sizes on your desktop. But as we already did we can point you to the right direction. So now use the code we’ve provided to you and wrap different media queries around it. Again here you go with how to use media queries: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/

    Have in mind that responsiveness doesn’t mean that it looks the way you want it to look like on every screen size, but to have the possibility to control it the way you want it to look like. Also it means that it looks good on different devices and not when you shrink your browser screen on one specific device (desktop device).

    Best regards,
    Andy

    #779334

    Hey!


    @flavio1963
    I replied to your thread here – https://kriesi.at/support/topic/logo-large/
    Let us continue there :)

    Regards,
    Yigit

    #779329

    In reply to: Word Press 4.7

    The Masonry Gallery has a lot of problems since 4.0.5

    See also here

    #779328
    Formgeven
    Participant

    Hallo zusammen,

    so wie es die Möglichkeit gibt “hide on mobile divices”, gibt es auch die Möglichkeit Elemente auf den Desktop-Geräten auszublenden?

    DuriaGlobal
    Participant

    Hi,
    I couldn´t find the right answer to my problem in the forums.
    Is there any way I can change the way the background image of my website is shown on desktop devices and mobile devices?
    The problem is that the background image I chose for the website does repeat itself on mobile devices even though I set it on “no repeat”. It works on desktop devices however.

    Best regards,
    Harry

Viewing 30 results - 81,181 through 81,210 (of 142,855 total)