Forum Replies Created

Viewing 30 posts - 61,231 through 61,260 (of 67,348 total)
  • Author
    Posts
  • in reply to: Tabs menu in a different color #218560

    Hi Fiorilla!

    You can use this:

    div .main_color .tabcontainer .tab {
    background: blue;
    border-color: red;
    }

    Best regards,
    Ismael

    in reply to: Head With Social Media and Large Logo #218353

    Hey!

    Sadly, the functions.php and register-admin-options.php files will be overwritten when you update the theme.

    Regards,
    Ismael

    in reply to: Woocommerce – Setting it up #218348

    Hey controlC!

    You can refer to this link: http://docs.woothemes.com/document/installation/

    Best regards,
    Ismael

    Hey!

    Please replace it with this:

    add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
    function avia_order_by_random($query, $params)
    {
    $query['orderby'] = 'title';
    $query['order'] = 'ASC';
    
    $terms = explode(',', $params['categories']);
    if (!empty($terms) && in_array(55, $terms)) 
    {
        $query['orderby'] = 'date';
    }
    
    if (!empty($terms) && in_array(56, $terms)) 
    {
        $query['orderby'] = 'date';
    }
    return $query;
    }

    Best regards,
    Ismael

    in reply to: RSS Feed not working #218340

    Hi revovideo!

    On what browser and OS are you testing this with? Chrome does not support RSS feeds, you need to install a third party browser extension to be able to read rss feeds. On the other hand, Firefox does have a built in rss extension.

    Regards,
    Ismael

    in reply to: disabling video shortcode #218339

    Hey toddgeist!

    Please add this on functions.php to disable the video element:

    function ava_remove_video_element() {
    echo '<style type="text/css">.avia-tab.avia-tab-3 a[data-avia-tooltip="Display a video"]{display: none;}</style>';
    }
    
    add_action('admin_head', 'ava_remove_video_element');

    Best regards,
    Ismael

    in reply to: What is PrettyPhoto used for? #218336

    Hey toddgeist!

    You will lose the lightbox functionality for images and videos. Lightbox is the modal box that pop up when you click on an image or text linking to a video or image.

    Cheers!
    Ismael

    in reply to: Floating button #218332

    Hey!

    Please add this:

    #beta {
    z-index: 99999;
    }

    Regards,
    Ismael

    in reply to: Logosize stretch #218330

    Hi!

    We can’t see the website. Is it using an Enfold theme? Please post a screenshot. It says:

    Your access to this site has been limited

    Regards,
    Ismael

    in reply to: Changing size of images – homepage (Blog Posts) #218328

    Hey msfoto!

    Edit functions.php, find this code:

    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)

    Change the height then regenerate the thumbnail using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    in reply to: Masonry Blog Not Working #218325

    Hey!

    Deleted. :)

    Cheers!
    Ismael

    in reply to: Head With Social Media and Large Logo #218323

    Hi!

    Like I said, I’m not sure why the filter is not working but the instruction I posted above works. Please follow these steps:

    Best regards,
    Ismael

    in reply to: Re: Dude – masonry-portfolio-hover-figcaption #218319

    Hi!

    Please try this one:

    if(empty($this->loop[$key]['content']))
    {
    		$this->loop[$key]['content'] 	= avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '');
    }
    
    $prev_img_id = get_post_meta($id, 'artist_logo', true );
    if($prev_img_id != '') {
    if($prev_img_id) $image_attributes = wp_get_attachment_image_src($prev_img_id, $size = 'full', $icon = false); // returns an array
    if(!empty($image_attributes[0])) $this->loop[$key]['content'] = '<img src="'.$image_attributes[0].'" />';
    }

    Best regards,
    Ismael

    in reply to: youtube link not opening in lightbox #218317

    Hi!

    Instead of using the “Share” url on the youtube page. Copy the actual url on the browser and use it instead.

    http://www.youtube.com/watch?v=mkfIoNxOhOM&feature=youtu.be

    Regards,
    Ismael

    in reply to: I can't do this layout #218316

    Hi!

    Add the 2/3 and 1/3 column then insert a Text Block inside the 2/3 column. Edit the text block then add a column shortcode. I know this is not the easiest way but it works. Please hire a freelance developer if you want to modify the avia layout builder. You can also request the feature here: https://kriesi.at/support/topic/enfold-feature-requests/

    Best regards,
    Ismael

    in reply to: Remove de maincolor on one of de pages #218313

    Hi erikenanne!

    You can add this on Quick CSS:

    .page-id-498 #main {
    background: none !important;
    }

    Regards,
    Ismael

    in reply to: Header Resize #218311

    Hey!

    2.) You can move the logo using this:

    .logo {
    margin-left: 35%;
    }

    Use media queries to target different screen sizes.

    3.) Use this to resize the header height:

    #header_main .container, .main_menu ul:first-child > li a {
    height: 256px;
    line-height: 256px;
    }

    Regards,
    Ismael

    in reply to: Contact form title and button colour #217736

    Hey sineadh!

    Please use this on Quick CSS:

    #top form h3 {
    font-size: 15px;
    font-weight: 400;
    }

    Use this to change the color of the submit button:

    .main_color input[type='submit'] {
    background: red;
    }

    Regards,
    Ismael

    Hi!

    Can you please give us a link to the website? Have you tried updating the theme files? http://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    in reply to: Blog options #217734

    Hi ekessler!

    1.) You can hide the featured image on the blog using this on Quick CSS:

    .small-preview, .big-preview.single-big {
    display: none;
    }

    2.) You said that you want to remove the featured images? Try this:

    .small-preview, .big-preview.single-big {
    pointer-events: none;
    }

    3.) I’m sorry but it is not clear. What home icons?

    Best regards,
    Ismael

    in reply to: Header Resize #217732

    Hi!

    I can’t login to the website. The password and username is incorrect. It takes me to the maintenance mode page.

    Best regards,
    Ismael

    in reply to: youtube link not opening in lightbox #217731

    Hi!

    Please try to edit the image with the video link on the full width easy slider then make sure that the “Open Link in new Window?” option is set to “Open is same window”.

    Best regards,
    Ismael

    in reply to: Problems in IE8 #217729

    Hi bryanpeck!

    Please add this on custom.css or Quick CSS to fix the background color issue:

    .alternate_color, .alternate_color .site-background, .alternate_color .first-quote, .alternate_color .related_image_wrap, .alternate_color .gravatar img .alternate_color .hr_content, .alternate_color .news-thumb, .alternate_color .post-format-icon, .alternate_color .ajax_controlls a, .alternate_color .tweet-text.avatar_no, .alternate_color .big-preview, .alternate_color .toggler, .alternate_color .toggler.activeTitle:hover, .alternate_color #js_sort_items, .alternate_color.inner-entry, .alternate_color .grid-entry-title, .alternate_color .related-format-icon, .grid-entry .alternate_color .avia-arrow, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery img, .alternate_color .grid-content {
    background-color: #f8f8f8;
    background: #f8f8f8;
    color: #4d4d4d;
    }
    
    .main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .big-preview, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content {
    background-color: #f8f8f8;
    background: #f8f8f8;
    color: #4d4d4d;
    }

    Regards,
    Ismael

    in reply to: Logo Size Too Big on Mobile Device #217728

    Hi!

    You can add this one;

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
    margin: 0 auto;
    max-width: 268px !important;
    }
    }

    Cheers!
    Ismael

    in reply to: Items not Loading #217727

    Hi!

    Have you tried disabling all your plugins? Please contact your host and ask them if they could upgrade the php version.

    Regards,
    Ismael

    Hey Alex!

    Are you using the Advance Layout Builder for the portfolio items? You need to edit the “template-builder.php” then.

    Cheers!
    Ismael

    in reply to: "normal" box shortcode? #217723

    Hi melonmelon!

    No, there is no box shortcode. Please elaborate.

    Regards,
    Ismael

    in reply to: Logosize stretch #217722

    Hi!

    You can add this on Quick CSS or custom.css to adjust the height of the header. It will automatically adjust the max width of the logo too:

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 229px;
    line-height: 229px;
    }
    

    I don’t think it looks good. The current size of your logo now looks better.

    Best regards,
    Ismael

    in reply to: Clickable header phone number #217721

    Hi!

    Please edit header.php, find this code on line 14:

    <meta charset="<?php bloginfo( 'charset' ); ?>" />

    Below, add this code:

    <meta name="format-detection" content="telephone=yes">

    Best regards,
    Ismael

    in reply to: Full width header image and menu under it #217720

    Hi!

    The “Header with social icons and bottom navigation” header already have a bottom navigation or menu. It is below the logo or the image.

    Regards,
    Ismael

Viewing 30 posts - 61,231 through 61,260 (of 67,348 total)