Forum Replies Created
-
AuthorPosts
-
Hey waterwalk!
It should take you on the Blog page. Please reset the settings on Settings > Reading panel if you have any. You can use goo.gl to hide the actual url of the website. Post it here, we need to inspect the site.
Best regards,
IsmaelFebruary 19, 2014 at 8:24 am in reply to: Layerslider Background Transparency Not Working On Image #226003Hey jmikhail!
Edit config-layerslider > LayerSlider > css > layerslider.css, find this code on line 585:
html * .ls-container img, body * .ls-container img, #ls-global * .ls-container img { background: none !important; min-width: 0 !important; max-width: none !important; border-radius: 0px; box-shadow: none; border: 0px; padding: 0px; }
Replace it with:
html * .ls-container img, body * .ls-container img, #ls-global * .ls-container img { min-width: 0 !important; max-width: none !important; border-radius: 0px; box-shadow: none; border: 0px; padding: 0px; }
Cheers!
IsmaelFebruary 19, 2014 at 8:15 am in reply to: Having issue with columns. No clear div? Other content floating over columns. #226000Hi!
I enclosed the bottom part using 1/1 column layout and it’s ok now. Please check: http://devineportfolio.com/whce/scholarships/#tab-id-1
Remove browser cache then reload the page a few times.
Best regards,
IsmaelHi AdDesign!
You need to edit the page then remove the parent page on Page Attributes > Parent settings.
Best regards,
IsmaelHey jrcohen81!
Have you tried switching to a default theme? Do the issue occur when you switch the theme?
Cheers!
IsmaelHi nonne!
Yes, that is possible. Go to Appearance > Menus > Screen Options, enable the “Portfolio Categories”.
Best regards,
IsmaelHi!
We suggest that you hire a freelance developer if you want to change how the testimonial bump the content below. The suggested code above should increase the testimonial content container height and prevent huge bump on slide transition. Try this for bigger screen size:
@media only screen and (max-width: 1024px) { .main_color .avia-slider-testimonials .avia-testimonial-content { min-height: 200px; } }
Best regards,
IsmaelFebruary 19, 2014 at 7:50 am in reply to: How to add padding to regular pictures in posts & pages? #225983Hey gentlemansgazette!
You can add this on Quick CSS or custom.css:
.wp-caption.alignright { margin: 0 0 10px 10px; }
Cheers!
IsmaelHey syl!
Can you please elaborate? A screenshot of what you’re trying to do will help.
Best regards,
IsmaelHey Carlos!
You don’t need to add html codes to create a video background. Just the edit the fullscreen slider for example then click “Add single image or video”. Configure the option “Which type of slide is this?”, select “Video Slide”. Enter the url of the video.
Cheers!
IsmaelHey!
You can edit header.php, find this code on line 92:
<div id='header_meta' class='container_wrap container_wrap_meta'> <div class='container'>
Create a new div below then use the do_shortcode function. Referring to the site, maybe you add something like this:
<div class="stockQuote"> <?php echo do_shortcode('[whatever_my_shortcode_is]'); ?> </div>
Cheers!
IsmaelHey Kevin!
You can try a login widget like http://wordpress.org/plugins/sidebar-login/ or http://wordpress.org/plugins/login-with-ajax/
Cheers!
IsmaelFebruary 19, 2014 at 6:23 am in reply to: Large centered logo (300px square) above centered navigation (on all devices) #225957Hey!
If you want to center align the logo, you can add this on Quick CSS or custom.css:
.logo { width: 100%; } .logo a { width: 300px; margin: 0 auto; }
Regards,
IsmaelHi Jaap!
Are you working on a MAC computer? I tested this on Firefox 28.0 Windows 8 and the video background works fine. I’ll report the problem to Kriesi. Meanwhile, please wait for Josue and Devin to respond. They can check this on a MAC.
Regards,
IsmaelHi charger70!
This seems to be a server side issue. Please ask your host. Josue noted that you should have space in your /tmp directory, and with the correct permissions. If you don’t know anything about it please contact your hosting support. Do you have godaddy as host?
Regards,
IsmaelHey!
I’m sorry but most of your inquiry or expected features are not included within the theme. You should hire a freelance developer to add those features or find a plugin that may work around theme. Note, that we don’t fully support third party plugins. For inquiry number 3, you can create div on a Text Block, something like this:
<div class="flex_column forty-percent-div first">PLACE CONTENT HERE</div> <div class="flex_column sixty-percent-div">PLACE CONTENT HERE</div>
Then add this on Quick CSS to define the width of the containers:
.forty-percent-div { width: 38% !important; } .sixty-percent-div { width: 56% !important; }
Best regards,
IsmaelHi Jack!
You can this on Quick CSS to decrease the size of the page content just like the post without sidebar:
.page .fullsize .content .entry-content-wrapper { padding-right: 0; max-width: 600px; margin: 0 auto; }
Cheers!
IsmaelHey!
Aside from the changes above, please edit the same file then find this code on line 411:
$output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.$image."</".$link_markup[1].">";
Replace it with:
$output .= "<a class='grid-image avia-hover-fx'>".$custom_overlay.$image."</a>";
This should remove the link from the portfolio thumbnails.
Best regards,
IsmaelHey!
If you want to remove the title attribute for all images, you can edit js > avia.js. Find this code on line 5:
$(document).ready(function() {
Below, add this code:
$('img').removeAttr('title');
Please post the link to the actual website so that we can inspect it. Please try this on Quick CSS:
.avia-tooltip { top: 400px !important; }
Regards,
IsmaelHey!
I’m not sure if it is possible to add fonts manually. I’ll ask Dude. Are you adding multiple icon fonts? Please try to select a single icon font then upload it on the iconfont manager.
Best regards,
IsmaelHey solljul!
Please wait for Josue and Devin to respond. They can check it on their MAC system. AFAIK there is no issue with Firefox. We’ll report it to Kriesi.
Regards,
IsmaelHi!
You should use the WP Gallery Custom Links plugin. Add Dude’s code at the very bottom of functions.php. Make sure you have the latest version of Enfold.
add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4); function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $custom_url = get_post_meta($attachment->ID, '_gallery_link_url', true); if(!empty($custom_url)) { $link[0] = $custom_url; $link['custom_link_class'] = 'aviaopeninbrowser'; } return $link; }
This works on our end. As you can see on the screenshot the link of the hovered image is google.com, which is the url that we set for the image.
Cheers!
IsmaelHey!
Can you please post the login details here? We would like to check it. Deactivate all existing plugins because we don’t want to mess up your plugin settings.
Best regards,
IsmaelHey!
The website is on maintenance mode. You should probably disable it so that we can check the slider.
Best regards,
IsmaelFebruary 19, 2014 at 4:38 am in reply to: Header Navigation Styling Adjustments & Moving the Contact form button #225927Hi!
3.) You can set a minimum width for the menu but this might cause you trouble on smaller screen sizes. Use media queries to change the width on smaller screens. Add this on Quick CSS:
.bottom_nav_header.social_header .main_menu ul:first-child>li a { min-width: 100px; text-align: center; }
4.) Can you please post a screenshot of what you’re trying to do?
Regards,
IsmaelFebruary 19, 2014 at 4:34 am in reply to: Is there a way to add a Search Box next to magnifying glass icon #225926Hey!
Can you please give us a link to the page with the “Search” text? How did you add it?
Best regards,
IsmaelHey awilson3rd!
You can edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 432:
$output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
Replace it with:
$output .= "<h2 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h2>";
Add this on Quick CSS or custom.css:
#top .grid-entry.no_margin.av_one_third { padding: 10px; }
Best regards,
IsmaelHey!
No, we are not aware of this problem with the plugin. Please contact the plugin author or disable it entirely.
Best regards,
Ismael -
AuthorPosts