Viewing 30 results - 83,041 through 83,070 (of 142,736 total)
  • Author
    Search Results
  • #759393

    Hi!

    Please do not post inside your topic
    it gets it last the the line and ofc we miss it.

    Your issue is with cache. Add the following to Custom CSS

    #wrap_all {
    overflow-y: scroll;
    }

    and let us know if the issue is been fixed.

    Thanks a lot

    Best regards,
    Basilis

    #759366

    Hello Vinay
    faster back than you thought, right? ;-)
    We have some real trouble with getting the positions & behavior (for mobile and different viewportsizes) we need and before we start to adjust i thought it might better to ask some PROs – you.
    At first we would like to make sure that we dont have any unnecessary or interfering CSS.
    Can we please start with this?

    Ismael gave us this CSS:

     .logo img {
          width: 340px;
          height: 150px !important;
          max-height: 150px !important;
          top: -20px;
       }

    Would it be better to have it like that: width: auto; ?

    .logo img {
      height: 150px !important;
      max-height: 150px !important;
      top: -20px;
    width: auto;
    }

    Two:

    .addheader {
      float: right;
      width: 100%;
      color: #222 !important;
      text-transform:uppercase;
    }

    Is that float:right really necessary??
    If i remove it it doesnt change anything

    Kind regards Martin

    #759343
    Armstrong88
    Participant

    “social icons” at the bottom, “move to top” link turn to box, how do i fix this?

    reference:
    http://newarrivalsholinessministries.org

    #759340

    In reply to: bug in catalog?

    i have now changed the size to 128 in wp-config.php in zorbas.synology.me/wordpress:
    define(‘WP_DEBUG’, false);
    define(‘WP_MEMORY_LIMIT’, ‘128M’);
    /* That’s all, stop editing! Happy blogging. */

    Is this enough or should I also change the size in the ini file?

    SHould this correct R/N/N errors or errors in catalog, im not sure I understand?

    We can close this one. Task almost complete, will create a smaller sub task topic later.

    #759327
    yingyang
    Participant

    Hi,

    How can i link someone to a specific tab section instead of the first one? when i select a different tab section the top address bar does’t change

    Also, some of our tab section contains TABS, when selecting a tab the address bar does change, if we copy/paste the URL into a different browser that points to a TAB without a TAB SECTION, the first TAB SECTION always open and then the browser scroll on the first tab section to where the TAB would be located on the other TAB SECTION

    hope that made sense, can you guys implement links to tab section? just like you do for tabs ?

    also hoping to get an answer on this question (been a few days): https://kriesi.at/support/topic/4-0-2-masonry-no-longer-display-the-right-category/

    thanks guys

    • This topic was modified 8 years, 11 months ago by yingyang.
    #759320

    Ismael,

    Thanks for responding. Issue 2 has been fixed. However, I am still having problems with the fullwidth submenu not staying fixed underneath the first color section. It looks like there may be an issue when using a transparent header. It works if I make it a sticky menu, but not a non-sticky menu.

    If you notice on the About page, the fullwidth menu is at the top of the page behind the main menu… and the links don’t even work. Please help!

    • This reply was modified 8 years, 11 months ago by JPOsteen.
    #759301

    Hey Besteam,

    Please try the following in Quick CSS under Enfold->General Styling:

    
    @media only screen and (max-width: 767px) {
    #scroll-top-link {
      display:block !important;
    }
    }

    Best regards,
    Rikard

    #759300

    Hi Kristian,

    Great, glad you found the problem and thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #759277

    Hi!

    Please remove the modification then look for this code around line 1725:

    new_menu.find('li').hover(function () {
    			        $(this).children("ul.sub-menu").stop().slideDown('fast');
    			    }, function () {
    			        $(this).children("ul.sub-menu").stop().slideUp('fast');
    			    });

    Change the value from “fast” to “slow” or adjust the duration by milliseconds.

    // http://api.jquery.com/slidedown/

    Cheers!
    Ismael

    #759270

    Hi!

    This is probably related to the issue.

    // https://wpml.org/forums/topic/widget-title-string-translation-not-working/

    Please edit the theme > enfold > wpml-config.xml file, look for this code:

    <wpml-config>
    

    Below, add this code:

        <admin-texts>
          <key name="widget_avia_mailchimp_widget">
            <key name="title"/>
            <key name="*"/>
          </key>
        </admin_texts>

    Regards,
    Ismael

    #759262

    Hey!

    We provided two modifications, one for the single events page and one for the main events page. Please review the suggestions above.

    single events page:
    // https://kriesi.at/support/topic/events-calendar-pro-adding-a-sidebar/#post-756781

    main events page:
    // https://kriesi.at/support/topic/events-calendar-pro-adding-a-sidebar/#post-757675

    Regards,
    Ismael

    Hey!

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #759255

    Hi Yigit,

    Everything is looking much better now.

    Is there an easy way for us to change the display order of the portfolio items on the homepages.

    For example to display items at the top, bottom or sides where we want them? Perhaps a plugin you can suggest that would allow us to drag and drop the taxonomy order?

    Thanks,
    Terry

    #759245

    Hi Elad,

    Thanks for the feedback, please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #759230

    Hi Rikard,

    Thanks for the reply.
    Info below.

    The homepage and the rest of the site has the social media top header bar

    I need the social media top header to be hidden on this specific page – ‘Music’ and on posts in the category ‘music’

    So far I have something similar already setup to change the header logo using this code:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_page(483) || has_category('music') )  {
        $logo = "/wp-content/uploads/2016/12/music-horiz.png";
        }
        return $logo;
    }
    
    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link)
    {
        if(is_page(483) || has_category('music') ){
        $link = "/music/";
        }
        return $link;
    }
    #759207

    Jordan,
    Thanks. It worked perfect for removing the top line…but when I scroll, there is still one on the bottom of the submenu.

    Also, did you get a chance to look at my #2 question?

    —————

    *I figured out the code to fix it.

    Could you look at my actual link I posted earlier? I want my menu to be non-sticky, but it won’t work with my transparent header.

    • This reply was modified 8 years, 11 months ago by JPOsteen.
    #759206

    In reply to: Google Maps

    Hi,

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

    #top #after_full_slider_1 .container {
    	max-width: 100vw!important;
    	padding:0;
    }
    #top #after_full_slider_1 .container .content {
    	padding:0;
    }
    

    Best regards,
    Vinay

    #759202

    Jordan,

    1. Here’s a look… it’s the thin border (or shadow) at the top and bottom of the fullwidth submenu under the first color section.
    2. Also, I just noticed that the background color of the menu doesn’t span fullwidth on a large HD monitor.

    Links below…

    #759196

    Hey Brigitte,

    Please add this to quick css:

    #text-6.widget.clearfix.widget_text{
    margin-bottom:0px !important;
    }

    #avia_combo_widget-2.widget.clearfix.avia_combo_widget{
    margin-top:0px !important;
    }

    Let me know if this works for you.

    Best regards,
    Jordan Shannon

    #759183

    In reply to: Slider on mobile

    Hey filiski,

    Can you attach a screenshot so that I can see the view you have from your mobile device. Please try adding this to quick css.

    @media only screen and (max-width: 767px){
    .responsive.html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption {
    margin-top: -40px !important;
    }
    }

    Best regards,
    Jordan Shannon

    #759177

    Hi,

    Sorry about that, It slipped my mind to let you know that you need to modify the index.php and add a new menu area to get that horizontal menu on top along with the left menu. Please check this post https://kriesi.at/support/topic/how-to-create-at-one-time-vertical-and-horizontal-menu/#post-743738

    Best regards,
    Vinay

    #759176
    JPOsteen
    Participant

    I would like to remove the top thin line above the fullwidth submenu. Please help. Thanks!

    #759168

    Vinay –

    Thanks, but that’s not what I mean. We want the stock header – with logo and menu – on top right. (see “header” in the graphic I posted)

    They are asking for the left sidebar to go all the way to the top.

    Thanks!

    #759167

    Hi,

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

    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
        max-width: 100% !important;
        width: 1375px;
    }

    Hope this helps.

    Best regards,
    Nikko

    #759159
    Samuel
    Participant

    Hi!
    I’m having some issues with most of the icons on my website. They does not show the way they should. For instance, at the home page you can see the icons on the left of each word (“simple”, “versatile”…) (screenshot 1) screenshot 1, on the search box (magnifier doesn’t show and one can’t distinguish it) (screenshot 2) screenshot 2, at the social icons at the left side on the pre-footer (screenshot 3) screenshot 3, or at the “scroll to top” button on the bottom right side.

    I started editing this website on a Windows PC and then resumed the job on a Mac using Safari. The thing is this issue does not appear when displayed on Safari or through Apple’s iPhones. It’s just a matter going through Chrome, Firefox, Edge, Android…
    When I try to edit the home icons, for instance, I get this weird icons (screenshot 4) screenshot 4 and I’m afraid it’s something related to fonts… I really don’t know what can solve it and why it works just through Safari.

    Help would be really appreciated.

    Thanks in advance.

    #759145
    JPOsteen
    Participant

    I am trying to place a non sticky fullwidth submenu under a color section. Unfortunately, when I have the Sticky Submenu option un-checked then the menu shows up directly at the top of the page and covers the main menu. If I select the Sticky Submenu option, then the menu starts off under the color section where it’s supposed to and then sticks to the top of the page.

    I want the fullwidth submenu to stay connected to the bottom of the color section. Please help. Thanks!

    I have included pictures of what it looks like.

    #759144

    Topic: Slider on mobile

    in forum Enfold
    filiski
    Participant

    Hi.
    I have a problem to see the slider on mobile. The slider is cut and I can’t see the 2 buttons that appear on the desktop version, which is working fine.
    My site is http://www.summitguides.org
    Could you please help me?
    Thank you in advance
    Filippo

    #759125
    Cliffy
    Participant

    Hi guys,

    I have an issue with a blog post. No matter what I do, I can not hide it from my blog post element. I have a number of categories defined for posts. My blog post element does not have the category selected which is associated with the post in question and yet it still appears in my blog page.
    I have a blog page which is for ‘normal’ news items and I have a ‘jobs’ page specifically for jobs.
    My blog page shows posts except those with cateogry ‘jobs’ and my jobs page only shows those posts with category ‘jobs’

    Info is in the private below. It’s bugged me for over 3 months and I’ve only just got around to it, but if you could take a look when you have the time, I’d really appreciate it.

    I did raise this issue a year ago too ;) https://kriesi.at/support/topic/blog-posts-by-categories-displaying-all/

    Many thanks,
    H

    jebaver
    Participant

    Hello:

    I’m making myself nuts with this and even more nuts searching for, trying (and failing) with solutions on forums.

    My problem: putting an iframe, in a code box, in a full width column, on a page, looks fine on computers and larger screens, but on phones, it busts out of the right side, and cannot scroll over. Scroll bars appear when minimized on desktop, but not mobile.

    Tried: changing pixel sizes, different quick CSS suggestions from posts, different page types & elements

    Nothing is working, please help

Viewing 30 results - 83,041 through 83,070 (of 142,736 total)