Forum Replies Created

Viewing 30 posts - 12,391 through 12,420 (of 14,834 total)
  • Author
    Posts
  • in reply to: Media library image upload problem #370721

    Hey!

    What permissions do you have set on your /wp-content/uploads/ directory? Try 755 or 777 to see if that works. I would get in contact with your hosting provider to see what they recommend.

    Regards,
    Elliott

    in reply to: How to get site title AND subtitle AND logo in the header? #370719

    Hi ocetechnologies!

    Add this to the bottom of your functions.php file.

    add_action( 'ava_after_main_menu', 'enfold_customization_add_stuff_to_header' );
    function enfold_customization_add_stuff_to_header() {
    	echo '<span class = "site_title">'.get_bloginfo("name").'</span>';
    	echo '<span class = "site_description">'.get_bloginfo("description").'</span>';
    }

    And you can use this CSS to style them.

    .site_title {  }
    .site_description {  }
    

    Best regards,
    Elliott

    Hi!

    Have you considered using four columns? That will have it expand to the full width. If you still want to use three columns then you can use this CSS to make it full width.

    #top #header .avia_mega_div {
        max-width: 1310px !important;
    }
    #header .nine.units {
        width: 1200px !important;
    }

    Best regards,
    Elliott

    in reply to: Column border #370713

    Hi anubis!

    Your just using two 1/2 columns there? Try adding a color section and then place the columns inside the color section and then when you edit the color section add this to the section ID option.

    custom_design
    

    And then add this to your custom CSS.

    #custom_design .entry-content-wrapper > .flex_column:first-child {
        border-right: 1px solid black;
    }

    That will display a solid line separating the columns.

    Cheers!
    Elliott

    in reply to: Media upload http error but showing in Media in dashboard #370712
    in reply to: Problems in IE10 #370710

    Hi!

    I’m seeing a 404 not found error on your child theme stylesheet in Firefox. It looks like you renamed the Enfold theme folder and then your trying to import that into your child theme style.css file which you should not do. Remove this line.

    @import url("../wp-content/themes/positive-theme/style.css");
    

    Or is that a stylesheet from a completely different theme? If so then switch it to this.

    @import url("../positive-theme/style.css");
    

    Regards,
    Elliott

    in reply to: Security breach?! #370706

    Hi!

    If your not sure where it came from then I would also consider changing your passwords and contacting your hosting provider to let them know about this to see if they have any suggestions.

    Also see here, http://codex.wordpress.org/Hardening_WordPress, for tightening your WordPress security.

    Regards,
    Elliott

    in reply to: Shop Page not responsive #370700

    Hi!

    Take a screenshot and highlight how your trying to change it so we can get a better idea.

    Regards,
    Elliott

    in reply to: Masonry Gallery url links and rollover #370699

    Hey!

    I only see vimeo in your page.

    Try using this format.

    http://www.youtube.com/watch?v=G0k3kHtyoqc
    

    Just copy the video code from your URL, ggC7ZP1pR2U, and add it to the URL above.

    For the masonry on mobile, your trying to hide the excerpt but keep the title displaying correct? Add this to your custom CSS.

    @media only screen and (max-width: 479px) {
    figcaption .av-masonry-entry-content {
        display: none !important;
    }
    }
    

    Cheers!
    Elliott

    in reply to: Enfold Blog Pages and Template Builder #370696

    Hey bjornwallman!

    The blog layout can be changed in Dashboard > Enfold > Blog Layout > Blog Style. The archives will also take on this style. Besides the four styles listed there is no feature to change the look of the archives. If you want to add custom elements then you will need to edit the archive.php template.

    For example if you wanted to add a color section to the archives then you could try using the do_shortcode function somewhere in the archive.php template file, http://codex.wordpress.org/Function_Reference/do_shortcode.

    Cheers!
    Elliott

    in reply to: Company Website – Development – some issues #370692

    Hey!

    It looks like you edited your post and have fixed your problems already. Is there any more questions you have?

    Your wanting to see two columns with the Masonry element on mobile instead of just one? Go ahead and send us a link to your page so we can see what type of layout your using.

    Cheers!
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: IE 8 Issues #370686

    Hi!

    Hmm, well your logo is looking fine to me now. I’m on IE11 and using the the debug tools to emulate IE8. I don’t have an actual copy of IE8 to test on so it’s going to make this difficult.

    Are you seeing any issues on our demo site in IE8? http://kriesi.at/themes/enfold/

    Does deactivating plugins and uploading a fresh copy of the theme help?

    Cheers!
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Home v11 #370681

    Hey!

    Your site keeps on timing out for me when I login to your dashboard. It seems to happen randomly but today I can’t load anything at all.

    I was deactivating your plugins to do some testing but it timed out for me again. Does this happen for you also? I would try contacting your hosting provider about this to see what they say.

    I’ll check back later to see if I can reactivate your plugins but I can’t really do much testing when this happens.

    I’ll go ahead and flag this for the rest of our team to take a look as well.

    Regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: CSS and Javascript file sizes #370333

    Hi!

    Well you could go through them and delete stuff you do not need such as the shortcodes your not using but this would be pointless in my opinion. You will not see any speed increases and you may change your mind and want to use them in the future.

    Regards,
    Elliott

    in reply to: Enfold Single Product Pages – Sidebar has vanished #370331

    Hi charger70!

    Your sidebar has a class of “hidden” on it which should not be there.

    You can use this CSS for a quick fix.

    .sidebar.hidden {
        position: relative !important;
        visibility: visible !important;
    }

    Regards,
    Elliott

    in reply to: Rich text editor options suddenly gone #370329

    Hey alexmasica!

    Click on the “Toolbar Toggle” icon which is right before our magic wand icon and it will display.

    Regards,
    Elliott

    in reply to: Layered slider dimensions have changed #370328

    Hey!

    Customers were saying this happened to them also with the latest WordPress update. If you reset the value to whatever you had it before though then it should save correctly.

    Regards,
    Elliott

    in reply to: Full Screen Easy Slider – Change Caption title header #370327

    Hi Mary!

    I think that should be working. Where did you add it?

    Try adding this to your Quick CSS field.

    div .slideshow_caption h2 {
        text-transform: none !important;
    }

    Regards,
    Elliott

    in reply to: Yoast breadcrumbs #370323

    Hey!

    Open up /enfold/functions-enfold.php and change line 311 from this.

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    To this.

    if($breadcrumb) $additions .= yoast_breadcrumb('<div class="breadcrumbs breadcrumb avia-breadcrumbs">','</div>', false);
    

    Regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Megamenu styling, width, location, height .. all the works ;) #370308

    Hey!

    Yeah it’s still giving me the 403. I’ll flag this for the rest of our team to take a look.

    Regards,
    Elliott

    in reply to: Portfolio – categories are being ignored #370302

    Hey saremcdee!

    Are you sure you do not have “category 2” selected in the first masonry element on your page? If your on Windows you can hold CTRL + click to select which categories you need in the Masonry element instead of displaying them all.

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

    Best regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Post with post format of type Link, magazine element #370297

    Hey!

    So you want to keep the excerpt but remove the link that is showing in it correct? In this case you will want to edit the post and add a custom excerpt in the excerpt field. If you do not see the excerpt field then click on “Screen Options” in the top right hand corner of your screen and check it to display.

    Best regards,
    Elliott

    in reply to: Product list shortcode display bug with product using options. #370291

    Hey nparent!

    Is this a Woocommerce extension your using? Try deactivating all of your plugins except the main Woocommerce plugin to see if that fixes it.

    Best regards,
    Elliott

    in reply to: Enfold seems to add cache-disabling headers #370286

    Hi!

    Not really sure where it could be coming from. Try completely deleting Enfold before downloading + uploading a fresh copy from themeforest. Also try contacting your hosting provider to see if they have any idea on why that would be happening.

    Best regards,
    Elliott

    in reply to: Customizing mobile menu #370284

    Hi Dersan!

    1. Try this instead.

    #mobile-advanced li > a:before {
        margin-top: 12px;
    }

    2. Try adding a background image to this.

    .avia_transform3d .show_mobile_menu #mobile-advanced {  }
    

    3. I don’t see an easy way of going about this unfortunately. You could probably get some added in via javascript but that would take a lot of time and code and would have to be considered custom work.

    4. Same thing here. It would be best to hire a freelancer to help you out with these customizations.

    Best regards,
    Elliott

    in reply to: WordPress grouping scripts in admin concatenate_scripts false #370255

    Hi Jaap!

    What version of Enfold are you using? If it’s not 3.0.4 then be sure to update.

    Also be sure to deactivate all other plugins while testing.

    Regards,
    Elliott

    in reply to: Section Bottom Border Styling #370253

    Hey Michael!

    Are you wanting to keep it white but give it a border? If so then try adding this to your custom CSS.

    .av-extra-border-inner { border: 1px solid #e1e1e1 !important; }
    

    If that’s not it then send us a link and take a screenshot and highlight what your trying to do so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Portfolio Item Title (Child Theme) #370252

    Hi iwebware!

    Download our child theme here, http://kriesi.at/documentation/enfold/downloads/, and then create a new folder in the child theme named “shortcodes” and then copy the portfolio.php shortcode file from Enfold into that folder and you can do the edit there.

    Best regards,
    Elliott

    in reply to: CSS and Javascript file sizes #370249

    Hi!

    The bbPress stylesheet should only load if you have bbPress activated and when your viewing a topic, forum, etc etc.

    I viewed your link and it’s loading very fast for me (2.01 seconds). I don’t really think your site needs optimizing right now. If you get any speed gains at all they will be very minimal that you won’t be able to notice them.

    But definitely check out the BWP minify plugin if you want to compress the theme CSS.

    Regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: ENFOLD – special image overlay for just 1 element #370244

    Hi!

    It looks like you used a class of “face_overlay” correct? You can target it like so.

    .face_overlay .av-image-caption-overlay {
        background: none repeat scroll 0 0 red;
    }

    Cheers!
    Elliott

Viewing 30 posts - 12,391 through 12,420 (of 14,834 total)