Forum Replies Created
-
AuthorPosts
-
Hey Nick!
In that case the code should be:
.red_iconbox .iconbox_content{ background: red !important; }Best regards,
JosueSeptember 2, 2014 at 4:40 pm in reply to: Problemas con imagenes en el Shop y estilo en Contacto #312394Hola,
Despues de cambiar una configuracion de imagen tienes que regenerar las miniaturas, dale al boton que esta abajo – http://screencast.com/t/G35PgT5XM
Saludos,
JosueHi,
Can you post the link to your website please? a mockup of what you want to achieve would be helpful too.
Regards,
JosueSeptember 2, 2014 at 8:38 am in reply to: Bug: Yoast SEO Version 1.5.6 in Avia Layout Builder Page #312106Hey!
Are you using the latest version of Yoast SEO (1.5.6)?
Regards,
JosueHi!
First of all, make a backup of what you have right now, then update WordPress (3.9.2) and the theme (2.9.2) to their the latest versions.
Regards,
JosueHey Matthieu!
Don’t use fixed values, use percentages instead to make it responsive, something like:
#two-column{ width: 100%; } #two-column #left{ width: 50%; float: left; } #two-column #right{ width: 50%; margin-right: 0px; float: right; }Best regards,
JosueHi!
Make sure you set a link to the icon.
Cheers!
JosueHey John!
Try adding this at the very end of your theme / child theme functions.php file:
function change_blog_archive_style() { global $avia_config; if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; } } add_action('get_header', 'change_blog_archive_style');Cheers!
JosueSeptember 2, 2014 at 8:20 am in reply to: Site title & tagline no appearing in google search #312085Hi Josh!
I don’t think this is theme related but i get the same result with or without the “www” when i search your website on Google (i pasted the URL as the search string).
Cheers!
JosueSeptember 2, 2014 at 8:17 am in reply to: Same Lightbox for Featured Image and Gallery Images #312084Hi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueSorry but i don’t have any account or link to look, can you post the details here as a private reply?
Regards,
JosueHey!
That’s because the “header-scrolled” class gets assigned to the header when the shrinking is finished. You could change that in js/avia.js, function avia_header_size, around line 1300.
Regards,
JosueHi Josh!
Which elements are supposed to be set to Oswald Light on your website? i couldn’t note them.
Regards,
JosueSeptember 2, 2014 at 7:56 am in reply to: Images and Galleries do not expand anymore on newer posts #312065Hi!
Try disabling the Sidebar setting for that page.
Cheers!
JosueSeptember 2, 2014 at 7:51 am in reply to: How to display the caption that WordPress stores for an image? #312063Hello!
It is possible but it would require a heavy customization to the theme, unfortunately that’s beyond the scope of the support we can offer. If you really need it try contacting a developer.
Cheers!
JosueHey!
Not sure what you mean to be honest, i’m not noting any scroll impediment on load.
Regards,
JosueHi!
That code should work:
div#header_main {background-image: url(https://www.getdreamlook.com/wp-content/uploads/dream-look-bg3.png); background-repeat: repeat-x;}Try putting it at the beginning of Quick CSS.
Cheers!
JosueHey!
You just need to figure out the Time.ly Event post type slug and edit the code accordingly, for example let’s suppose the slug is “events”:
add_theme_support('add_avia_builder_post_type_option'); add_filter('avf_builder_boxes','enable_boxes_on_posts'); function enable_boxes_on_posts($boxes) { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'portfolio', 'events'), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'portfolio'), 'context'=>'side', 'priority'=>'low'); $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','portfolio', 'events'), 'context'=>'normal', 'priority'=>'high' ); return $boxes; }To check the slug of a post type, go to the listing of that post type and check the URL trail: http://screencast.com/t/2vdgpnCI
Regards,
JosueHi Alex!
It could be, do you have access to your PHP error log?, also try increasing the PHP memory limit.
Cheers!
JosueHey!
You’d need to change blog style to “Blog Single Author Small” in order to get the thumbnail the way you want.
Cheers!
JosueHey Cerasela!
Can you post a screenshot/mockup of what would you want to achieve with the accordeons?
Best regards,
JosueSeptember 2, 2014 at 6:56 am in reply to: Problemas con imagenes en el Shop y estilo en Contacto #312047Hola,
Me parece que lo que tendrías que hacer en este caso es cambiar la configuración de tamaños de imagen (a una mas pequeña que quepa en ese espacio), puedes hacerlo con este plugin (cambia estos: http://screencast.com/t/CRacnsyfjGxb).
Y por favor, no crees temas duplicados que se hace mas dificultoso para nosotros.
Saludos,
JosueHey!
Try:
@media only screen and (min-width: 767px) { #header_main{ display: none !important; } }Cheers!
JosueHey!
Try with this:
@media only screen and (min-width: 767px) { #header{ display: none !important; } }Cheers!
JosueYou are welcome Vince, glad to help :)
Regards,
JosueHey Vince!
Now the homepage and /blog are pulling the same content (“Custom Excerpt.”), i used this code in functions.php:
function change_blog_archive_style() { global $avia_config; if(!is_single()){ $avia_config['blog_content'] = get_the_excerpt(); } } add_action('get_header', 'change_blog_archive_style');Cheers!
JosueHi @epresley!
Have you tried setting a % value instead of px? try this:
.mfp-content, .mfp-iframe-scaler { max-width: none !important; height: 100%; width: 100%; }Best regards,
Josue -
AuthorPosts
