Viewing 30 results - 96,211 through 96,240 (of 142,828 total)
  • Author
    Search Results
  • #628112

    In reply to: Element Animation

    Hi StefanMayrhofer,

    I’ve tagged the topic for our german speaking moderator, please wait for his reply.

    Grüss,
    Rikard

    #628111

    Hi,

    So… I am willing to bump this post even though I risk delaying support.

    By doing this, you are only delaying our response more because the thread is pushed back 200 or 300 threads back. Please be patient while we go through the queue. Replace the code with the following:

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5" style="display: none;">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }

    And make sure to add the css code:

    @media only screen and (max-width: 767px) {
    	#top #searchform>div {
    		display: block !important;
    		opacity: 1 !important;	
    	}
    }

    Best regards,
    Ismael

    #628091

    Hi,

    The following code are not working because the #top selector is also an attribute of the body tag.

    body.home #top .av-submenu-container {
        height: 6em;}
    
    body.home #top .av-subnav-menu > li {
        padding: 25px 10px 25px 10px;
    	margin-bottom: 10px;
        display: inline-block;
    }

    It should be replaced with the following:

    .home#top .av-submenu-container {
        height: 6em;}
    
    .home#top .av-subnav-menu > li {
        padding: 25px 10px 25px 10px;
    	margin-bottom: 10px;
        display: inline-block;
    }

    Or a more appropriate css code:

    .home .av-submenu-container {
        height: 6em;}
    
    .home .av-subnav-menu > li {
        padding: 25px 10px 25px 10px;
    	margin-bottom: 10px;
        display: inline-block;
    }

    Best regards,
    Ismael

    #628085

    Hi,

    Since you have used the builder for the post in question you will have to add the excerpt manually, if you don’t see the excerpt field you can select to show it under Screen Options in the top right hand corner of the screen.

    Best regards,
    Rikard

    #628084

    Hi,

    It’s because of the captions. We provided a temporary workaround here: https://kriesi.at/support/topic/fullscreen-slider-problem-linking-images-while-using-captions/#post-622970

    Best regards,
    Ismael

    dialedinmarketing
    Participant

    Hi there,

    I’ve looked through a couple of threads about this subject now and I can’t seem to find a solution that works for me. It seems like there needed to be custom coding for other people and I was hoping that I could get the same help. I most recently tried the code from here and it didn’t work for me. I would like to change the active page (the last link the the menu) to a different text color. My information is listed below.

    Thanks a lot!

    #628052
    imoutsidethebox2
    Participant

    Love this these

    2 Small issues

    1) social media icons in header and the scroll up icon are encripted
    I read to deactivate all plugins but that didnt work.

    2) when editing and viewing page, the edit bar at top page view is gone. I have to hit back button to return to page edit.

    Thank you for your help

    #628049

    See my previous message regarding color.

    For the titles, they come from the code in functions.php:

    	$icons['Ai Research'] = 'ai_research';
    	$icons['Ai GoogleScholar'] = 'ai_googlescholar';
    	$icons['Ai Academia'] = 'ai_academia';

    Although you can simply change the “icon code” (ai_research, ai_academia, etc) there, it may get messy because that will also be the class assigned to the HTML element (CSS classes can not have spaces), alternatively you could do the following:

    	$icons['Ai Research'] = 'ResearchGate';
    	$icons['Ai GoogleScholar'] = 'GoogleScholar';
    	$icons['Ai Academia'] = 'Academia';

    Once you done that you’d need to re-set the Social Icons in Theme Options and change the CSS codes:
    .social_bookmarks_ai_research becomes .social_bookmarks_ResearchGate and so on.

    Makes sense?

    #628043

    Also, to change the hover background color use the following:

    #top #wrap_all .social_bookmarks_ai_research:hover a{
        background: red;
        color: white;
    }
    
    #top #wrap_all .social_bookmarks_ai_googlescholar:hover a{
        background: green;
        color: white;
    }
    
    #top #wrap_all .social_bookmarks_ai_academia:hover a{
        background: blue;
        color: white;
    }
    #628042

    Done, the 3 new custom icons has been added:
    http://sabinedoebel.com/wp-admin/admin.php?page=avia#goto_social

    To add/remove custom icons you’d just have to modify this function i placed in your child theme functions.php (follow the same pattern):

    function avia_add_custom_social_icon($icons) {
    	$icons['Ai Research'] = 'ai_research';
    	$icons['Ai GoogleScholar'] = 'ai_googlescholar';
    	$icons['Ai Academia'] = 'ai_academia';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Additionally, in child style.css:

    #top .social_bookmarks_ai_research a:before {
        content: "\e902"; 
        font-family: "Academicons";
    }
    
    #top .social_bookmarks_ai_googlescholar a:before {
        content: "\e900"; 
        font-family: "Academicons";
    }
    
    #top .social_bookmarks_ai_academia a:before{
        content: "\e910"; 
        font-family: "Academicons";
    }

    To get the icon codes (e910, e900, etc):
    http://sabinedoebel.com/wp-content/themes/enfold-child/academicons.css?ver=3.5.3.1461188191

    Regards,
    Josue

    #628041
    ryan_boomstreet
    Participant

    I can’t get tags to show on my blog post. I think a previous developer may have put something in the Quick CSS?

    .avia_cart_buttons .product_type_external {
    padding: 11px !important;
    background: #ffbe46 !important;
    }

    .avia_cart_buttons .product_type_external:hover {
    background: #95d500 !important;
    }

    .avia_wpml_language_switch {
    display: none;
    }

    @media screen and (max-width: 599px) and (max-height: 320px) {
    .responsive.html_mobile_menu_tablet.html_visible_cart #top .cart_dropdown {
    right: 95px !important;
    }
    }

    .language_flag {
    display: none !important;
    }

    .single-product .product {
    width: 100%;
    }
    .single-product-summary {
    float:left;
    width:45%;
    margin-right: 3%;
    }

    .single-product-main-image {
    width: 25%;}

    .sidebar {
    padding-top: 0px;}

    #top.tax-product_cat .product-sorting {display:none;}

    .avia_cart_buttons { opacity: 1; }
    #top .main_color .avia_cart_buttons .button { color: white; }
    .header_color .cart_dropdown_link { background-color: #FFBE46; }
    .header_color .cart_dropdown_first .cart_dropdown_link { color: white; }

    .single .cart .button { background-color: #FFBE46!important; color: white!important; }

    #containerIntro h3,
    #containerIntro p {
    display: inline;
    }
    .language_es, .language_en, .language_fr {
    display: none;
    }

    #lang_sel {
    height: 75px;
    }

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

    .widget {
    font-size: 18px;
    }

    .avia-button.avia-size-large { font-size: 18px; } /* for large buttons */
    .avia-button.avia-size-medium { font-size: 18px; } /* for medium buttons */
    .avia-button.avia-size-small { font-size: 18px; } /* for small buttons */

    .slide-content .blog-categories.minor-meta {
    display: none;
    }

    .avia-button-wrap span.avia_iconbox_title {
    font-size: 20px; font-weight: light;
    }

    .avia-button-fullwidth {
    padding: 4px!important;
    }

    @media only screen and (max-width: 1100px) {
    #mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide { display: block; }
    nav.main_menu { display: none; }}
    #wrap_all {
    position: relative !important;
    }

    .portfolio-preview-image {
    width: 500px;
    }
    .portfolio-preview-content {
    width: 70%;
    }
    .inner-entry .grid-content {
    min-height: 115px !important;
    }
    .grid-entry-title {
    font-size: 18px;
    color: #96c93d !important; }
    .grid-entry-excerpt {
    font-size: 14px;
    font-style: normal; }

    @media only screen and (max-width: 479px) {
    .responsive #socket .sub_menu_socket {
    display: block !important;
    width: 100%;
    }

    .responsive #socket .sub_menu_socket ul li {
    float: none;
    border-left: none;
    text-align: center;
    }

    }

    @media only screen and (max-width: 767px) {
    .responsive #socket .sub_menu_socket ul li {
    padding: 10px;
    font-size: 15px;
    }
    }

    #footer .widgettitle {
    font-size: 20px;
    text-align: center;
    }

    .tribe-events-before-html div {
    height:auto!important;
    }

    #top .main_color .avia-button.avia-color-theme-color:hover { border-color: red; color: black; }

    #628034
    Antispam23
    Participant

    Hi everyone!

    I need to insert ARForms form (simple contact form) to a certain position in slider in Enfold. I googled and found, that I can insert shortcode in layerslider wp “HTML / Video / Audio Dynamic content” area. So, I take [ARForms id=101] shortcode and insert it. But now there are two issues:
    1. I dont know how to place form to a specific area on the slide. I google “margin-top\left\etc” functions but dont know exactly how to use it.
    2. When slide changes, form dissapears and then appears again (if i place shortcode to the next slide too). So, can i fix form on slider in such a way it will be fixed the whole time without dissaper\appear when slide changes?

    I will be very thankful for your help!

    Sincerely yours, Alexander.

    P.S There are two types shortcodes for ARForm. The second is php
    <?php echo maincontroller::get_form_shortcode(array('id' => '101')); ?>

    • This topic was modified 9 years, 10 months ago by Antispam23.
    #628031
    evan_friedl
    Participant

    So I am creating borders around some of our special headings throughout the site. On Mobile it looks great.

    However on desktop and laptop there is extra space on the right and left because it is spanning the entire section it is in.
    You can see this best on srea.co/services/

    I would like the boxes to be a bit more flush to the text instead of spanning the div. I did try to create a div inside and it still spanned.

    Here is my css for the two types of boxes:

    div .heading-border{
    border-style: solid; 
    border-width:2px; 
    padding: 5px;
    border-color: #666666;
    }
    
    div .heading-border2{
    border-style: solid; 
    border-width:2px; 
    padding: 5px;
    border-color: #FFFFFF;
    }

    Thanks for any suggestions you can provide

    • This topic was modified 9 years, 10 months ago by evan_friedl.
    #628015
    claraelisa
    Participant

    Hi!

    I’m big fan of enfold template. I need to customize the text and links of the top bar for the vacations template, I can’t find the “customer login” and “Register” text to modify them for my custom text and links.

    Can you help me with this please?

    Thanks in advance

    #627982
    whats1thingnow
    Participant

    hi support,

    i read this… https://kriesi.at/support/topic/one-page-menu-not-working/

    i have added the ids under: For Developers: Section ID

    but i cannot find where to change the actual menu and the text as shown in image…

    please help

    #627976
    fmotionmedia
    Participant

    Hello, I have set so my logo is on top of my menu, so I would like to have my menu background in a different colour than the rest of my header. Is it posible?. I’ve looked for solutions but I dont seem to find any topic similar to what I need.

    #627968
    Sigmund
    Participant

    Hi to the great Kriesi team,
    I have implemented the code from
    https://kriesi.at/support/topic/masonry-portfolio-hover-colour-and-centre-title/
    for showing a hover effect on a masonry portfolio image. With this is shows the title from the portfolio entry. Is it possible to show the excerpt (under the title) when hovering also?

    Thanks and Regards

    xuamox
    Participant

    Hi, my current design is set to use the transparent nav. However, on mobile devices, there is a default color bar that sits underneath the logo and sandwich icon. How do I make the header section transparent for mobile?

    Right now my nav is locked on desktops, so having a background color makes sense, but on mobile, since the nav is gone on scroll, it would be nice to just have it sit on the graphic from slider/image.

    • This topic was modified 9 years, 10 months ago by xuamox.

    Okay, I inserted the code in that post into Quick CSS, and now I can create a color section going the full width. But I can’t figure out how to tighten up the vertical space between the two color sections. I think that’s a new issue….

    New try – Special Programs / Accessibility
    Caption is flush right with the edge of the viewing screen and it’s responsive in mobile. Check!
    Caption is done with Full Width Color Section / 1-1 column / text box. In the column settings, the top margin is -50px, bottom is zero.
    The color section below the caption color section is set with top margin -50px. I’ve left the top border so you can see where the heading text aligns vertically.

    Yodelle
    Participant

    Hi Guys,
    Having a problem with WooCommerce product reviews. The Stars for “Your Ratings” not showing up on desktop only. Fine on phone and laptop. Researching Woo I couldn’t find an answer, is this something Enfold might be overriding?
    Thank you,
    Denise

    #627945

    I know you don’t want topics bumped… However…Were now going on 2 weeks without a solution.

    So… I am willing to bump this post even though I risk delaying support.

    Waiting 3-4 days for answers that don’t provide resolution is delaying our launch.

    Micah

    #627931
    raisonbrands
    Participant

    Hi there,

    I’ve gotten some direct help on these issues from Enfold support (THANKS!), and have found some info from threads, but still have these outstanding questions. I’m hoping that having them all in one place with the short code could help some other folks out and save support some time.

    For the blog post feed, using the Grid Layout, the following short code has yielded lovely results–no extraneous icons, no authors (doesn’t make sense for us) perfect spacing, and very nice styling overall. One catch, how can we also display the blog post publication date? I tried messing with the short code and got no results–it’s either the dates and repeated icons or no icons and no dates. If we could keep everything as is but display the dates, it would be spot on perfect.

    #top .fullsize .template-blog .blog-meta {
    display: none !important;
    }

    span.blog-categories, .slide-meta {
    display: none;
    }

    a.slide-image {
    display: none!important;
    }

    .blog-categories,.slide-meta-del, .slide-meta-time {
    display: none!important;
    }

    .avia-content-slider .slide-entry-excerpt {
    padding-bottom: 20px;
    }

    .slide-meta {
    display: none!important;
    }

    .image-overlay{
    display: none !important;
    }

    That said, I have the opposite issue for the Articles Magazine feed. We want to NOT display the publication date. Can’t find any short code on that and none of the options in the Magazine content box seem to do the trick. Any ideas?

    Lastly, and apologies if this should be in a different thread, but we can’t get the lists to display either numbers or letters (the custom ordered lists

      are not rendering), it’s either one or the other universally. Before, our problem was that lettered lists would display in preview mode appropriately, but would be rendered as numbers when viewing live. I found this short code, and it simply has reversed the problem, now numbered lists will only render as letters. Just for reference, the site has to do with legal issues, so being able to have really well organized lists is a great capability.

      ol {
      list-style: lower-alpha;
      }

      If it’s not possible to have both numbered and lettered lists, please let me know and we’ll do it manually. Thanks!

    Hi,

    We have atted the below css and fixed the issue please check the link in private

    /*partner logo margin fix*/
    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all .avia-content-slider-odd .slide-entry {
        margin-bottom: 20px!important;
    }}

    It’s not clear what you like to do with the caption please elaborate or point us to an example so we can help you with it.

    Best regards,
    Vinnie

    #627911
    grwebs
    Participant

    Good Morning,

    I am having an issue with a portfolio not showing up on the portfolio page… is there a way to fix it?

    right now there is only one showing out of 2.

    ( i am also seeing an issue with the link above in the image that is showing here in this topic….
    Also we ere wondering if there was a way to add a font to the list: American Typewriter

    IS there a way also to have a video instead of a featured image on a portfolio

    We are having an issue uploading an image – we are getting an Http error. any thoughts? Thanks

    • This topic was modified 9 years, 10 months ago by grwebs.
    #627895

    Topic: Header Logo On Scroll

    in forum Enfold
    #627890

    Hi,


    @BlueprintECM
    I believe issue was fixed here – https://kriesi.at/support/topic/one-page-menu-not-working/ :)

    Best regards,
    Yigit

    #627882

    Topic: Header Error on Mobile

    in forum Enfold
    BrisbaneLashes
    Participant

    On mobile, the menu shows before the top navbar. Please help, thanks.

    screenshot

    #627878

    Hi!

    I added your image using image shortcode in first footer column widget area and then added following code to Quick CSS

    #footer #text-9 {
        position: absolute;
        top: -45%;
        left: -60%;
    }

    Please review your website now

    Regards,
    Yigit

    #627877

    In reply to: Layslider

    Right – Layerslider should not have to go in a Text box. However, that’s the only way I can get rid of a box shadow appearing above the slider. My CSS shown below doesn’t work, even though it works when inspecting with Chrome. You can view the box shadow that I’ve left up on the site.

    /* Layerslider – Removes a top border “box shadow” appearing with Layerslider */
    .avia-shadow {
    box-shadow: none !important;
    }

    Thank you for your Media Query thoughts, but I’m not looking to style the sliders across devices. I’m looking to show Slider A only on “Larger than mobile” and Slider B only on “Mobile”. I’m guessing this is not possible. Therefore, I’ve decided to hide the slider on mobile devices – using the Layerslider settings.

    #627869

    Thanks Yigit – that’s understood, but I’m not trying anything out of the ordinary. I see many mobile sites keep a persistent menu icon on screen at all times – none of them pop to the top on tap. Is there any way I can stop this link from scrolling to the top?

    If you have a moment, please check out the site at http://btribble.com to see what I mean.

    Many thanks

    • This reply was modified 9 years, 10 months ago by jomtones.
Viewing 30 results - 96,211 through 96,240 (of 142,828 total)