Forum Replies Created
-
AuthorPosts
-
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
Hi,
You can add this on your custom.css or Quick CSS
#menu-item-search {
display: none;
}Regards,
Ismael
August 2, 2013 at 4:52 am in reply to: Heading (Lobster) and body (Kameron) Google font suddenly replaced by Helvetica #132566Hi,
Please add this on your custom.css or Quick CSS
body {
font-family: 'Kameron', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {
font-family: 'Lobster', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}Regards,
Ismael
Hi,
1.) Edit portfolio item, look for “Overwrite Portfolio Link setting” then select “Define custom link”. On Link portfolio item to external URL field, just place a hastag(#).
2.) Configure the Portfolio Grid, look for “Link Handling” then select “Open entry on a new page”.
Regards,
Ismael
Hi,
To clear things up, is this the font you’re trying to use?
http://www.google.com/fonts#UsePlace:use/Collection:Allura
Did you this bit of code on your header.php?
<link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>
You should probably use:
h6.script_header {
font-family: 'Allura', cursive;
font-size:3.5em;
font-weight: 200 !important;
}Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
.main-title {
display: none;
}
.post-meta-infos {
display: none;
}Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS
#footer-logo {
float: left;
}Regards,
Ismael
Hi,
It looks fine when I resize the browser. Can you give us a screenshot of what you’re seeing on your phone?
Regards,
Ismael
Hi,
It does scroll to top. I tested it on Windows 7 machine using Google Chrome. Let me tag the rest of the support team.
Regards,
Ismael
Hi,
This will fix the header a bit. Add this on your custom.css or Quick CSS
@media only screen and (max-width: 767px) {
.responsive #header .social_bookmarks {
width: 100px;
float: left;
}
.responsive.social_header .phone-info {
text-align: right;
padding-top: 10px;
}
.responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
float: right;
text-align: right;
margin: 0 auto;
position: static;
display: block;
width: 150px;
}
}Regards,
Ismael
Hi,
Please refer to this link: https://kriesi.at/support/topic/some-problems-404-permalink-and-wpml
Add the flush_rewrite_rules( false ); on functions.php.
Regards,
Ismael
Hey,
Glad you figured it out. Please share the solutions you made here, it might help other users with the same issue.
Regards,
Ismael
Hi,
Open js > avia.js, find this code
//activates the prettyphoto lightbox
if($.fn.avia_activate_lightbox)
$(container).avia_activate_lightbox();Replace it with
//activates the prettyphoto lightbox
//if($.fn.avia_activate_lightbox)
//$(container).avia_activate_lightbox();Regards,
Ismael
August 2, 2013 at 3:57 am in reply to: Using IE8 image hover link inside iconbox. Disappearing Image #132596Hi,
Please try to add this on your custom.css or Quick CSS
img:hover, a img {
display: block !important;
}Can you give us a link to the website?
Regards,
Ismael
-
AuthorPosts