Forum Replies Created
-
AuthorPosts
-
Hi wilddave11,
That is a pretty common issue for servers. It just means you need to either delete the theme before uploading it or upload via FTP so that you aren’t getting the permissions issue on overwriting the folder.
For a quick guide on updating your theme via FTP take a look at this video on updating the Enfold theme via FTP: htps://vimeo.com/channels/aviathemes/67209750
Regards,
Devin
You can change the value of the padding for the main ID with:
.fixed_header #main {
padding-top: 208px;
}Glad we could help. Let us know if you have any other questions or issues.
If you need help in customization I recommend Codeable.io and Microlancer which both have lots of WordPress dev’s available for quick custom work.
Regards,
Devin
August 30, 2013 at 1:25 am in reply to: any way to have logo not get grainy when the fixed header shrinks #137865Hi stunna42,
Try uploading a logo file that starts at the actual dimensions it gets set to: 250px by 88px. Right now you are already starting with a compressed image and then compressing it even further.
Regards,
Devin
Hi Jorge,
If its appearing in your footer then there isn’t anything else we can do on our end. The theme just adds whatever code you put into the field into the footer of your pages.
What you can do is double check your code against what the analytics asks you to add to your pages and then see if your content data is being tracked.
Regards,
Devin
Glad Ismael could help. Let us know if you have any other questions or issues.
Hi hbenagh,
The easy slider will grow or shrink to its container. So in the advanced layout editor you can put it in a column element to change the container of it.
The image size you choose just picks the size that gets inserted but the container still adapts the image to fit the container instead.
The footer widgets are there as placeholders so you just need to insert any widget into the footer widget areas and they will be changed. If you don’t want any, you can use blank text widgets.
Regards,
Devin
Hi Tom
You need to update your theme files to the most recent release and bug fixes.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https:/vimeo.com/channels/aviathemes/67209750
Regards,
Devin
August 29, 2013 at 11:17 pm in reply to: Place login / client registration link on the top of the page. #138090Hi Fabiana,
You would need to place the links as html into your header.php file and then adjust them via css. The exact customization and css would need to be handled by a freelance developer if you aren’t comfortable with it on your own just because it needs to be exact to your site and still keep everything responsive and cross browser compatible.
Regards,
Devin
If you can send me login details I’ll log in and take a look. As I asked for before it would be much more helpful to know the details of your server however since this seems to be an very isolated issue.
You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn’t grab it :)
Regards,
Devin
Glad Ismael could help. Let us know if you have any other questions or issues.
Regards,
Devin
Thanks manv83!
Glad we could help. Let us know if you have any other questions or issues.
Hi designbyjm,
If you click on the url under your name it takes you to your profile.
For now yes, the only option for subscribing is via rss for a topic.
Regards,
Devin
Hi Omar,
I think that article has probably just not been updated since analytics switched to the new code.
If you are having issues with the themes usage, you can try any of the plugins available for adding the script into your footer and see if another avenue gives you better luck.
Really however it should work without issues as long as you copy and paste the entire script block into the field in your theme options.
Regards,
Devin
August 29, 2013 at 5:59 pm in reply to: Manually Playing or Un-Pausing Embedded Video Stops the Slider #138102Hi turner2f,
As far as I know there is no setting to re-enable auto transition once it has been stopped.
Regards,
Devin
Hi Tom,
The search icon should still work in IE8. It does on my live install, my personal site and the past dozen or so client sites I’ve built with Enfold. All tested with native IE8, Enfold 2.0.1 and WordPress 3.6.
Regards,
Devin
Hi Cdfb,
1) This css in your Quick CSS is causing the issue:
.grid-entry.flex_column.isotope-item.all_sort.no_margin.post-entry.av_one_third {
min-height: 243px !important;
height: 243px !important;
}Its forcing the height to exactly 243px on those elements which is not tall enough for the 3rd image.
2) Go to the theme options Sidebar options and choose not to display Page Sidebar navigation.
3 and 4) On any page you can turn off the header from the Layout meta box on the right hand side of the page.
Regards,
Devin
Hi Susana,
You would need to use the LayerSlider to do that and then set the layout to just have nothing else on the page. If you wanted to use the actual full screen slider element then no, you wouldn’t be able to control when the sentence appears but you could add the text to your fullscreen image.
Regards,
Devin
Glad we could help. Let us know if you have any other questions or issues.
Hi JacobSalomonsen,
My guess is that you have that menu set in the Appearance>Menus to be display in the Socket menu theme section. Go there and use the dropdown to make that set to none.
Regards,
Devin
Glad Peter could help. Let us know if you have any other questions or issues.
Regards,
Devin
Glad Ismael could help. Let us know if you have any other questions or issues :)
Regards,
Devin
They all have different screen resolutions but the media queries are set up so that at different levels the theme adjusts (eg responsive theme). Make sure that on your ipad you re-fresh the page a few times and that any caching on the live site is cleared so that the new css changes are being properly read.
Hi tonaua,
With an issue like that it would be best if we could just inspect it live. You can obfiscate your url from search engines by using http://goo.gl/
Regards,
Devin
Glad we could help. Let us know if you have any other questions or issues :)
Hi wvanderzee,
The changes are all based around media queries which respond to the users viewport. So if you want something to work on portrait but not mobile then the media query needs to be adjusted.
Eg:
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.responsive #top #header {
position: fixed;
}
}Now it will only effect viewports for 480px to 767px.
Regards,
Devin
If you want to force it then you just change it to:
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
height: 116px !important;
line-height: 116px !important;
}You’ll want to add that into the custom.css inside the desktop only media query however and not just into the quick css so that it only effects desktop viewers and doesn’t incorrectly add issues to your mobile menu setup.
You need to go to Appearances>Menus to get to the menu manager first. Then go to the top right to get the screen options for that specific section of WordPress.
The Menus manager is where you define your memories for WordPress and how you designate which menu is output where for the theme.
When viewing the menus manager go to the top right and click on Screen Options. There should be a check box for woo commerce categories which you can then add to the menu just like you would a page link.
-
AuthorPosts