Forum Replies Created
-
AuthorPosts
-
Hi ace2296,
When you choose a page from the theme options to be the blog that page only acts like a holder for theme automatic blog output. What you should do instead if you want to customize it is just create the blog page with the advanced layout editor and then add that pages link to your menu.
So instead of setting the blog with the theme options you just set it up yourself.
Regards,
Devin
Hi FLSouthPaw,
That isn’t something we can assist with via the support forums. It would need to be done with either an extension to woocommerce or by a freelance developer.
Regards,
Devin
Hi Gstar72,
I re-create the semi parallax effect in this video which will show you how to do it step by step: https://vimeo.com/channels/aviathemes/64927358
Regards,
Devin
We’ll need a link seeing the page live with the css change in place to inspect the code and see whats going on then.
Regards,
Devin
Hi lelefioroni,
Unfortunately there isn’t a widget like that available. The closest thing you could get would be to make a custom menu with the list of categories and then use the custom menu widget with that menu selected.
Regards,
Devin
Hi chartier,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top.home .avia-builder-el-1 .slide-entry a.slide-image {
display: none;
}Regards,
Devin
Hi Ana,
1) The presentation is really up to you but if you don’t find anything from the theme features you’ll need to find a suitable third party plugin. The exact implementation is up to you.
2)It sounds like you may have done some step incorrectly but exactly which one or what happened is near impossible to tell without seeing the page live. If you can provide a link we can take a look.
3+4) This isn’t possible with the built in theme functionality. You would need to hire a freelance developer to customize the portfolio elements to create a tiered sorting function.
To give your forms the ability to have uploads you would need to use a third party plugin as the theme forms element doesn’t have that capability at the moment.
The sidebar issue might be doable with a plugin but I don’t know of any that can do that off hand.
If you have any other questions just make a new topic and we’ll address it as best we can.
Regards,
Devin
Hi bicounet,
The color section can inherit any of the style groups you have created or modified in the Styling tab of the theme options. So you’ll need to pick one that has a contrasting color scheme for the links and text.
Regards,
Devin
July 6, 2013 at 11:36 pm in reply to: Q about the dummy data, does it reflect the demo in full #128394Hi MikehJPP,
It isn’t an exact duplicate but it has examples of just about every element from within the theme as well as the theme options set to reflect a very similar setup as the demo.
You can see an example of a quick install with dummy data here https://vimeo.com/channels/aviathemes/64927356
It gets updated whenever there is a major addition like when the shop functionality was added.
Regards,
Devin
Hi lelefioroni,
I’m not sure how that could or should be happening since the theme just uses the wordpress image modal. There are a few things you can try however: disable any active plugins you have running and try things again, make sure you have the most recent theme version installed (1.7.1 as of right now) and last is to increase your php memory using one or all of these methods http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/ .
Regards,
Devin
Glad its working for you. Still no major issues reported or really any at all that have been specific to the WP update so everyone should be good to update.
Regards,
Devin
Hi Patrick,
I’ve never seen anything like that. Have you tried disabling any active plugins you have running? Were there any other changes to the installation besides updating the theme files?
Regards,
Devin
Hi bicounet,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.post-entry.flex_column .slide-meta {
display: none;
}Regards,
Devin
Hi Jason,
1) I think Ismael thought you meant something else but no there is no current option for changing the excerpt amount. It has been put in as a feature request but right now you would need to modify the shortcode code in order to do that.
3) You can remove the padding from the bottom of the first widget and the top of the second with:
#footer #youtubechannelgallery_widget-2 {
margin-top: 0;
}
#footer #text-3 {
margin-bottom: 0px;
}There is still some spacing but its from the widget contents themselves.
5) This isn’t easily doable. You would need to have a freelance developer create a custom template for your single posts to re-create the sidebar layout without an actual sidebar.
6) You could set a smaller min height specifically for the header rows if you don’t like the effect overall:
.pricing-table .avia-heading-row {
min-height: 30px;
}7) No. You would need to either create a child theme which would at this point mean re-setting up all the theme options or just re-modify the file after each update.
8) try:
@media only screen and (min-width: 990px) and (max-width: 1140px) {
.team-social-inner {
top: 20%;
}
}Regards,
Devin
Hi bakbek,
Any page can have the header removed by going to the Layout meta box and then choose that option from the Header option.
To reduce the height of the header, Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#header_main .container,
#top .main_menu .menu li > a {
height: 44px !important;
line-height: 44px !important;
}
.fixed_header #main {
padding-top: 44px !important;
}The logo is constrained by its overall width to height ratio. So the width will constrain to the height. You will see the logo shrink even more with the above css change as well.
Regards,
Devin
July 6, 2013 at 8:56 pm in reply to: Remove header but keep the fixed navigation bar that contains social icons #128189Hi mike0077,
You would need to use page specific css to target the other items inside the header and do a display: none declaration on those class selectors. If you are using the responsive setting it would have to be done for the mobile menu as well.
If you can show an example page we can assist with a bit of sample css you can use.
Regards,
Devin
Hi zedduo,
Just as a general fyi our queue system goes by oldest posted topic or response within a topic to the newest. So each time you bump it actually pushed your topic to the end of our queue and not the front.
I don’t know of any parameters for the target within a shortcode so I’ve tagged Kriesi on the topic to see if there is already something in place for it.
Regards,
Devin
July 6, 2013 at 8:33 pm in reply to: How do I make the H1 Text change color when hovered over? #127791Hi Andy,
Yes, it needs to be a link in order for the css above to work. What you need to do is target the specific heading you want to have the effect by inspecting the code and then use the :hover pseudo selector to give it a different color on hover.
See: http://www.w3schools.com/cssref/sel_hover.asp
Regards,
Devin
Hi sitadi,
This will do it but keep in mind it will also remove any text excerpt as well since there is not difference in the code for the two:
#top .ajax_search_excerpt {
display: none;
}Regards,
Devin
Glad Ismael could help :)
Let us know if you have any other questions or issues.
Regards,
Devin
Hi Adrian,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .main_menu .menu li > a {
padding-top: 20px;
}Regards,
Devin
Hi ramontessmann,
Our support queue works by the last updated topic to the most recent so each time you self respond it actually takes us longer to answer a topic since it moves to the end of our queue.
For #1, I don’t know how that whole tab/form section is set up but the plugins inline style is preventing the tab from being hidden on the first tab. I don’t see any indication of what is causing it to only happen on that individual tab however you could hack a fix with:
#top.page-id-1378 #iphorm-outer-51d87b890da88 {
visibility: hidden !important;
}
#top.page-id-1378 .active_tab_content #iphorm-outer-51d87b890da88 {
visibility: visible !important;
}This will only work on this page and for that specific tab however.
#2 – I’ve addressed this in another topic with the same question. Please do not post multiple topics with the same questions as it makes it harder for us to answer things.
#3 – I’m not getting the same visual issue but you can use any of the other header styles if your logo doesn’t work well with the fixed header menu layout.
#4 – I tested the logo in IE8 and didn’t have any issues with it just now. Perhaps its a OS specific issue as I’m running it on windows 7 but I don’t think any of the support crew has anything other than the newest mac OS and Windows7+ to test on.
#5 – I don’t know what this is or see any button in the bottom of the site.
Regards,
Devin
The images being transparent or not are only important in that they will display how you want them on the front end. So if you don’t like the look of them you can change them however you want (transparent, background color etc).
Hi AuthentiDateDE,
What version of IE is this with? Can we look at the slider live?
Regards,
Devin
Hi moos67
No, not at this time. The Color section is the only element that allows for that kind of customization.
Regards,
Devin
Hi Chenan,
The support forums aren’t a place for hiring freelancers. As Ismael mentioned there are a number of places to look into:
http://jobs.freelanceswitch.com/
and quite a few others depending on the depth you are looking for.
Regards,
Devin
I am not getting the same results. Did you try re-building that page? Have you updated to the 1.7.1 release?
Hi maxosbon,
That folder is in your wordpress installation. You can FTP to your wordpress files and then go to that location and check the chmod permissions or talk to your hosting provider and they can assist with the how-to or do it for you.
Regards,
Devin
Hi maxosbon,
That folder is in your wordpress installation. You can FTP to your wordpress files and then go to that location and check the chmod permissions or talk to your hosting provider and they can assist with the how-to or do it for you.
Regards,
Devin
Hi ste_thumbs,
Not sure what you mean about the video format being different. I have plus as well and get the normal url format:
etc.
Regards,
Devin
-
AuthorPosts