Forum Replies Created
-
AuthorPosts
-
Hi,
Which icons do you want to add background to? Iconlist? Iconbox?
Regards,
Ismael
Hi,
I tested your site using Safari on a Windows machine and it looks ok.
I’ll tag Kriesi and Devin to check this out.
Cheers,
Ismael
Hey,
Please add this on your custom.css or Quick CSS
.home #av_section_1 {
border: none !important;
}Regards,
Ismael
Hi,
Please give the logo image with a unique css selector then copy the css code on your Quick CSS or custom.css, apply it on the specified selector. Place !important if necessary.
Regards,
Ismael
Hi,
You can use this:
.header_color .sub_menu>ul>li>a {
font-size: 14px;
color: red;
}You can also change the phone number size and color with this:
.phone-info.with_nav {
font-size: 14px;
color: red;
}Regards,
Ismael
August 12, 2013 at 8:39 am in reply to: Styling > Quick CSS missing on default language (using WPML) #134240Hi,
What I’m saying is, copy the code from Quick CSS to the custom.css located on the theme’s css folder. You can edit it via FTP or your cpanel.
Regards,
Ismael
Hi,
You can’t work on the Advance Layout Editor(ALE) and the Default Editor at the same time. You need to stick on ALE if you started editing the page using it. You can switch the Layout Builder to debug mode, this way you’ll be able to see the actual shortcode while working on the Advance Layout Editor. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}Please increase the wordpress php memory limit. Edit wp-config.php, add this code:
define('WP_MEMORY_LIMIT', '256M');
Also, click Screen Options and make sure that the Avia Layout Builder is enabled.
Regards,
Ismael
August 12, 2013 at 8:26 am in reply to: How to change display, when i click 'category' widget? #134491Hi,
You need to use the <!– more –> tag to specify the excerpt or enable the Excerpt on Screen Options.
http://en.support.wordpress.com/splitting-content/more-tag/
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
.widget_recent_entries li {
border: none;
}Regards,
Ismael
Hi,
Please add this at the very bottom of the functions.php file:
add_filter('avf_debugging_info', 'remove_debugging_info', $info); function remove_debugging_info($info) { $info = ''; return $info; }
Regards,
IsmaelHi,
The revision I gave you for the function-enfold.php works on my end. Please do it again, remove browser cache the reload the page.
Regards,
Ismael
Hi,
The shortcode for the Layer Slider is disabled. It is not going to work. Please use the Advance Layout Editor if you want to add the Layer Slider.
Regards,
Ismael
Hi,
Please give us a link to the bbPress forum page and the forum category tables. We’ll give you a proper css code to hide them on that specific pages.
Regards,
Ismael
Hi,
Please refer to this link: https://kriesi.at/support/topic/after-the-upgrade-pages-return-404-error
Or increase the php memory limit. Edit wp-config.php, add this code:
define('WP_MEMORY_LIMIT', '256M');
Regards,
Ismael
Hi,
There are certain characters/words that you need to modify or translate to make it fully compatible on another theme.
Regards,
Ismael
Hi,
There are certain css properties that are not supported on some browsers like the css transition property.
http://www.w3schools.com/css3/css3_transitions.asp
Regards,
Ismael
August 12, 2013 at 2:36 am in reply to: Remove pipe in title of main page; Social media icons in footer #131827Hi,
Please use this plugins for the social icons on footer widgets
http://wordpress.org/plugins/addthis/
http://wordpress.org/plugins/share-this/
Regards,
Ismael
Hi,
It always say “”Your access to this site has been limited”” when I clicked on any links. I don’t see the original issue where you place a table for name and age fields.
Edit config-templatebuilder > aviashortcode > portfolio.php, find this code:
$link_markup = apply_filters('avf_portfolio_custom_image_container', array("a href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);
Replace it with:
$link_markup = apply_filters('avf_portfolio_custom_image_container', array("a target='_blank' href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);
Regards,
Ismael
Hi,
You can use this on your custom.css or Quick CSS
.tax-product_cat .page-thumb {
display: none;
}You can be more specific and remove it on certain product category only. For example, you have a category called “CSS”, use this:
.term-css .page-thumb {
display: none;
}Regards,
Ismael
August 12, 2013 at 1:33 am in reply to: Problem with post slider and testimonials not rotating #134430Hi,
First, you need to decrease the template content div.
@media only screen and (min-width: 1140px) {
.responsive .container .nine.units {
width: 660px;
}
)The sidebar’s width will increase automatically on this screen width because it is set to 100%.
You need to use Media Queries to target the next screen size for the content, the sidebar will follow:
.container .nine.units {
width: 570px;
}And another, to target smaller screen sizes:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .container .nine.units {
width: 399px;
}
}We decrease the content width by 100px for each screen sizes therefore you will have a 100px bigger sidebar.
Regards,
Ismael
Hi,
I think Dude’s suggestion is what you’re looking for. Create two or three sliders, one layer slider for page 1 and the other for page 2. You can’t select or filter the slides to show on a certain page and not on the other.
Regards,
Ismael
Hi,
@elames: Thanks for the tip.
@bevlogenverf: I don’t see the breadcrumbs or page title on every page. I assume you already fixed it. If you didn’t, just add this on your custom.css or Quick CSS
.title_container {
display: none;
}And I can see that you’re having a style issue on your menus, I think this will fix it:
.main_menu ul:first-child > li > a {
font-size: 13px;
font-weight: 500;
}You can adjust the font size to 12.
Regards,
Ismael
Hi,
Can you give us a screenshot of what you’re trying to do?
On LayerSlider WP, edit the layer, under Style panel add a padding on top, bottom, left and right. Give it a background or add this on custom style settings field:
background: rgba(255,255,255,.5);
This will create a transparent white box around the logo.
Regards,
Ismael
Hi,
Please give us a link to the actual website so that we can check it and give you a proper solution. It is not happening on our end.
Regards,
Ismael
Hi,
You have a lot of cufon fonts on your site and targeting them each will be a pain in the arse. I suggest you use the default google fonts or add your own. Edit functions.php, add this line of code below line 3:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Arvo'] = 'Arvo:400,700';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Arvo'] = 'Arvo:400,700';
return $fonts;
}You can browse google web fonts here:
http://www.google.com/fonts/
Regards,
Ismael
Hi,
Edit js > avia.js, find this code under smoothscroll function:
var target = container.offset().top - fixedMainPadding,
oldLocation=window.location.href.replace(window.location.hash, ''),
newLocation=this,
duration= data.duration || 800,
easing= data.easing || 'easeOutQuint';Set duration= data.duration || with a higher value like 8000.
Regards,
Ismael
Hey,
@kommbuero: You can actually do it by editing function-enfold.php, find this code:
if(!function_exists('avia_post_nav'))
{
function avia_post_nav($same_category = false)Set it to true:
if(!function_exists('avia_post_nav'))
{
function avia_post_nav($same_category = true)Regards,
Ismael
-
AuthorPosts