Forum Replies Created
-
AuthorPosts
-
No worries! Glad its working for you now :)
Let us know if you have any other questions or issues.
Regards,
Devin
Hi Andreas,
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:
.title_container .avia-breadcrumbs {
display: none;
}Regards,
Devin
Glad we could help. Let us know if you have any other questions or issues.
For the #1:
.template-page.content {
padding-bottom: 0px;
}#2 is caused by a break just before your header in the text block. You can remove it in your text block and the whole line will align.
Number 4 will be taken care of by the padding removal in the first change as well.
Hi sandboxes,
1) The Theme Options>General Settings>Blog Style dropdown will need to be set to Grid Layout for the default blog layout to be a grid. If you want the grid to only be on a single page, the page should not be the one chosen in the main theme options under blog (since that page inherits the layout chosen in the General Settings).
2) This is a color section with a fixed image background. This video re-creates the effect about half way through :https://vimeo.com/channels/aviathemes/64927358
3) The footer has some default content just to show a bit of space. You can add blank text widgets to each of the footer widget areas to clear out the default content.
Regards,
Devin
Hi Ralf_S,
If you want to easily re-edit the shortcode inserts then you would want to use the advanced layout editor. Otherwise you would have to just edit the shortcode ‘code’.
See this video for a quick intro on using the advanced layout editor: https://vimeo.com/channels/aviathemes/64927358
Regards,
Devin
Hi Stefan,
Try changing the switch width following the steps and code here: https://kriesi.at/support/topic/top-menu-with-the-social-icons-bigger?replies=5#post-132320
Regards,
Devin
August 25, 2013 at 3:11 pm in reply to: Custom Colors for Content Elements, Primary and Highlight Colors – Color Coding #134938Try forcing it with:
#portfolio or-custom-hr-red{
border-color: #d81919 !important;
}Try ading the folowing 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:
.bottom_nav_header.social_header #header_main .container {
height: 70px;
line-height: 70px;
}
#header_main_alternate {
background: #fff;
}Adjust the 70px number as needed.
Regards,
Devin
Hi vlane,
Try changing the list css to:
.avia-icon-list .iconlist_content_wrap li {
margin: 0;
padding: 0 0 30px 0;
list-style-type: circle !important;
list-style-position: outside;
clear: both;
overflow: visible;
position: relative;
min-height: 60px;
}Which will target the list elements inside the icon list instead of the icon list items themselves.
Regards,
Devin
Hi tsambam,
You will probably have better luck on the actual Gravity Forms forums for a question like that since its to do with the actual functionality of the plugin itself.
Regards,
Devin
Hi stunna42,
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 .avia-menu-fx,
#top .avia-menu-fx .avia-arrow,
#top .header_color .main_menu ul:first-child >li > ul,
#top .header_color .avia_mega_div > .sub-menu{
background-color: #fff;
border-color: #fff;
}Regards,
Devin
Hi Marssolutions,
If in one site you set a background color or style and not in the other that would explain it.
It could also be that you’ve visited one more frequently so your browser has more of its data cached locally.
Regards,
Devin
Hi charlies23,
If you are using WordPress 3.6 you must be using at least Enfold 1.9.1. So download the most recent theme files and then update your theme.
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
You should not be needing to edit anything like that. The loop-archive.php has a single line that reads:
the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>'); ?>
To WordPress, this means spit out the content and if it has a more tag then break it off there. You need to change it to:
the_excerpt(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>'); ?>
Which instead attempts to grab the excerpt first.
See: http://codex.wordpress.org/Function_Reference/the_excerpt
The reason I wanted to re-point out this step: https://kriesi.at/support/topic/enfold-archive-exceprts#post-120517 is because you should be working in the loop-archive.php and not the loop-index.php after you make that change.
Hi jesperarning,
Nothing really recommended but in general you’ll have the best luck with something low in contrast so the text links in front of it are easy to read.
Size wise, you’ll need to experiment a bit to see what works for you and with the image you use.
Regards,
Devin
Hi Gordon,
Can we see your site live so we can pull up the feed? That is the debug information which should only be getting spit out as a comment in the source of your page but my guess is there is a plugin hooking into the output at the same spot which is causing the two to merge (or something like that).
You could try this to just remove it form getting output if you want to try a quick fix: Add the following at the end of your functions.php
remove_action('wp_head','avia_debugging_info',1000);
Regards,
Devin
Hi romero2,
What do you mean by “funds header”? If you can point out what elements you are trying to adjust the opacity we can see if its possible with a bit of CSS.
Regards,
Devin
Hi Alexander ,
The images below the post are not currently getting output at 200×200. They are 177×177 and the thumbnail starts at 180×180: http://3na8el3vr0iv4c0gg0360g6417y2.wpengine.netdna-cdn.com/wp-content/uploads/2013/08/artikelverzeichnisse-oesterreich-180×180.jpg
Regards,
Devin
Hey Mike,
As Dude mentioned above for the original poster; can you elaborate a bit on what exactly isn’t working? Without more detail the advice he gave in the answer above is the best we can provide.
Regards,
Devin
Hi damatia,
The theme uses the more tag to designate where WordPress cuts off the text for previews. See: http://en.support.wordpress.com/splitting-content/more-tag/
Regards,
Devin
Hi cyrusis,
The easiest thing to do would be to just copy the html and add it into the header.php file. The headers aren’t really set up to cut and paste snippets from them though so there will still need to be a good bit of css customization.
Being that the simple header is a *simple header* there will likely not be an option to have the social icons in it.
So set up the header with the social icons and then inspect the page or view its source and just copy out the generated html before switching the header back. Then you’ll have it generated in a way you can paste it into the header again and align/position it as needed.
Regards,
Devin
August 25, 2013 at 4:05 am in reply to: Problem with different browsers – Images don't show properly #137197Hi DoGrinDigital,
I’m not having any issues when viewing the above url. What OS and browser versions are you using when you are getting the issues?
Regards,
Devin
August 25, 2013 at 4:03 am in reply to: Puzzled why I can't change page title font color for some pages #137301Glad Ismael could help. Let us know if you have any other questions or issues.
Regards,
Devin
Hi bevlogenverf,
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 {
background: #333;
}This will let you change only that header background menu without needing to use the styling settings.
Regards,
Devin
Hi Joe,
For #1 and #2 you can look through the extensions here: http://www.woothemes.com/product-category/woocommerce-extensions/
For #3, the theme has a fixed header option in the theme options>header. There isn’t one for the footer however so you would need to have that kind of functionality custom coded for you by a freelance developer.
Regards,
Devin
Hi Rich,
If you wanted to disable it for the whole site you can just remove the entire Ligthbox activation function in the js>avia.js file. Its lines 449 to 509.
Regards,
Devin
Hi Eric,
Yep! That is the best way to just clear out their contents from the default data.
Regards,
Devin
Hi qamarqrsh,
In what way do you want to re-size the orange section of the header? Height, width, or add spacing to adjust elements?
Regards,
Devin
Hi Jose
Yes, a WordPress login with admin level privileges to look at your installation live and see whats going on.
Regards,
Devin
-
AuthorPosts