Forum Replies Created

Viewing 30 posts - 24,001 through 24,030 (of 34,625 total)
  • Author
    Posts
  • in reply to: Shortcode inside button #1032088

    Hey FlatText,
    I took a look at the plugin and it looks like the shortcode creates the button, which you can add with a code block element.
    But if you want a modal popup to add the shortcode to, please read this solution

    Best regards,
    Mike

    in reply to: Submenu in a 2nd line below the main menu? #1032084

    Hey Jan,
    Sorry for the late reply, perhaps one way to create this effect would be to add many more items to your menu so that it wraps into two lines, then set the css to reduce the line height of the menu items so to fit into the header. Here’s a quick example I did:
    2018-11-10-132254
    This is the css I used:

    #avia-menu {
    width: 900px !important;
    }
    li.menu-item,li.menu-item a {
    height: 45px !important; 
    line-height:45px !important; 
    }

    This could still use some fine tuning, but it’s a good base for you to work with.

    Best regards,
    Mike

    in reply to: Alignment content #1032066

    Hey Diana,
    Thanks for the screenshot, Please try this code in the General Styling > Quick CSS field:

    #header_main .container {
    padding-left: 20px !important; 
    }

    Then please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Blog page/post issues #1032062

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    #top .fullsize .flex_column .template-blog .post-title {
    text-align: center !important;
    }

    Best regards,
    Mike

    in reply to: Exclude categories from post navigation in portfolio items #1032055

    Hi,
    I will ask the rest of the team for any ideas, thanks for your patience.

    Best regards,
    Mike

    in reply to: Full width widget under Main Menü #1032046

    Hi,
    I’m having some issues logging in, Please see the screenshot in Private Content area.
    please check the url and any security settings, thanks.

    Best regards,
    Mike

    in reply to: Blog page/post issues #1032043

    Hi,
    Please change your date-code css to this:

    .date-code {
        font-size: 18px !important;
        text-align:center !important; 
    }

    Please ensure to add the closing bracket, I forgot to add it above.

    Best regards,
    Mike

    in reply to: Update enfold theme #1032042

    Hi,
    You will need to create a Envato personal token this page explains how to.

    Best regards,
    Mike

    in reply to: Hide background image on color section #1032035

    Hi,
    I adjusted your css in your Quick CSS to:

    @media only screen and (max-width: 767px) {
    #top #section-mobile-bg .av-parallax {
    background: none !important;
    }
    }

    Please clear your browser cache and check. Also feel free to adjust the 767px to suit.

    Best regards,
    Mike

    in reply to: Enfold on subdomain #1032033

    Hi,
    Glad Rikard could help, shall we close this then?

    Best regards,
    Mike

    in reply to: Update enfold theme #1032032

    Hi,

    @minogig
    please note that often Theme Forest doesn’t change the text of the version number on your download page, please try downloading it anyways and open the style.css in the theme package and check the version at the top.
    It is most likely the v4.5

    Best regards,
    Mike

    in reply to: Blog page/post issues #1032030

    Hi,
    I would like to recommend another way to target the blog content so it’s justified. I imagine this is your goal, if not then please advise.
    First please go to the setting: Enfold Theme Options > Layout Builder > Show element options for developers and enable the option.
    Then in your post, that you are creating with the advanced layout builder, the text block that is going to be your content that you want justified, enter this in the custom class field: justify-text
    2018-11-10-084053
    Then add this css in to your Enfold Theme Options > General Styling > Quick CSS field

    .justify-text p {
    text-align: justify !important; 
    }

    You will be able to add justify-text to as many elements as you like, and it will only effect the elements you wish.
    To adjust the date shortcode, please add the custom class date-code in the custom css field of the code block element, and add this css to your Quick CSS:

    .date-code {font-size: 12px !important;}

    please adjust to suit.

    To show post views, please try a plugin such as: Post Views Counter, I have not tried this one, but there are many to choose from.

    Best regards,
    Mike

    Hi,
    @bcndisseny sorry, you will need to update manually this time to have the correct files and settings to automatically update in the future.
    If you would like assistance with this, please open a new thread and include your admin login & ftp access in the Private Content area, but as this is not your thread such info here will not be private.

    Best regards,
    Mike

    in reply to: How do I add more fonts? #1032016

    Hi,
    Thank you for clarifying, we can assist with some css to assign the font elements for your landing page.
    Please link to one landing page & explain the font options you would like for it, once we create the css for it you will be able to use it as a model it for other landing pages, if you like, by making small changes.
    Here is an example that effects one page:

    #top.page-id-1226 #wrap_all p {
    font-family: "Open Sans" !important; 
    font-size: 18px !important; 
    color: #555555 !important; 
    line-height: 1.2em !important; 
    font-weight: 400 !important; 
    }

    you could also set the headings with another set of rules like this.

    Best regards,
    Mike

    in reply to: Blog page/post issues #1031911

    Hey hbourdillon,
    Q1: (i,ii,iv): Please try this code in the General Styling > Quick CSS field:

    #top.page .text-sep.text-sep-date,#top.page .post_delimiter,#top.page .slide-meta-comments {
    display:none !important;
    }

    Q1: (iii): I believe that you are using the advanced layout builder for your blog post, in which case you will need to add your excerpt manually. To enable the manual excerpt field click “screen options” at the top of your page, then check the excerpt box. Then the “excerpt” field will appear at the bottom of the page.
    2018-10-30-224049
    Q2: (i): since I believe you are using the advanced layout builder for your posts you will need to add the “post published” shortcode. Try adding this code to the end of your functions.php file in Appearance > Editor:

    /*post date shortcode - [post_published] */
    function shortcode_post_published_date(){
    	return get_the_date();
       }
       add_shortcode( 'post_published', 'shortcode_post_published_date' );

    and then add this shortcode in a code block element to your post where you want the date to show:

    [post_published]

    To justify your content for your site, Please try this code in the General Styling > Quick CSS field:

    p {
        text-align: justify !important; 
    }

    Then Please clear your browser cache and check.
    If this doesn’t fully work, then add the code in the WordPress > Customize > Additional CSS field.

    Best regards,
    Mike

    in reply to: Hide tool tips on icon grid #1031907

    Hey brentd99,
    Thank you for the image, on my localhost the demo flip-box didn’t show a tooltip, so it must be created slightly different than yours.
    We have a couple of scripts that can remove this, so please try this one by adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
      <?php
      }
      add_action('wp_footer', 'custom_script');

    If this doesn’t help please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Border Around Active Menu #1031906

    Hey mikeens,
    Please try this css, I added “first-child” so the sub-menu items won’t be effected:

    /*CHANGE ACTIVE MENU – BORDER – MARGIN – PADDING – BACKGROUND-COLOR – BORDER-RADUIS */
    #header .av-main-nav .current-menu-item > a:first-child > .avia-menu-text
    {border:2px solid rgba(55, 55, 55 ,1) !important;margin-left:5px !important;padding:12px !important;background-color: rgba(255, 188, 8, 0.75) !important;border-radius: 8px !important;}

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How do I add more fonts? #1031905

    Hey laceym002,
    You can add fonts by uploading them to Enfold Theme Options > Import/Export > Custom Font Manager
    Please read this documentation and also read about “Managing font variants
    But I’m not sure what you mean by: “All 6 of my fonts are “taken” by fonts I use on the website.
    After you upload them if you find that you are having trouble assigning the font to your opt-in page let us know and we can assist with some css.
    Please include a admin login in the Private Content area.

    Best regards,
    Mike

    in reply to: Font Color – Blog post text #1031904

    Hey SileeBailey,
    Typically you can change the text color for your entire site at Enfold Theme Options > Advanced Styling and choose an element tag such as “p”
    But as you are requesting the change only on your blog posts, Please try this code in the General Styling > Quick CSS field:

    #top.single-post .post-entry p,#top.single-post .post-entry li,#top.single-post .post-entry a,#top.single-post .post-entry .post-meta-infos span,#top.single-post .post-entry .post-meta-infos time {
        color: #555555 !important; 
    }
    

    This will effect only the article and not the sidebar, if you want to include the sidebar please let us know. This might be a nice effect. Also feel free to adjust the color to suit.
    Then Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to change main menu link color on individual blog pages #1031902

    Hey SileeBailey,
    I took a look at your site and saw your issue for the single posts and archive pages. Please try this code in the General Styling > Quick CSS field:

    #top.single-post #header .av-main-nav > li > a .avia-menu-text,#top.archive #header .av-main-nav > li > a .avia-menu-text {
        color: #555555 !important; 
    }
    #top.single-post .header_color .avia-menu-fx,#top.archive .header_color .avia-menu-fx {
    background-color: #555555 !important; 
    }

    I also included the line under the active menu item, please feel free to adjust the color to suit.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Shop page footer different to rest of site… #1031897

    Hi,
    I see that you are using the advanced layout builder shortcodes for your shop page, typically this does not play well with the way the Advanced Layout editor works.
    This is why your products are not showing full width across and your footer is not full width.
    To fix this please create a new page and copy your ALB shortcodes to it, so it will become your “shop page”, and don’t use your woocommerce shop page. Please refer to the documentation link above.
    Your new page will work the same and look correct.

    I assume you know how to copy your shortcodes with the debugger, but I will link to it should someone else reading this post later want to know, Enable Avia Layout Builder Debug

    Best regards,
    Mike

    in reply to: Replace span.iconfont with img or remove #1031891

    Hi,

    @nessarox
    , I see you have found a way to replace the icon with your logo, but if you would like to remove the icon, Please try this code in the General Styling > Quick CSS field:

    #top.archive .slide-entry-wrap .slide-image {
    display:none !important;
    )

    Best regards,
    Mike

    in reply to: Blog Page Text Under Title Issue #1031890

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,

    @migduvednok

    Ok, shall we close this then?

    Best regards,
    Mike

    in reply to: Icon Import is not working #1031887

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Burger Menu showing duplicate titles on hover #1031689

    Hi,
    Please try removing all of your custom css temporary to see if the error occurs again, it could be a “hover” rule written wrong.
    If this solves, add your css back a little at a time to find the error. Once you find the error we can help rewrite the rule to avoid the error.
    If removing all of the css doesn’t help, please try removing any custom scripts or functions in the functions.php
    Please let us know about your findings.

    Best regards,
    Mike

    in reply to: Page settings not working #1031681

    Hi,
    Sorry for the late reply, I took a look at your pages and see that on the page that has the errors, I see that your contact form in the gray section has been squeezed into a area that is 10% wide by this css:

    .page-id-28 .avia-builder-el-7 {
      width:10% !important; 
    }

    I commented this rule out for you, so the form now shows correctly.
    But as for the widget area, on the post that you say is correct, there is a “widget area element” showing the latest posts, and on the page that is not right, there is not this widget area or the “social share buttons” element.
    In your post above you said they are two pages, but one is actually is a post, perhaps you have made a mistake in your links above? Please advise.

    Best regards,
    Mike

    in reply to: Woocommerce and Enfold setup #1031665

    Hey prana3stil,
    Sorry for the late reply, I believe that these questions are addressed in our Woocommerce Shop documentation
    Please let us know if this address all of your questions.

    Best regards,
    Mike

    in reply to: Issues with header when updating Enfold #1031627

    Hi,
    Thank you, we are glad to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Layer Slider Disappeared/Links missing #1031578

    Hey crossroadsabc,
    Sorry for the late reply, I believe you have rolled your update back to resolve these errors that occurred.
    When you updated via FTP did you delete the old theme folder before uploading the updated theme folder, or did you overwrite the old theme folder with the new?
    I ask because overwriting the theme folder will leave old files behind and cause errors.

    Since we can’t see the errors to investigate, does your webhost offer staging sites? That is typically a option in your cPanel to clone your site to a temporary address for testing, Here are some screenshots of what it would look like:
    staging-1
    staging-2
    If your webhost does offer this, could you create this and give us ftp and admin access so we can try to recreate your issue?

    Best regards,
    Mike

Viewing 30 posts - 24,001 through 24,030 (of 34,625 total)