Viewing 30 results - 6,061 through 6,090 (of 142,897 total)
  • Author
    Search Results
  • #1434617

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
      .responsive #top #wrap_all #header .main_menu {
        position: fixed;
        padding-right: 30px;
      }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1434613

    Hi,

    Great, I’m glad that 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

    #1434604

    Well, I found a little hiccup: Whether I use quick css or Advanced Styling > Button … The changes show up on desktop version of site, but not on mobile.

    I do not see an option for applying the changes to mobile as well in Advanced Styling . . . is there a way to apply the changes to mobile where it doesn’t look enormous compared to the font etc around the mobile buttons?

    J

    #1434601

    Oh, I just found that since changing the button size is just a matter of increasing padding, I can do that in Advanced Styling > Buttons > Padding Top/Bottom and Padding Left/Right.

    I can tweak font size there too so the button doesn’t look too large for the font.

    #1434592

    Hi,
    Yes that is what I see, did you try to change your server setting as posted above and the Yoast support thread above?

    Best regards,
    Mike

    #1434584

    Hey Nihru,
    Thanks for your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .main_color .container .av-masonry-load-more {
    	color: #ffffff;
        border-color: #759c1b;
        background-color: #97be3d;
        width: 250px;
        padding: 15px 0;
    
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    the expected results:
    Enfold_Support_4725.jpeg

    Best regards,
    Mike

    #1434583

    Hi,
    Thanks for your patience, it looks like you have a customized menu item, I added this css to correct:

    @media only screen and (max-width: 767px) { 
    	.av_main_nav_header.av_menu_right #header_main .main_menu-uber {
        top: 0px;
    	}
    	#top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner, #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::before, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::before, #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::after, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::after {
        background: #326295 !important;
        opacity: 1;
    }
    }
    .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::before, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::before, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::after, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::after {
        background: #326295;
        opacity: 1;
    }
    #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner, #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::before, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::before, #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::after, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::after {
        background: #fff;
        opacity: 1;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    #1434582

    You’re right! I missed that tiny download icon next to the font. Rather than deal with that, I changed the Heading Font to Arial and used the Quick CSS to set the font-weight to 600. Now it looks the same on laptop, table and mobile. Thanks!

    #1434573

    Hi,
    Thanks for your patience, I found that your site is exhausting it’s allowed memory size in /public_html/wp-includes/class-wpdb.php on line 2320, I noticed that you have some javascript in your page and sometimes these are also executed in the backend, so I moved it to your WP Code plugin as a javascript snippet.
    I then created a shortcode to display your getresponse-form snippet and added it to your WP Code plugin:

    function getresponse_form_shortcode($atts) {
        $atts = shortcode_atts(
            array(
                'form-id' => '', 
                'e' => '1', 
            ),
            $atts,
            'getresponse-form'
        );
        $form_id = $atts['form-id'];
        $e = $atts['e'];
    
        if (empty($form_id)) {
            return '<p style="color: red;">Error: Form ID is missing</p>';
        }
        $html = '<getresponse-form form-id="' . esc_attr($form_id) . '" e="' . esc_attr($e) . '"></getresponse-form>';
        return $html;
    }
    add_shortcode('getresponse-form', 'getresponse_form_shortcode');

    Then I added [getresponse-form] to your page to show the form snippet.
    While this didn’t solve the issue directly, it ruled out the possibility of the javascript causing the issue in the backend. I found a Yoast support issue that points to /public_html/wp-includes/class-wpdb.php on line 2320 as a known Yoast issue and I tried adding the snippet but this didn’t help, so please try changing your server setting and see if this helps.
    max_execution_time = 300
    PHP max input variables = 10000
    PHP time limit = 300
    Max input time = 120

    Best regards,
    Mike

    #1434568

    Hi,
    Thanks for your patience, when I check your Displayed Everywhere widget is empty, so I assume that you have sorted this out.
    Please note that we ask that each thread stays on a specific topic, this helps us provide better support and helps other users find solutions based on the opening subject line quicker. For further questions please open a new thread fir each specific issue
    Thank you for your patience and understanding and for using Enfold.

    Best regards,
    Mike

    #1434559

    Hi,

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

    Best regards,
    Rikard

    fogelfish
    Participant

    When I attempt to search this forum for a topic, the only server response I get is “There has been a critical error on this website. Learn more about troubleshooting WordPress.” This is happening to me no matter what browser I use. Is anyone else experiencing this? Is there a fix?

    • This topic was modified 2 years, 1 month ago by fogelfish. Reason: To make it clear this is not about my own website; this is about the kriesi.at forum
    #1434543

    I’m getting audit messages that tap targets are too small, especially on mobile devices. They look fine to me on desktop, but my SEO company is saying that I should make them a bit larger. There’s a link below that shows the type of buttons I have around most of the site (I think they are button elements, either medium or large size).

    #1434530
    ludgerf
    Participant

    Hallo,
    wie bekomme ich eine Sidebar rechts neben ein Accordion-Menue?

    Seiten-Aufbau Law Theme:

    • Header Logo + Hauptnavigation
    • Banner Full fullwidth
    • darunder Color-Section mit Accordion
    • Footer

    Das hier habe ich nicht hinbekommen:
    sidebar enfold

    Vielen Dank

    • This topic was modified 2 years, 1 month ago by ludgerf.
    #1434529

    I removed the CSS since it didn’t affect the mobile display. Any idea why the Special Heading shows a different font on mobile and also on an iPad than on a laptop? By selecting the font in General Styling: Fonts, shouldn’t the font be the same on every device regardless of screen size?

    Were you able to see the different fonts on your mobile device compared to a laptop?

    #1434519

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    Hi,

    Great, I’m glad that we could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1434496

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1434478
    divinecurio
    Participant

    Hi I have read through sevceral topics, added and subtracted code, but my burger menu is not sticking. I just want the 3 lines of the burger menu to follow the scroll and be viewable, please?

    http://www.movewithmaria.co.uk

    #1434477
    amministrazione187
    Participant

    Hi there. I’m trying to have a vertical/portrait video as only background of a slideshow that fits in a smaller box at the center in desktop and tablet view, and like fullscreen in mobile view. I could set the project size but the video (background) doesn’t fit the div: it’s zoomed. I’ve even tried different sizes, “contain” and “stretch” modes but nothing seems to fit it. What’s wrong?

    #1434470

    In reply to: Need more media query

    Hi Ismael,

    Thanks for your reply. Here is what I did.

    1. I put your code into Appearance > Customize > Additional CSS and published > not working.
    2. I go to front-page and then Masonry > Styling > Column and change the column of desktop ( 990px ) back to default and update
    3. I works like a charm ! I can change max-width to fit my needs later.

    I have 2 more questions about this.

    1. If I put your css code into custom.css and purge all cache. Why custom.css not loaded to client when refreshed ?
    2. Now I changed the max-width to 1365 for iPad screen in horizontal and I found there is an empty space below ( at the bottommost red rectangle as in attached image link ). Is there any way around to expand the masonry gallery’s height to min-height of screen height ?

    Thank you so much

    Chatawat L.

    #1434466

    In reply to: Need more media query

    Hi,

    Thank you for the info.

    Are you trying to break the items into a single column on iPad view? If so, then you can add this css code to manually adjust the width of the masonry items on larger tablet screens.

    @media only screen and (min-width: 990px) and (max-width: 1366px) {
      .responsive #top .av-masonry .av-masonry-entry {
        width: 100%;
      }
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    #1434449

    I do have Nginx Helper installed, but don’t know if that is effecting anything here.

    For your information, I found that with ‘CSS File Merging And Compression’ off, I didn’t need your suggested CSS. I already had the following CSS in place and it fixed what was needed previously and still does without the compression on:
    .author {
    display: block;
    font-weight: bold;
    color: #000;
    margin-top: -5px;
    }
    span.mentioned-quoted {
    display: block;
    line-height: normal;
    margin: 4px 0 0;
    }
    A little of this is redundant to your suggestion and I tried commenting it out and only using your CSS suggestion. This works better for my display. Thought I’d report this for further development.

    #1434441

    To revisit this, I’ve seen it change on other websites. I tried to change all the color in the General Setting Logo Area, but nothing changes the very top. Any ideas?

    I need something like this: <meta name=”theme-color” content=”#39ff14″/>

    And here is an example of a website that has a different theme, but has the top bar that is red: https://drive.google.com/file/d/1c32sHfzOvdCk7YHgs-toEP_d7sUhkSW0/view?usp=sharing

    • This reply was modified 2 years, 1 month ago by bemodesign.
    #1434428

    Hi,

    Great, I’m glad that you found the problem. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1434427

    In reply to: gradient color in h2

    Hi,

    Great, I’m glad that 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

    Hi,

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

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all .main_menu {
        position: inherit;
      }
      .responsive #top .av-logo-container .avia-menu {
        width: 100%;
      }
      .responsive #top .av-main-nav {
        display: table;
        margin: 0 auto;
      }
      .responsive #top .logo {
        width: 100%;
      }
      .responsive .logo img {
        display: table;
        margin: 0 auto;
      }
    }

    Best regards,
    Rikard

    #1434421
    This reply has been marked as private.
    #1434416

    Hi Ismael,
    The logo displays and should as seen on the screen capture I provided earlier. I am looking for the burger menu to stay top right side of the logo not bump down.

    #1434413

    Hey Julie,

    Thank you for the inquiry.

    Did you configure the default logo not to display on desktop view? The reason the burger menu is pushed beneath the header is because of the logo container, which receives this style on smaller screens.

    .responsive #top .logo {
        position: static;
        display: table;
        height: 80px !important;
        float: none;
        padding: 0;
        border: none;
        width: 80%;
    }

    To keep the logo hidden on mobile view, you can add this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .logo {
        display: none;
      }
    }
    
    

    Best regards,
    Ismael

Viewing 30 results - 6,061 through 6,090 (of 142,897 total)