Forum Replies Created

Viewing 30 posts - 1,261 through 1,290 (of 8,514 total)
  • Author
    Posts
  • Can you elaborate a bit more on what isn’t working with the regular WordPress editor? We don’t support any other editor at this time.

    in reply to: Enfold Theme Issues #290886

    The only other thing I can think of would be to try and switch themes and see if you can login on all browsers with another theme. If not, there may be a larger issues causing all of the conflicts/issues. I’ve never encountered only being able login from one browser with WordPress before and definitely not with the theme.

    in reply to: Child Theme #290831

    #1, it only needs to be in your child theme.

    in reply to: Category instead of Date on Magazine elements #290827

    Hey wid2307!

    You would need to customize that element via a child theme to change the output. I did a customization for our upcoming documentation relaunch which you can use as a model: https://github.com/DevinVinson/enfold-child-docs

    I’ve added a function in the function.php to use the shortcodes folder there and then put the magazine element into the folder so I could customize it. In my case I changed it so that the articles and posts would show a ‘last updated’ line instead of the date.

    Best regards,
    Devin

    in reply to: Theme Options (admin) #290824

    Glad Yigit could help. Let us know if you have any other questions or issues.

    Make sure that you look for the filters and hooks there so that you can make your changes via a child theme/functions and keep theme modification to a minimum :)

    in reply to: How can I widen blog text area? #290822

    Hey kroemer08!

    I think this might be what you are looking for: https://kriesi.at/support/topic/how-to-reactive-enfold-downsizing-of-image-in-post-blog/#post-290605

    That will allow you to widen the max size for the blog width on that layout.

    Cheers!
    Devin

    in reply to: style rule has changed #290821

    Hi!

    That whole section is wrapped in a strong tag. My guess is its hidden in that text element’s text tab.

    Best regards,
    Devin

    in reply to: Blog Posts' Featured Image #290820

    Hi!

    1) The space isn’t actually filled with nothing it just appears that way because the icons color is the same as the background on your site. Its a design choice and not every possible design variation will be added into the theme since user customization is still a very normal expectation.

    2) You can use this plugin to customize the image sizes generated for the various uses as well as the crop values (true, false, position): http://wordpress.org/extend/plugins/simple-image-sizes/

    Cheers!
    Devin

    in reply to: Main nav placement #290818

    Hi!

    The site is under a coming soon page so we aren’t able to view the header issue. Can you remove it or provide a login/screenshot?

    Cheers!
    Devin

    in reply to: Header mor than 1 line #290817

    Hey!

    You can adjust the positioning of the second line items when scrolled with:

    
    .header-scrolled span.menu-break {
    bottom: 8px;
    }
    

    Adjust the value as needed though it will be a bit cramped when using that collapsing nav bar.

    Cheers!
    Devin

    in reply to: Installing Demo Content #290815

    Hey tdako!

    Installation and dummy data import would work like in this video: https://vimeo.com/channels/aviathemes/64927356

    Make sure you re-download the theme from ThemeForest as well so that you are installing the most recent 2.9.1 version.

    The pages that get imported would be in addition to what you already have on the site as well as the portfolio items, posts and other demo content.

    Cheers!
    Devin

    Hey!

    With the new lightbox you have the option of disabling it right from the theme options and instead using any other lightbox plugin (including the old PrettyPhoto one).

    PrettyPhoto however will not be coming back as part of the theme.

    Cheers!
    Devin

    in reply to: Enfold – Gallery upload balooning in size #290734

    Hey Monsoon!

    As far as I know WordPress has no ability to differentiate between thumbnail sizes generated. You would need to delete the extras after each upload over FTP or change the functions.php file right before each upload to prevent them from being generated.

    Edit: To explain why, its to make your site load faster for users. So they aren’t downloading a 1200×1200 image when all they need is an 80×80.

    Best regards,
    Devin

    • This reply was modified 10 years, 4 months ago by Devin.
    in reply to: Portfolio images have 16×9 frame but are showing 4×3 #290696

    I would first update the theme to the most recent release so we can rule out any old bug or something like that. That will also make sure you are fully compatible with the most recent WordPress release.

    in reply to: Html link in text widget not working #290694

    Hi m!

    The theme is most likely not altering the link. Try formatting like:
    <a href="http://google.com">Google.com link</a>

    Where the url is prefixed by http:// .

    Regards,
    Devin

    in reply to: Fullwidth Slider #290692

    Unfortunately that just isn’t an option available with the theme. You could look into Revolution slider though I don’t know if it has that kind of functionality either.

    The fullscreen option is, by its nature, always going to need to crop off sections of the image (even significant portions of it) to keep it in proportion and with no whitespace on the edges.

    in reply to: Portfolio images have 16×9 frame but are showing 4×3 #290691

    Hi EMS4HIM!

    Can we see an example of what you have now with the keep original size option selected?

    Cheers!
    Devin

    in reply to: Unable to edit any CSS #290690

    Hi rgilbert3!

    You should only adding css to the Quick CSS or custom.css or better yet a child theme’s style.css but all three should show on the front end right after getting added.

    If you have the site live we can inspect it and see if its being shown by the server (using dev tools to check the files).

    Best regards,
    Devin

    in reply to: Slider Export/Import #290689

    Hey!

    Were you getting an error or was it just ‘not working’ with a timeout etc? It could have been a server time out or limit on file size or even an error with LayerSlider itself but its hard to say without a bit more information.

    Cheers!
    Devin

    Yep! It was just a matter of seeing an example so we could get on to the same page. With the number of requests we see and variety of terms that get interchanged its often very difficult to follow exactly what any one user wants to achieve without a visual example.

    There is so much that can be done with a bit of css or a small change and we will always try and help to make it happen where we can :)

    in reply to: It doesn´t work… once more #290632

    If you have any plugins running with Firefox try disabling them. I’ve tried in Firefox just now on each of my local machines and then a few emulators but don’t get any incorrect rendering on any instance.

    in reply to: Use Icon Font For Unordered List #290613

    Hi!

    The syntax is just a bit off:

    
    .av-share-box li:before {
    content: '' !important;
    position: absolute !important;
    }
    

    Regards,
    Devin

    Hey!

    The border should only be on the main container and not the sidebar. The sidebar doesn’t actually go to the bottom of the screen. What you are seeing is Firefox incorrectly or maybe correctly rendering the border of your 2 rules on top of each other. Just remove the border on your sidebar completely:

    
    #top #main .sidebar {
    border-left-style: none;
    }

    Best regards,
    Devin

    I think what you are looking for is just a very specific html and css layout which is non-standard industry wide. Even the current default theme for WordPress uses the same format: http://twentyfourteendemo.wordpress.com/ – large featured image at the top and then the blog post content is contained inside a single container.

    What you could do in this case is very simple increase the size of the container for the blog layout you’ve chosen:

    
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: 800px;
    }
    

    If you wanted to keep the text to the original 600 pixel wide max width then the text itself would need a separate div container or maybe a shortcode to give it a smaller max-width.

    in reply to: Most post images missing after website migration #290598

    Hey m!

    We can’t control how you migrate a website or how WordPress itself handles the image links inside of posts. It sounds like the images were saved to the old url and when you migrated you didn’t export the data in a way that would change the urls to the new location.

    If that is the case you might be able to find a plugin that will scan for your images and fix the links though I’ve never run across one that I could point you to.

    Regards,
    Devin

    in reply to: Mobile Responsive View #290597

    Hi KelseyCurran!

    As long as the css is correct it should work no matter what the theme option is set to. What css are you using to hide the video div?

    Best regards,
    Devin

    in reply to: Problem since latest Portfolio update #290596

    Hi DavyE!

    I’m not getting the same issue when checking on my end. Can you try doing a hard refresh when viewing the page to make sure your browsers cache is fully cleared.

    Best regards,
    Devin

    in reply to: What is Enfold 2.9.1? #290565

    Hey!

    Topics are answered in their own topic :)

    Regards,
    Devin

    in reply to: Wocommerce design problems #290564

    What page is that on? I’m just not sure where the screenshot is coming from to be able to try and identify what css you might need.

    in reply to: Warning on Masonry Entries page #290558

    Hi designbyjm!

    Sounds like your hosting provider may not allow php sessions. See if they will turn them on for you which will let the theme track the user session to create the breadcrumbs on those pages.

    Best regards,
    Devin

Viewing 30 posts - 1,261 through 1,290 (of 8,514 total)