Forum Replies Created

Viewing 30 posts - 10,831 through 10,860 (of 14,834 total)
  • Author
    Posts
  • in reply to: Change Font Size for bbforum #387470

    Hi datapool99!

    Send us a link to your page and take a screenshot highlighting the exact areas your wanting to change and we’ll give you some CSS to use.

    Cheers!
    Elliott

    in reply to: Sidebars on the right side #387468

    Hey!

    Try clicking on “Screen Options” in the top right hand corner when editing your page and make sure the “Layout” option is checked.

    If it does not display after doing that then try deactivating all plugins and send us a WordPress login so we can take a look.

    Regards,
    Elliott

    in reply to: how use magazine element #387465

    Hi!

    Well I’m not sure what was causing it but I setup your blog page in the Enfold settings and it appears to be working correctly now.

    Regards,
    Elliott

    in reply to: Progress bars not working #387443

    Hey!

    Looks like it didn’t get updated. I’ll add it to our bug list. Add this to your custom CSS in the meantime.

    .green-bar .bar{
    background: #83a846 !important;
    }

    Cheers!
    Elliott

    in reply to: Issues Editing and Saving in Advance Editor. #387435

    Hi!

    Does it do the same when you create a new test page and add some columns to the page? I’m guessing it’s some kind of hiccup only on the homepage. I would try deleting and recreating it.

    If your still having problems then send us a WordPress login and we’ll take a look.

    Regards,
    Elliott

    Hey!

    Ok so it looks like your talking about the bottom of your homepage instead of the links you provided.

    You can use this CSS to change their size.

    #top .fullsize .template-blog .blog-meta { width: 300px !important; }
    

    You can find the actual image size on line 100 in the functions.php file.

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    

    Best regards,
    Elliott

    in reply to: page editing #387430

    Hey!

    You should be able to set the marker to the exact location you need if your copying the embed code from the Google website.

    Does it still display weird in the default WordPress theme? If so then it would be best to consult Google support about this, https://support.google.com/.

    Best regards,
    Elliott

    in reply to: Enfold Update / Woocommerce #387426

    Hey!

    You can add login and register links to your menu or your secondary menu in the header.

    You would just create a custom link and set it to your domain name and then add /wp-login.php to the end of it.

    There are lots of plugins out there to make it easier, https://wordpress.org/plugins/login-logout/.

    I’m not sure about your second question though. Can you take a screenshot and highlight what is going on?

    Best regards,
    Elliott

    • This reply was modified 10 years, 12 months ago by Elliott.
    in reply to: 3 or more buttons possible in full width easy slider? #387420

    Hey!

    The code I posted before should be removing that.

    .avia-caption-content > *:last-child {
      display: none !important;
    }

    Maybe you have a typo somewhere in your CSS. Paste all of your custom CSS here.

    And you can use this CSS to remove the gap in between the sliders.

    #after_full_slider_0 {
      display: none !important;
    }

    Best regards,
    Elliott

    in reply to: Resizing header background image for mobile #387418

    Hey!

    I’m not sure I understand. Your header looks fine on my end. The background is not leaking into the slider or anything.

    Take a screenshot and highlight what your trying to do so we can get a better idea.

    Cheers!
    Elliott

    Hey!

    Perhaps your talking about the sidebar area? If so then set your page layout to no sidebar or place the portfolio shortcode inside a 1/1 column or something similar.

    You can upload screenshots to imgur.com or a similar hosting service and then click on the “img” button when writing a post to include it.

    Regards,
    Elliott

    in reply to: Responsive Under 1024px #387408

    Hi hamiltonbuchanan!

    That seems to be working fine on my end. What device are you using? You probably need to increase the 1024px value a bit.

    Cheers!
    Elliott

    in reply to: Portfolio grid – unavailable categories field #387403

    Hey TomaszStelmach!

    Let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. This will ensure your using the latest version, 3.0.7.

    If the above two steps does not help then send us a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    in reply to: Höhe Menüpunkte #387402

    Hi ResQ78!

    Try adding this to your custom CSS.

    #top .av-main-nav ul a { padding: 0px 15px !important; }
    

    Regards,
    Elliott

    in reply to: Video not displaying #387398

    Hey marsy!

    I created a test page and uploaded a sample mp4 video and it seems to work fine. Do you have an MP4 file available?

    We use the mediaelement.js script, http://mediaelementjs.com/, so if you have a video in some of those formats then it should work on all devices.

    Or you could try uploading your video to youtube or vimeo and display it that way. I’m not sure if they accept m4v or not though.

    Cheers!
    Elliott

    in reply to: Development sites #387392

    Hey vidaelf!

    It sounds like a javascript error. Deactivate all plugins and completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    To move your child theme you will need to upload a copy of it into the WordPress theme directory of your localhost and then export the settings in Dashboard > Enfold > Import/Export.

    Best regards,
    Elliott

    in reply to: Re-order Recent Portfolio Additions? #387388

    Hi!

    I didn’t see the code anywhere in your functions.php file or in the parent theme functions.php file. Add that in to the bottom of the file and deactivate the Post Types Order plugin.

    Regards,
    Elliott

    in reply to: Facebook Open Graph Not Working Correctly #387382

    Hi!

    Send us a WordPress login and we’ll take a look.

    Regards,
    Elliott

    in reply to: Problem with forms #387380

    Hi!

    Ok I edited your last contact form and removed the spans and inline CSS you had on the labels and I think that is what was causing the problem because I could then see the black text you were referring to.

    Add this to your custom CSS to turn it white.

    .avia_ajax_form h3 { color: white; }
    

    And then edit the rest of your contact forms in the page and remove all of the spans for the labels.

    Best regards,
    Elliott

    in reply to: More tag not working in posts #387375

    Hey!

    Send us a WordPress login and a link to the page please.

    Cheers!
    Elliott

    Hey!

    Add this to your custom CSS.

    #top .av-main-nav ul ul { left: 207px !important; }
    

    Cheers!
    Elliott

    in reply to: Default Sidebar for Category or User #387366

    Hi!

    Open up /enfold/sidebar.php and on line 44 you should see this.

    if($custom_sidebar)
    

    Add this above it.

    if ( is_author() ) { $custom_sidebar = "author"; }
    if ( is_category() ) { $custom_sidebar = "category"; }
    

    And then create two new widget areas in Dashboard > Appearance > Widgets named “author” and “category”.

    Regards,
    Elliott

    in reply to: WPML language switcher not showing in Enfold Theme Options #387362

    Hey!


    @youtea
    , If your still having problems after doing the steps in my previous post then send us a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    Hi!

    I see it today. It seems to only happen in Chrome when you set the color section height to 100% instead of specifying a pixel value.

    I’ll flag this for the rest of our team to take a look.

    Regards,
    Elliott

    in reply to: Replace or add icon to included icons #387292

    Hey dalboslampen!

    I checked your link but I’m seeing the second icon on my end. Did you already get this sorted?

    You can do this to add additional icons, http://vimeo.com/75743285, there are quite a few icons there so you can probably find something similar if your still looking for one to use.

    Cheers!
    Elliott

    in reply to: Weird quotes in contact form #387287

    Hey mwestermann!

    That’s an H3 so it’s probably something you added to the “Form Title” setting.

    You can use this CSS to get rid of it.

    .avia_ajax_form h3 { display: none !important; }
    

    Send us a WordPress login and update Enfold to 3.0.7 if your still having trouble.

    Regards,
    Elliott

    in reply to: Portfolio Item gaps #387283

    Hey heca74!

    I viewed your referenzen link which had the portfolio ajax preview but it already had gaps in between each entry. Did you get this sorted?

    If your trying to do something else then take a screenshot and highlight your intentions so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Cant edit any page #387279

    Hi pjnettitude!

    Let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    If your still having problems then send us a WordPress login and we’ll take a look.

    Cheers!
    Elliott

    in reply to: Gridrows with content are not responsive ? #387276

    Hey fortbliss!

    I’m sorry but I’m not sure I understand what your trying to do. Take a screenshot and highlight what is going on so we can get a better idea.

    Cheers!
    Elliott

    in reply to: How to insert a small bar at the bottom of the header #387270

    Hey fortbliss!

    We could add a border with CSS but then that would stick to the header as you scroll down the page. I think what your currently doing with the color section is a good workaround.

    Cheers!
    Elliott

Viewing 30 posts - 10,831 through 10,860 (of 14,834 total)