Forum Replies Created

Viewing 30 posts - 59,131 through 59,160 (of 67,163 total)
  • Author
    Posts
  • in reply to: Remove title showing when mouse over #249046

    Hey!

    Thank you for the screenshot.

    If you don’t mind, we would like to check the actual page where you want to remove the title hover. Please post it here as a private reply. We will provide you with a response once we have a better understanding of the issue.

    Cheers!
    Ismael

    in reply to: Google map disappears #249043

    Hey designing!

    Thank you for using the support forum.

    I’m sorry but at this moment, I’m not entirely certain of the issue based on the information you have given in your post. If you wouldn’t mind providing us a link to the website and a little more clarification about the issue (a screenshot perhaps), we’ll be happy to provide you with a response once we have a better understanding of the problem.

    Cheers!
    Ismael

    in reply to: Iconfont Not Working #249040

    Hey LecheLMP!

    Thank you for using the support forum!

    I checked the website on Chrome Windows 8 and I can see the font icons. If this is happening on Firefox and IE, please refer to this link: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems

    Best regards,
    Ismael

    in reply to: Portfolio image height #249035

    Hi!

    Thank you for using the support forum!

    Edit the code on functions.php:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Replace it with:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>400, 'crop' => false);		                 // big images for blog and page entries
    

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Let us know if it works. If not, please give us a link to the actual portfolio item where you test it.

    Best regards,
    Ismael

    in reply to: Issues with Blogroll on a client site #249030

    Hi!

    Thank you for using the support forum!

    Please add this on Quick CSS or custom.css:

    .post {
    clear: both;
    float: none;
    }

    I hope that helps.

    Cheers!
    Ismael

    in reply to: Stop movement of the title #249029

    Hi eymata!

    Thank you for using the support forum.

    I’m sorry but at this moment, I’m not entirely certain of the issue based on the information you have given in your post. Which title are you trying to stop from moving? If you wouldn’t mind providing us with a little more clarification about the issue (a screenshot perhaps), we’ll be happy to provide you with a response once we have a better understanding of the problem.

    Regards,
    Ismael

    in reply to: Centered logo and navigation #249028

    Hey nnn666nnn!

    Thank you for using the support forum!

    Please go to Enfold > Header > Header Layout > Menu and Logo Position. Select the Logo Center, Menu below option. I hope that helps.

    Best regards,
    Ismael

    in reply to: Logo cut off and mobile menu #249026

    Hi!

    The codes above should fix the issue on mobile. Please try this:

    @media all and (max-width: 767px) {
    .responsive .logo {
    height: 50px;
    }
    }
    

    This is the screenshot after the css modification.

    Regards,
    Ismael

    in reply to: Issues with Updating Sliders #249023

    Hi!

    Thank you for the login details.

    Which type of slider are you using? I created a test page then added the Easy Slider which works fine when I updated it. If you can give us a little more clarification of the issue, we’ll be happy to provide you with a response. This is the test page that I created: http://sppaone.com/?page_id=2990#next

    Regards,
    Ismael

    in reply to: Make layer on LayerSlider, responsive to full width. #249021

    Hey themeforesttony!

    Thank you for using the support forum and the kinds words.

    Edit the layer with the image then go to the Styles panel. On Layouts & Position > Width option set it to 100% to make it fullwidth.

    Best regards,
    Ismael

    in reply to: forums border not displaying as shown in demo #249018

    Hey lasry02!

    Thank for using the support forum!

    That is a custom style Kriesi created for the demo page. You can add something like this on Quick CSS or custom.css:

    .avia_transform .bbp-replies .bbp-reply-author::before, .avia_transform .forum-search .bbp-reply-author::before, .avia_transform .forum-search .bbp-topic-author::before {
    width: 14px;
    height: 14px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 25px;
    z-index: 100;
    content: "";
    left: 98px;
    border-left-style: solid;
    border-bottom-style: solid;
    border-left-width: 1px;
    border-bottom-width: 1px;
    }
    
    div.bbp-reply-content {
    min-height: 68px;
    text-align: left;
    overflow: hidden;
    border-radius: 2px;
    padding: 7px 20px;
    border-style: solid;
    border-width: 1px;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    }

    I hope that helps.

    Best regards,
    Ismael

    Hey SkyBlue7!

    Thank you for using the support forum!

    You can edit includes > register-portfolio.php. Find this code on line 9:

    'name' => _x('Portfolio Items', 'post type general name','avia_framework'),
    

    Please create a backup of the file first before doing anything. I hope that helps.

    Regards,
    Ismael

    in reply to: Layer slider loads very slowly #249015

    Hi rseybold!

    Thank you for using the support forum!

    Usually minimizing, the plugins that you install will greatly improve the performance. I can see that you’re using a lot of plugins like fancy box and meteor slides. These are the things that you can do to optimize the website speed and page load. You can do the following:

    1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
    2. Once all images are on the website optimize with ewww optimizer plugin twice 1hr 10mins apart.
    3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
    4. Use BWP minify plugin to minify scripts and stylesheets.
    5. Install WP-Super cache, select all recommended settings, use memcache option, update .htaccess rules, increase cache to 840000, Save then delete cache.
    6. Logout your website, visit every page at least once to create super cache files.
    7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
    8. Have a cup of coffee.
    9. Visit your site after 20 minutes or so.
    10. Don’t forget to smile

    Cheers!
    Ismael

    in reply to: hover on image by clickable image #249011

    Hi Miikey!

    Thank you for using the support forum!

    You can add something like this on Quick CSS or custom.css:

    .image-overlay-inside {
    display: none !important;
    opacity: 0 !important;
    }

    This will remove the overlay effect on hover.

    Cheers!
    Ismael

    in reply to: Iconbox Size #249010

    Hey loganwilliamson!

    Thank you for using the support forum!

    Please create a page then insert 4 1/4 columns. Inside each columns, you can insert the iconbox element. I hope that helps.

    Regards,
    Ismael

    in reply to: Pages randomly forwarding to youtube.com #249008

    Hey!

    Glad it is working now. If you have any questions, let us know. :)

    Best regards,
    Ismael

    in reply to: Font keeps resetting to 'Web save fonts' #249007

    Hey!

    Thank you for the info.

    I’m sorry but at this moment, I’m not entirely certain of the issue. If you wouldn’t mind providing us a link to the website and a little more clarification about the issue (a screenshot perhaps), we’ll be happy to provide you with a response once we have a better understanding of the problem.

    Best regards,
    Ismael

    in reply to: Issues with blog #249004

    Hey!

    Thank you for updating.

    I checked the website and I can’t click on the featured images above the post title. I think this is what you want, right? I’m testing it on Chrome Windows 8. Please try this:

    .big-preview.single-big a {
    pointer-events: none !important;
    }

    I hope that helps.

    Cheers!
    Ismael

    in reply to: Social Links on the Header/Socket #247145

    Hey!

    Thank you for using the support forum!

    You can change the social icon character code on functions.php. Look for the facebook char codes for example on line 172:

    'facebook' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8f3'),
    

    You can find the character codes by hovering over the icons:

    We’ll use the char code on the example above but we’ll remove the backslash.

    'facebook' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8f4'),</code>
    

    I hope that helps.

    Best regards,
    Ismael

    in reply to: Gallery thumbnails alignment and sizing #247140

    Hey!

    One of the hardest part on wordpress is setting the correct image size that will suit your needs. The easiest solution is to resize the images before uploading them. Glad you figured it out for yourself. :)

    Best regards,
    Ismael

    in reply to: Main Navigation with Buttons #247138

    Hi chrisholemar!

    Thank you for using the support forum!

    You can use the Logo left, menu below header option then add this on Quick CSS or custom.css:

    #header_main_alternate {
    border: none;
    margin-bottom: 20px;
    }
    
    .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li:first-child a, .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li a {
    border: none;
    }
    
    #header_main_alternate > div {
    border-bottom: 1px solid gray;
    padding: 20px 0;
    }
    
    .av-main-nav > li {
    line-height: 30px;
    background: blue;
    margin-right: 20px;
    border-radius: 3px;
    }
    
     .header_color .main_menu ul:first-child > li > a {
    color: #ffffff;
    }

    This needs polishing but it’s a start. I hope that helps.

    Cheers!
    Ismael

    in reply to: Logo overlying the Menu in Ipad and small screens #247132

    Hi!

    Thank you for using the support forum!

    I checked your website and the mobile navigation shows up right before the menus and the logo stick up with each other. I think you already changed the option as Yigit suggested. Yes, it is possible to resize the logo on screen smaller than 990px. You can use media queries but I don’t think you need it anymore.

    Regards,
    Ismael

    in reply to: No pading around content area. #247129

    Hey!

    Thank you for the link and the screenshot. We might need to see the actual page in order to give you an answer tailored to your needs. If you don’t mind, please post the website url here. We’ll be happy to give you a response once we have taken a look on the actual website.

    Best regards,
    Ismael

    in reply to: Blog post photos not showing up in Facebook #247125

    Hi!

    Thank you for using the support forum!

    Please use the Yoast SEO plugin, go to SEO > Social, tick the “Add Open Graph meta data” checkbox, login as facebook admin and then set the description + image. Afterwards save the settings. Make sure that there are no other SEO plugins installed.

    Best regards,
    Ismael

    in reply to: Easy Slider Glich #247123

    Hey!

    Thank you for using the support forum!

    I’m sorry but when I tested the sliders on Chrome Version 33.0.1750.154 Windows 8 but I don’t see the glitch just like Josue. Did you try this on a different computer or browser? If you don’t mind, please post a short screencast, that will help.

    Regards,
    Ismael

    in reply to: Having few issues with Images using Gallery Element #247116

    Hey!

    The problem is you’re using images with different ratio and dimension. The first images are square because, if I am not mistaken, the original image are close to being square. The only thing we can suggest is to resize the tall images close to the ratio that you want before uploading them.

    Cheers!
    Ismael

    in reply to: Can't edit or add Textcontent #247109

    Hi!

    Thank you for the link but before we can help you. Where do you intend to transfer the website? What domain? And the exact directory on where you want the wordpress files to be located. Please watch the video on the link that Dude provided. This will surely clear things up for you. If we access the wp dashboard right now, all we can do is access the WP MigrateDB plugin then generate the database file which is not helpful at all.

    Best regards,
    Ismael

    in reply to: Page background color won't change #247107

    Hey!

    Thank you for using the support forum.

    The brown background is applied on the <html> tag. You can add this on Quick CSS or custom.css to remove it:

    html {
    background-color: transparent;
    }

    Add the background image, let us know if it works.

    Regards,
    Ismael

    in reply to: Formatting Issue #247104

    Hey leighgoodman7!

    Thank you for using the support forum.

    I’m sorry but at this moment, I’m not entirely certain of the issue based on the information you have given in your post. If you wouldn’t mind providing us a link to the website and a little more clarification about the issue (a screenshot perhaps), we’ll be happy to provide you with a response once we have a better understanding of the problem.

    If I am not mistaken, this has something to do with the builder timing out due to wp reaching its memory limit. You might want to increase it to at least 128M. The first thing you can do to fix this is to add the following lines in your wp-config.php file located at the root of your installation:

    define( 'WP_MEMORY_LIMIT', '128M' );
    define( 'WP_MAX_MEMORY_LIMIT', '256M' );

    You can also contact your host if you’re not comfortable doing the adjustments yourself. Refer to this link for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,
    Ismael

    in reply to: One Page Portfolio & Apple Mobile Devices #247098

    Hey!

    Thank you for using the theme!

    In order to check if you have the latest version of the theme, just go to Appearance > Themes then look for the Version number. If you see 2.6.2 then you have the latest version. If not, please refer to this link on how to update the theme via FTP: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

Viewing 30 posts - 59,131 through 59,160 (of 67,163 total)