Forum Replies Created

Viewing 30 posts - 61,891 through 61,920 (of 66,839 total)
  • Author
    Posts
  • in reply to: Serious responsiveness issue #198926

    Hi!

    Please edit header.php, find this code:

    <?php
    
    if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
    
    ?>

    Below, add this code:

    <script type="text/javascript">
    (function() {
    	var meta = document.createElement("meta");
    	meta.setAttribute('name','viewport');
    	var content = 'initial-scale=';
    	content += 1 / window.devicePixelRatio;
    	content += ',user-scalable=no';
    	meta.setAttribute('content', content);
    	document.getElementsByTagName('head')[0].appendChild(meta);
    })();
    </script>

    I’m not sure if this is going to work but it’s worth a try. According to the author of the code it will equalize the CSS pixel density on mobile devices.

    Best regards,
    Ismael

    in reply to: Portfolio grid queries #198920

    Hi!

    1.) If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page. The page id on your end might be different.

    .page-id-2251 .column-top-margin {
    margin-top: 20px;
    }

    2.) Add this on your custom.css or Quick CSS to fix Peter’s picture:

    .avia-team-member {
    margin: 0;
    clear: both;
    }

    3.) Use this to remove the content slider heading:

    .avia-content-slider .slide-entry-title {
    display: none;
    }

    4.) Use this to move the button:

    .page-id-1212 .avia-button-wrap {
    margin-top: -20px;
    }

    Regards,
    Ismael

    in reply to: Loop and preview bug with ajax portfolio #198914

    Hey!

    You can use goo.gl or tinyurl.com to hide the website’s URL. Post it here as a private reply.

    Best regards,
    Ismael

    in reply to: Header Customisation #198907

    Hey 500Webmaster!

    This will be easier if you use the header with the bottom navigation. Add this on your custom.css or Quick CSS to move the menu on the title container:

    #header_main_alternate {
    border: none;
    }
    
    .bottom_nav_header.social_header .main_menu {
    top: 10px;
    }
    
    #header_main_alternate .container {
    height: 0;
    }
    
    .bottom_nav_header.social_header .main_menu ul:first-child>li:first-child a, .bottom_nav_header.social_header .main_menu ul:first-child>li a {
    border: none;
    }
    
    .bottom_nav_header.social_header #top .main_menu .menu-item-search-dropdown {
    float: left;
    }

    To add more content on the header section, please edit header.php then find this code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');

    You can add text or image code below.

    Regards,
    Ismael

    in reply to: Sidebar Question (: #198899

    Hey Haycreations!

    Can you please give us a link to the Blog and Shop page? This is a bit tricky because you need to change the width of the content to adjust the size of the sidebar. Another thing is, you need to adjust it on different screen sizes. Example:

    @media only screen and (min-width: 1140px) {
    .responsive .container .nine.units {
    width: 860px;
    }
    }

    Best regards,
    Ismael

    in reply to: socket background image not working #198897

    Hey!

    I managed to change the socket background: http://www.acmena.com.au/

    Please add this on Quick CSS to change the copyright text:

    #socket .copyright, .socket_color a {
    color: #333;
    }

    Cheers!
    Ismael

    Hey!

    Please use this instead:

    .social_header .phone-info span {
    font-size: 20px;
    color: orange;
    }

    Cheers!
    Ismael

    in reply to: Post widget / link #198889

    Hi oliviad!

    1.) You can remove the link on the small icon. Edit js > avia.js, find this code:

    $.avia_utilities = $.avia_utilities || {};

    Below, add this code:

    $("a.small-preview").removeAttr("href");

    Remove browser cache then reload the page a few times.

    2.) Can you please give us a link to the page with the actual widget?

    Cheers!
    Ismael

    in reply to: displaying portfolio excerpt in portfolio grid #198885

    Hey ShortieD!

    Are you talking about the Portfolio Grid element? You can configure the option then look for “Excerpt”, choose Title and Excerpt.

    Best regards,
    Ismael

    in reply to: Having all toggles open isn't working #198884

    Hi!

    I’m sorry but can you point me to the page with the toggle shortcode? I can’t find it.

    Cheers!
    Ismael

    in reply to: portfolio made from pages not posts? #198883

    Hey!

    You can use the Fullwidth Masonry Gallery element to replicate thebeautysalon’s grid images. And if you don’t mind, you can create Portfolio items with a unique category. Use these portfolio items on a Portfolio Grid element. You can choose not to display the portfolio title using CSS and disable the portfolio grid images link if you want.

    Regards,
    Ismael

    in reply to: What are the updates for December if any? #198879

    Hi Monsoon!

    Kriesi is currently working on the 2.5 version of the theme. There are various element fixes but we still don’t know if there are any added features. Make sure to check https://www.facebook.com/kriesi.at?ref=br_tf and follow Kriesi on https://twitter.com/Kriesi for future update announcement.

    Cheers!
    Ismael

    in reply to: Disable fullscreen slider in mobile #198876

    Hi!

    Please add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    #fullscreen_slider_0 { display: none;}
    }

    Remove browser cache then reload the page

    Regards,
    Ismael

    in reply to: Home Page displaying as blank white page… #198875

    Hey!

    I flushed the Theme Options > Frontpage Settings and it started to work again. Please check: http://arabellafoods.co.uk/

    Regards,
    Ismael

    in reply to: Navigation arrow/pointer #198873

    Hey GallusPromotions!

    What arrow or pointer? Are you talking about the avia-menu-fx that shows on current menu item?

    Best regards,
    Ismael

    in reply to: Fixed layout not working #198871

    Hey tobylove!

    I checked the website and the Service menu looks fine on all screen sizes: http://responsinator.com/?url=http%3A%2F%2Fwww.vertigosalonla.com%2Fnew%2Fservice%2F

    Best regards,
    Ismael

    in reply to: logo resize #198869

    Hi!

    Please change this line of code on Yigit’s solution:

    @media only screen and (min-width: 767px) and (max-width: 1120px) { 
    #header .avia_mega_div { width: 800px; } }

    Replace it with:

    @media only screen and (min-width: 767px) and (max-width: 1120px) { 
    #header .avia_mega_div.avia_mega6 { width: 800px; } }

    Regards,
    Ismael

    in reply to: Remove WP Login from Header #198867

    Hey axiom555!

    What do you mean by WP Login? Can you please give us a link to your website?

    Cheers!
    Ismael

    Hi!

    Please check the wp-config.php file, look for this code:

    /** Database Charset to use in creating database tables. */
    define('DB_CHARSET', 'utf8');

    The DB_CHARSET should be set to utf8.

    Best regards,
    Ismael

    Hi ShortieD!

    Please use this:

    .slide-entry-excerpt.entry-content {
    font-size: 16px;
    line-height: 24px;
    }
    
    .slide-entry-title.entry-title {
    margin-bottom: 10px;
    }

    Best regards,
    Ismael

    in reply to: How to disable one of the responsive layouts? #198864

    Hey fluent_Agency!

    Edit css > layout.css, find this code under Media Queries section:

    /* Tablet Portrait size to standard 960 (devices and browsers) */
    	@media only screen and (min-width: 768px) and (max-width: 989px) {
    
    		.responsive #top .mobileMenu{position: absolute; top: 50%; margin: -15px 0 0 0; width:250px; right:0; max-width: 250px;}
    		.responsive .main_menu ul:first-child > li > a { padding: 0 10px; }
    		.responsive #top #header {position: relative; }
    		.responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
    		.responsive #top #main   {padding-top:0; }
    		.responsive #main .container_wrap:first-child{ border-top:none; }
    		.responsive .mobile_slide_out .logo{float:left;}
    		.responsive .mobile_slide_out .logo img{margin:0;}
    		.responsive .mobile_menu_tablet .main_menu{display: none; }
    
    		}

    You can remove it but it will break the layout of the site. If you want the mobile menu to show under 1001px, please edit js > avia.js, find this code on line 89:

    switchWidth = 767;

    Replace it with:

    switchWidth = 1001;

    Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    in reply to: Disable Lightbox #198861

    Hey!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: iPad: Enfold – Avia Contactform submit doesn't work #198846

    Hey MatthijsLiethof!

    Can you please give us a link to the website? Please use this plugin: http://wordpress.org/plugins/easy-wp-smtp/
    I’ll ask Josue to check this on his iPad.

    Cheers!
    Ismael

    in reply to: Transparent Main Menu with Full Screen Slider #198844

    Hi!

    Please remove Josue’s code then use this instead to move the main container:

    #main {
    top: -88px;
    position: relative;
    }

    Regards,
    Ismael

    in reply to: Text Boxes Not Working #198843

    Hi jfannthemusicman!

    Do you have an administrator account? Can you please give us the login details? Set it as a private reply.

    Cheers!
    Ismael

    in reply to: portfolio grid problem #198842

    Hi!

    You’re using an old version of theme. Please download the latest version on themeforest then update the theme via FTP. Watch this video: https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    in reply to: width images masonry gallery #198841

    Hey!

    It is working properly when I tested it on your end. I created a Test page and follow the same options you mentioned above. This is the page: http://dev.mat3rial.com/goingpublic/test-2/

    Regards,
    Ismael

    Hi Barabbas!

    Do you mean that the Fullwidth Masonry element doesn’t work if you don’t add the Blog Posts element? It should work even without the Blog Posts element. Please deactivate all plugins then reload the page. Test it again.

    The masonry element is not working on this page: http://mashitout.com/home/

    Regards,
    Ismael

    in reply to: Align Featured Images to the Right #198833

    Hey proximomktg1!

    What type of Blog Style do you have? Can you please give us links to a sample post and portfolio item?

    Best regards,
    Ismael

    in reply to: Shop Page Layout and Features #198830

    Hey Imburr!

    Don’t set a Shop Base Page on WooCommerce > Settings > Pages. Create a page then insert the Product Grid element under Plugin Additions panel. Select 4 or 5 Columns. Use this page as your shop page.

    Regards,
    Ismael

Viewing 30 posts - 61,891 through 61,920 (of 66,839 total)