Forum Replies Created

Viewing 30 posts - 9,331 through 9,360 (of 25,536 total)
  • Author
    Posts
  • in reply to: DropDown arrow for sub menu fullwidth element #1226473

    Hi Morticka,

    I’ll request for help from my colleagues since I could not see the issue on my end.

    Best regards,
    Nikko

    in reply to: Responsive Settings in Mobile and Tablet #1226451

    Hi lbeneby,

    You can take advantage of adding widget to the header: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Modify Icon List in Theme Enfold #1226447

    Hi s29ers,

    It should show properly now.
    I only checked Load jQuery in your footer in Enfold > Performance which seems to fix it :)

    Best regards,
    Nikko

    in reply to: DropDown arrow for sub menu fullwidth element #1226343

    Hi Morticka,

    Can you tell us what device and browser you are using? like iphone + safari or iphone + chrome or maybe android phone + chrome, etc.

    Best regards,
    Nikko

    in reply to: Responsive Settings in Mobile and Tablet #1226319

    Hi lbeneby,

    Please replace this code that I gave:

    @media only screen and (max-width:479px) {
      .responsive #top #header #header_main .inner-container .widget .avia-button {
        display: block;
        margin-left: 0 !important;
        padding: 12px !important;
        width: 100% !important;
      }
    
      .responsive #top #header #header_main .inner-container .widget br {
        display: none;
      }
    }

    with:

    @media only screen and (max-width:479px) {
      .responsive #top #header #header_main .inner-container .widget .avia-button {
        display: inline-block;
        margin-left: 0 !important;
        padding: 12px !important;
        width: 100% !important;
      }
    
      .responsive #top #header #header_main .inner-container .widget .avia-buttonrow-wrap > .avia-button:first-child {
        width: 59% !important;
      }
    
      .responsive #top #header #header_main .inner-container .widget .avia-buttonrow-wrap > .avia-button:nth-child(2) {
        width: 39% !important;
      }
    
      .responsive #top #header #header_main .inner-container .widget br {
        display: none;
      }
    }

    Best regards,
    Nikko

    in reply to: Footer Breakpoint on mobile #1226316

    Hi SK-RE,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi Rob Wright,

    Can you give us both admin access and FTP access on your site?
    Just post the credentials in private content.

    Best regards,
    Nikko

    in reply to: Remove phone from Header only for mobile devies. #1226292

    Hey Reservic,

    This is the CSS code you can use to hide it on mobile devices:

    @media only screen and (max-width:767px) {
      #header_meta .phone-info {
        display: none;
      }
    }

    Best regards,
    Nikko

    in reply to: Footer Breakpoint on mobile #1226291

    Hey SK-RE,

    Please add this CSS code in Quick CSS, located in Enfold > General Styling:

    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all #footer .flex_column {
        width: 100% !important;
        float: none;
        margin-right: 0 !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Include php in main menu #1226288

    Hi joefraser,

    I’m not sure I understand fully your question, but if you’re referring on adding PHP in the main menu via the WordPress Dashboard > Appearance > Menu, then definitely this isn’t possible.
    However, if it’s via code, there are hooks that you can use.

    Best regards,
    Nikko

    in reply to: How do I style ? #1226286

    Hi illerrre,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Content Slider Dots #1226285

    Hi demicoli00,

    Can you try using this CSS code:

    #top .avia-content-slider-element-container .avia-slideshow-dots {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    Best regards,
    Nikko

    in reply to: Transform Icons #1226283

    Hi demicoli00,

    Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .av_font_icon {
        transition: all 0.3s ease;
    }
    
    #top .av_font_icon:hover {
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    Best regards,
    Nikko

    in reply to: Responsive Settings in Mobile and Tablet #1226281

    Hi lbeneby,

    It’s possible however it doesn’t look good because of the length of the text: Explore our Services (this would show as 2 lines) while Client Login remains at 1 line.

    Best regards,
    Nikko

    in reply to: installation problem and expired link #1226280

    Hi MantrAle,

    I’m glad that it helped :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Demo content not loading correctly #1226279

    Hi Thirdware,

    The images are not imported probably due to some security in server settings.
    I think adding those unimported images should fix it.
    Can you give us FTP access? please post in the credentials in private content.

    Best regards,
    Nikko

    Hi Courtney,

    We’re glad that this is fixed :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: TinyMCE buttons not showing up.in text block #1226271

    Hi byBuko,

    Can you give us temporary admin access? so we can try to check the backend, please put the information in Private Content.
    But when there’s this type of inconsistency even when you are not doing anything most likely points to server issue, maybe memory is insufficient for example.

    Best regards,
    Nikko

    in reply to: Responsive Settings in Mobile and Tablet #1226269

    Hi lbeneby,

    Can you try adding this CSS code as well, it won’t be exactly the same especially with the position of the menu and logo, but it should look a lot better:

    @media only screen and (max-width:980px) {
      html.html_boxed {
        padding: 0;
      }
    
      #top #header .av-logo-container {
        width: 100% !important;
      }
    
      .responsive #top #header #header_main .inner-container .widget {
        width: 50%;
      }
    }
    
    @media only screen and (max-width:479px) {
      .responsive #top #header #header_main .inner-container .widget .avia-button {
        display: block;
        margin-left: 0 !important;
        padding: 12px !important;
        width: 100% !important;
      }
    
      .responsive #top #header #header_main .inner-container .widget br {
        display: none;
      }
    }

    Best regards,
    Nikko

    Hi BrendanG,

    Can you try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    @media only screen and (max-width:767px) {
      #top .av_tab_section .tab_inner_content table td {
        display: block;
        width: 100% !important;
        height: auto !important;
        border: 1px solid #e1e1e1;
        margin-bottom: -1px;
      }
    }

    Best regards,
    Nikko

    in reply to: The send-to email for the enfold contact form. #1226260

    Hi Kaleidoscope_Advertising_and_Design_Inc,

    Is there a way to make the space between lines of text in a widget, in the Footer section, less?
    Yes, however, you’ll need to use Custom CSS in order to make it specific only in footer widgets.
    Go to Enfold > General Styling > Quick CSS, and add this CSS code:

    #footer .widget p {
        line-height: 1.8;
    }

    just change the line height value.

    Is there a way to have an image in the footer area of every page except the landing page?
    Yes, and it’s also using Custom CSS however we’ll need the link of your landing page so we can try to inspect it and give you the right code for it.

    Best regards,
    Nikko

    in reply to: Easy Slider Title CSS not working #1226257

    Hi demicoli00,

    Thanks for giving us admin access.
    I have duplicated your homepage (link in private content), then removed the h2 with inline attributes in the slide title and I could see font sizes working properly even in the mobile version.
    I’m not really sure if I understood the issue but I could see it working properly, can you tell us maybe what you’re trying to achieve?

    Best regards,
    Nikko

    in reply to: installation problem and expired link #1226255

    Hi MantrAle,

    I have checked your site and it seems you have already installed Enfold (latest version).
    I believe you have already resolved this, let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: DropDown arrow for sub menu fullwidth element #1226254

    Hi Morticka,

    I apologize for the delayed response, please flush out your browser cache.
    I have checked it on my mobile phone and in an iPad, and the hamburger menu is showing as white and clicking on the tab doesn’t show similar behavior on both devices.

    Best regards,
    Nikko

    in reply to: Demo content not loading correctly #1226013

    Hi Thirdware,

    Please try to go to Enfold > Performance > Disabling of template builder elements set this to Always load all elements
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Automatically use ALB instead of Blocks? #1226009

    Hi CharlieTh,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

    in reply to: Font Sizes & Options #1226004

    Hey h6carr,

    You can change it by editing the Text Block and go to Styling (tab), and change font size there.
    Here’s a screenshot https://imgur.com/F9oT75w

    Best regards,
    Nikko

    in reply to: installation problem and expired link #1226002

    Hey MantrAle,

    Are you using godaddy?
    Maybe the solution on this post would help: https://ph.godaddy.com/community/Managing-WordPress/Wordpress-theme-upload-error-quot-The-link-you-followed-has/td-p/101292
    Make these changes in PHP Options to correct:

    max_execution_time   180
    memory_limit   512M or your highest available
    post_max_size  32M
    upload_max_filesize   64M

    Best regards,
    Nikko

    in reply to: Modify Icon List in Theme Enfold #1225684

    Hi s29ers,

    You have 3 Enfold themes, can you remove the other 2?
    Also, can you give us permission to temporarily disable your plugins? I tried this with Health Check & Troubleshooting however it gets fixed if I enable troubleshooting mode which makes me think that this might be some caching issue and some outdated js file is being fetched that forces the height to change.

    Best regards,
    Nikko

    in reply to: Change sidebar width #1225670

    Hi xyzb,

    I think you can adjust the Maximum Container width in Enfold > General Layout > Dimensions (tab).
    Then both sidebar and main content should expand, then you can still use the code I gave and maybe reduce the width from 90% to 85% (or adjust as you see fit).

    Best regards,
    Nikko

Viewing 30 posts - 9,331 through 9,360 (of 25,536 total)