Forum Replies Created
-
AuthorPosts
-
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
Hi,
It does work but you still need to constrain them on a column element to resize the Easy Slider.
Regards,
Ismael
Hi,
Please use this:
.header-scrolled .logo a img {
width: 100px;
height: 100px;
}Regards,
Ismael
August 2, 2013 at 2:45 am in reply to: Images still not showing all the time for galleries and aspect ratio's distorted #131661Hi,
You can switch off the gallery’s gray out feature while loading the images. Please refer to this link:
https://kriesi.at/support/topic/scrolling-to-bottom-before-gallery-loads
Add the old fix again:
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
width: 25%;
max-height: 147px;
height: 147px;
}
#top div .avia-gallery img {
height: 100%;
max-height: 100%;
}We can fix the gallery with Media Queries, I guess the stretching of the images comes out on less than 800px screen width. It stretches again once more on 400px width screens.
@media only screen and (min-width: 768px) and (max-width: 989px) {
#top div .avia-gallery img {
max-height: 100%;
height: 100px;
}
}
@media only screen and (min-width: 320px) and (max-width: 520px) {
#top div .avia-gallery img {
max-height: 100%;
height: 70px;
}
}Regards,
Ismael
Hi,
Open js > shortcodes.js, find this codes:
$.AviaSlider.defaults = {
//interval between autorotation switches
interval:5,
//autorotation active or not
autoplay:false,
//fade or slide animation
animation:'slide',
//transition speed when switching slide
transitionSpeed:900,
//easing method for the transition
easing:'easeInOutQuart',Adjust the transition speed and play around with easing methods.
Regards,
Ismael
Hi,
First, I don’t see any problem with the font rendering on Chrome or IE. It is using the default font family which is Helvetica, “HelveticaNeue”, “Helvetica Neue”, Arial, Verdana, sans-serif. The site is having some heading color issue on IE. You can add this on your custom.css or Quick CSS
.main_color h1, h2, h3, h4, h5, h6 {
color: #f2c301;
}Also, the icon list needs some fixing:
.alternate_color .avia-icon-list .iconlist_icon {
background: white !important;
color: #f2c301 !important;
border: 3px solid #f2c301 !important;
}The socket is missing on IE. Try this:
#socket .container {
height: 51px;
min-height: 51px;
display: block;
}Regards,
Ismael
August 1, 2013 at 6:06 am in reply to: Remove pipe in title of main page; Social media icons in footer #131823Hi,
1.) Please replace the code with this:
add_filter('avf_title_tag','new_avf_title_tag');
function new_avf_title_tag($title)
{
if ( is_home() ) {
$title = get_bloginfo('name').'';
return $title;
} else {
$title = get_bloginfo('name').' | ';
$title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false);
$title = apply_filters('avf_title_tag', $title, wp_title('', false));
return $title;
}
}2.) You can use wordpress social media plugins like addthis and sharethis.
Regards,
Ismael
Hi,
Edit a page or portfolio item, look for the Advance Layout Editor on top of the editor. If you can’t find it, click Screen Options > check the Avia Layout Editor. That is the new template builder for the Enfold theme. Learn more about the theme here: https://vimeo.com/channels/aviathemes
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS
div .logo {
left: 45%;
}Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS to decrease the padding and the font size of the menu on iPad view:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 5px;
font-size: 11px;
}
.logo img {
padding: 30px 0;
width: 150px;
height: auto;
}
}Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
.image-overlay.overlay-type-extern {
display: none !important;
}Nice website. :)
Regards,
Ismael
Hi,
Please increase php memory limit to 256M:
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Change the thumbnail size settings to 36×36 then regenerate thumbnails. Actually, it has nothing to do with that because the code for the thumbnail on latest news widget is located on functions.php:
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
The latest news widgets look fine on my end:
Regards,
Ismael
August 1, 2013 at 5:26 am in reply to: Trying to integrate form plugin but getting CSS conflicts #132209Hi,
I suggest you use Gravity Forms because the theme comes with the plugin’s config modification.
Regards,
IsmaelHi,
1.) To change the social icons color:
#top .social_bookmarks li a {
color: white;
}2.) Icon list color, you can use this
.avia-icon-list .iconlist_icon {
background-color: red;
}3.) Can you give us a screenshot of what you want to do?
Regards,
Ismael
Hi,
Footer widget title:
#footer .widgettitle {
color: white;
}Current Menu item color:
#top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a {
color: white;
}Regards,
Ismael
-
AuthorPosts