Forum Replies Created
-
AuthorPosts
-
August 4, 2013 at 11:29 pm in reply to: How to add content elements to the Avia layout builder? #133140
Hi,
First, insert a column element then add the Image, Text Block then the Button. Give the button a unique css selector, for example “new-button”. Add this on your custom.css or Quick CSS.
.new-button {
position: absolute;
top: 80px;
left: 10px;
}This will move the button on top of the image. You can do the same with the Text block element.
Regards,
Ismael
Hi,
Please refer to this link: https://kriesi.at/support/topic/translation-issue-on-search-results-page
Regards,
Ismael
Hi,
Yes, you can find the css file on js > prettyPhoto > css > prettyPhoto.css.
The prettyPhoto enhancement for Enfold can be found on css > layout.css > /*prettyphoto enhancements*/
Regards,
Ismael
Hi,
Use a right sidebar to make it look like Dude’s screenshot above.
Regards,
Ismael
Hi,
Insert the Gallery element under the Media Elements tab. Add / Edit gallery images, under each image you can add a caption. It will show as a tooltip when you hover each gallery thumbnails.
Regards,
Ismael
Hi,
First, upgrade to Enfold 1.8.4 then go to Advance Layout Editor > Media Elements > insert the Fullwidth Easy Slider.
Regards,
Ismael
Hey,
To learn more about the theme please watch these videos: https://vimeo.com/channels/aviathemes
Regards,
Ismael
Hi,
You can use imgur, dropbox, mediafire etc. Embed the image using the img tag.
<img src="IMAGE URL HERE">
I would like to inspect site but I think it is on maintenance mode.
Please view the site on different devices using this: http://responsinator.com/
Regards,
Ismael
August 2, 2013 at 9:51 am in reply to: Heading (Lobster) and body (Kameron) Google font suddenly replaced by Helvetica #132568Hi,
The support team will help you for free but we can’t make sure that we can answer all your inquiries and give you all the solutions you need. I suggest you hire a freelance developer or consult someone before buying the plugin.
Regards,
Ismael
Hi,
I tested your website and adding min-height for 800px to 1024px screen widths will keep the iconboxes aligned properly. Please add this on your custom.css or Quick CSS:
/*
Desktop Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
@media only screen (min-width: 800px) and (max-width: 1024px) {
/* Add your Desktop Styles here */
.page-id-9576 .iconbox_content {
min-height: 540px;
}
}You can view the responsive view of the site here: http://responsinator.com/?url=http%3A%2F%2Fwww.corporatevideoservicesmanchester.com%2Fnew-home-latest%2F
Regards,
Ismael
Hi,
Please upgrade to wordpress 3.6. There is a user with the same. It seems that upgrading fixed the issue for him.
Regards,
Ismael
Hi,
Again, make the “Programs and Curriculum” the parent page of
Early Childhood
Parent & Tot
Preschool
Kindergarten
Curriculum Overview ChartThen add this on your custom.css or Quick CSS:
.header_color .main_menu ul:first-child > li.active-parent-item > a {
border-bottom: 5px solid red;
}On this screenshot, the “Blog” page is the parent page of “Blog Grid” page. You’ll see that the menu “Blog” renders a border below.
Regards,
Ismael
Hi,
What do you mean by “items”? Are you saying the posts doesn’t show up when you insert the Blog Posts element?
Please give us a link to the website.
To learn more about the theme, please watch these videos: https://vimeo.com/channels/aviathemes
Regards,
Ismael
Hi,
Enfold is a responsive website or mobile ready. Do you have a caching plugin? Please flush cache settings.
Regards,
Ismael
Hi,
@mirzepapa: Please do this instead. Edit functions.php, find this code:
global $avia_config;
Below, add the add font filter.
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Maven Pro'] = 'Maven Pro';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Coda'] = 'Coda';
return $fonts;
}On Enfold > Styling, select these two fonts.
If you’re having problem with the Special Heading, add this code on your custom.css or Quick CSS:
.av-special-heading h3 {
font-family: 'Maven Pro', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}Regards,
Ismael
Hi,
Yes, there might be cases where you need edit some files but as far as I know, you only need to edit the styling (css) part.
Regards,
Ismael
August 2, 2013 at 9:02 am in reply to: LayerSlider – Inconsistent Result from preview to final rendering #131937Hi,
To avoid the broken layout please go to LayerSlider WP > Slides > Global Options > Basic > Layers Container. Define a specific width in pixel. You should do this step before adding any elements. This will ensure that the elements are always align on the center of the slider.
Regards,
Ismael
August 2, 2013 at 9:00 am in reply to: Using different google fonts and stopping auto capitalisation of headings #132393Hi,
It works on my end. Please use this:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Patrick Hand'] = 'Patrick Hand';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Patrick Hand'] = 'Patrick Hand';
return $fonts;
}Regards,
Ismael
Hi,
If you’re not using the Advance Layout Editor(ALE), open page.php then find this code:
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
get_template_part( 'includes/loop', 'page' );Below, add this code:
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');If you’re using the ALE to build the page, edit template-builder.php then find this code
echo $content;
Below, add the comment code again:
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');Regards,
Ismael
Hi,
You can see the background of the whole html page. You can change that using this
html {
background-color: white;
}Regards,
Ismael
August 2, 2013 at 6:34 am in reply to: WP Menu Manager does not work since the latest update to Enfold #132311Hey,
There might be a missing or corrupt file on your wp installation. Glad it is fixed.
Regards,
Ismael
Hi,
The Color Section will always be full width. You should place it on the very top or at the very bottom of the page if you have a sidebar.
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS
.goto-slide {
display: none !important;
}Regards,
Ismael
-
AuthorPosts