Forum Replies Created
-
AuthorPosts
-
Hi hsie,
Is this on a specific device or browser? Different devices and browsers render fonts, color, layout slightly differently so the more detail we have the better our ability to offer improvements or fixes.
Regards,
Devin
Hi andypeck,
You would need to add a media query to your custom.css file (in the theme’s css folder) to then target the h6 and change the font-size declaration.
You can add this to your custom.css file and use it as a starting point to add in your css for each screen size you want to change the css on:
/* #Media Queries
================================================== */
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {}
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {}Regards,
Devin
If the page doesn’t have any content, the background will show. So if the background is the same color as the socket div then it will appear as though the socket is very large.
Hi BWIdaho,
I’m not really sure what the issue is but if you apply the css above (from Ismael) the single page for the individual case looks correct with the sidebar and layout all positioned as it should be.
Regards,
Devin
I’ll go ahead and close the topic in that case :)
Regards,
Devin
May 15, 2013 at 1:52 pm in reply to: Currently experiencing lots of troubles with making changes and saving pages #119105Hi Antonio,
My guess is the autoplay on the video is causing the avia builder to run into issues. In general, its never a good idea to have videos auto play but when using the advanced editor, it attempts to run anything inside of it/display images to better help users making visual layouts (we’re looking at options for this).
Another thing to try would be to disable Jetpack and the Statcounter plugin and see if that helps. Jetpack, while feature packed is very invasive in what it effects through wordpress but perhaps one/both of them is having some conflicts with the video content or the builder in general.
I wasn’t able to reproduce any of the testimonial issues on my end however. Is it only in a specific browser or OS?
Regards,
Devin
Hi Andy
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 .grid-entry .inner-entry {
background: #333;
box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.2); /*border on portfolio items*/
}and
#top .grid-entry-title {
background-color: #333; /*bg of title for portfolio item*/
color: #fff; /*color of title text*/
}The footer issue is most likely not possible without quite a bit of tweaking. Since each footer section doesn’t actually touch the one next to it, you would need to re-do that grid section to allow a line to extend past the edge of the actual widget.
Regards,
Devin
Hi dweb,
The way the portfolio items work, is that it will only show the categories in the nav for those items that are within the selected portfolio. So if you have a category “Y” but only selected to display categories “Z” and “A”, category “Y” will not show up in the menu or be accessible from that page.
The link above however doesn’t have theme active.
Regards,
Devin
Hi franktw,
This has been mentioned a few times recently as people are starting to use the builder for more in depth stuff. I think we need to add a on/off option for executing content within text elements since the builder attempts to render things while working within it.
For now, you can use regular shortcodes and not use the advanced layout editor on those pages you need to include scripts into.
Regards,
Devin
Hi taliwalt,
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-team-member .team-social {
border: 7px solid rgba(0,0,0,0.1);
background: rgba(0, 0, 0, 0.7);
border-radius: 3px;
}I added in the other items that make up its general appearance so you have them as well. It uses rgba color to define the color and transparency so you can change it as needed.
Regards,
Devin
Hi mgma,
Try doing a hard refresh when viewing that page. Perhaps your local cache is causing the updated form not to work properly in the same way it was for Peter.
Regards,
Devin
Hi Detlef,
Do you have an example we can take a look at? I’m not completely clear on what you mean as the theme is pretty complex so there are a lot of similar items/code and identifying bugs and issues is made easier with a live example showing it specifically.
Regards,
Devin
I believe that uses post categories for it so try a post that has at least one other category.
Hi andypeck,
You can add in your own javascript to the avai.js file within the theme files, or use a plugin that will allow you to add it in through the wordpress admin if you don’t want to go through ftp.
Regards,
Devin
Hi chryseis,
Posts don’t have the same capability as the pages with regard to the advanced layout editor. So you aren’t able to do the same complex layouts without using regular shortcodes at this point.
So, for example if you want a small easy slider you first add a layout shortcode and then add the easy slider shortcode with the smaller image option inside the smaller layout. Ex:
[av_three_fourth first]
Add 3/4 Content here
[/av_three_fourth]
[av_one_fourth]
[av_slideshow size='square' animation='slide' autoplay='true' interval='5']
[av_slide id='4846']
[av_slide id='4646']
[/av_slideshow]
[/av_one_fourth]Hi Merkur-Trykk,
The theme doesn’t have a sticky footer (which is the effect where the footer stays at the bottom of the page). So when you don’t have enough content in the main body of a page, the footer and socket below it don’t stick to the bottom of your browser window and instead move up on the page.
Regards,
Devin
Hi andyhoodified,
I see the same issue though I don’t know how it might be fixable as it seems to be a rendering bug with chrome. I’ll tag Kriesi on the topic to see if he has any ideas.
As for email alerts, no I don’t think so though you can add the topic to your favorites (at the top of this page) and keep track of them that way.
Regards,
Devin
May 14, 2013 at 4:30 pm in reply to: Change images with thumbnails with responsive design in LayerSlider background #118876Hi Chris,
The layer slider is actually already a plugin of sorts within the theme and as far as I know that isn’t support for it at the moment. It might be possible with some custom css and media queries but it would need to be customized specifically for each instance of the slider and slide (even then I think it would still try and load both but only show the smaller one).
But with that level of customization it would need to be done by a freelance developer as we aren’t able to get into that level of customization via support.
Regards,
Devin
Hi dweb,
You can use media queries to adjust your custom code/css based on the users viewport. See: http://mobile.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/
Regards,
Devin
Hi mmoesslang,
A) 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 {
font-family: Arial;
}Read more about font-family http://www.w3schools.com/cssref/pr_font_font-family.asp
B) I don’t know of a way to easily move the search icon/functionality from the main menu as its kind of a theme function. I’ve asked Kriesi about it just now and will update when I know more.
C) We’ll need to see the issue live to inspect the code and see whats going on. So if you can provide a link, we’ll look further.
Regards,
Devin
As long as it also has support for changing serialized data it should work perfectly. I don’t have the link on hand, but there is also another plugin that Kriesi mentioned a few weeks ago that has support for it as well which takes that into account.
Its only ever an issue with moving domains with different name lengths but most of the import/export plugins have support for it these days.
Thank you for sharing another good solution :)
Hi pureoption,
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 .grid-entry .inner-entry {
margin-right: 0px;
box-shadow: none;
}Regards,
Devin
Hi sunshineh,
Generally no, I don’t think so but I’m not sure what license Kriesi has those images under (if its transferable or not). I’ll tag the topic for Kriesi however as he will be able to give a definitive answer one way or another.
Regards,
Devin
Looking good so far Nicole. Nice to see some color and of course cute dogs :)
Hi blingcart,
Yes, when a plugin doesn’t use the proper plugin implementation and keep its css specific to itself it will inherit the theme css. If you have a live site we can see the fields we can assist if possible in cleaning it up a bit.
Regards,
Devin
Hey fusion01,
You would have an easier time with linking to a custom created page than editing the category default view which would have to be done by creating a new php file within the theme.
Regards,
Devin
Hi cranwinks,
The only thing I see that is different between the two is the second one (the incorrect one) has the image set to align center from within the text block it is put inside.
So i’m not sure if that is the issue or if you have changed the layout since posting.
Regards,
Devin
Hi maratino,
Are you able to use the shortcode when using the regular visual editor and using shortcodes (instead of the advanced layout editor)?
If so, the plugin just may not work with the advanced editor and you would need to use shortcodes instead.
Regards,
Devin
Hi cranwinks,
Each portfolio is a visual group of the individual portfolio items. So if you are using pages, they won’t show as a portfolio. You need to create a portfolio item from the Portfolio custom post type menu in the main wordpress menu (on the left hand side of the screen).
Then for each portfolio item, you add a featured image which will be used as the preview image in the portfolio overview.
Regards,
Devin
Very nice use of the slider and layout options!
Glad you are enjoying the theme features and have made such good use of things :)
-
AuthorPosts