Forum Replies Created

Viewing 30 posts - 62,731 through 62,760 (of 67,003 total)
  • Author
    Posts
  • Hey!

    Did you try the second solution? You can use this on custom.css or Quick CSS to remove the caption and title:

    .avia-slideshow .avia-caption {
    display: none;
    }
    

    Cheers!
    Ismael

    Hey!

    You need to use the WPML plugin to translate the website.

    Regards,
    Ismael

    in reply to: image dimensions + change to swedish #186551

    Hey idespiran!

    Where are you going to use the images? Slider? Blog posts? You can find the image sizes on functions.php, find this code:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            // big images for blog and page entries
    	$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );					// images for fullsize pages and fullsize slider
    }

    You can edit wp-config.php, find this code:

    define('WPLANG', '');

    Replace it with:

    define('WPLANG', 'sv_SE');

    You can use this plugin to translate the strings manually. http://wordpress.org/plugins/codestyling-localization/

    Cheers!
    Ismael

    in reply to: How to change the font of main menu #186550

    Hi!

    The code should work:

    .main_menu ul:first-child > li > a {
    padding: 0 12px !important;
    font-size: 15px;
    }

    Please remove browser cache then reload the page a few times. Don’t forget to “Save Changes”.

    Regards,
    Ismael

    Hey 10-der!

    Browsers render the title attribute differently. We really don’t have any control over them. You can edit js > avia.js, find this code on line 5-6:

    $(document).ready(function()
        {

    Add this code below:

    $(".avia-slideshow li img").attr('title', '');

    This is not a solid solution but it should work on a few browsers. Remove browser cache then reload the page a few times. You can also edit config-templatebuilder > avia-shortcodes > slideshow.php, find this code on line 486:

    $linktitle = trim($slide->post_title) ? esc_attr($slide->post_title) : "";

    Replace it with:

    //$linktitle = trim($slide->post_title) ? esc_attr($slide->post_title) : "";

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: primary color and strong text #186541

    Hi!t

    Yes, it will appear once you install a child theme. It is a blue button on Enfold > Theme Options.

    Regards,
    Ismael

    in reply to: Hide youtube title #186406

    Hey musklick!

    I’m not sure if it is possible. Try to add the ?rel=0&showinfo=0 at the end of the youtube url. Can you please post a link to your website with the video?

    Best regards,
    Ismael

    in reply to: Sudden problem with logo scaling #186404

    Hey!

    The logo looks fine on Firefox 24.0 Windows 7. What OS are you testing this with? Can you please remove the browser cache then reload it again? This is the screenshot of your logo on Firefox.

    Regards,
    Ismael

    in reply to: OnPageLayout – Header mit Navi verschwinden lassen #186399

    Hi VelvetStarter!

    You didn’t provide a link. If I am not mistaken, you want to remove the header title with breadcrumbs? You can edit the page, look for Layout > Header > select “Don’t display the header”.

    Regards,
    Ismael

    in reply to: Issue with Navigation menu on iPad and iPhone #186398

    Hey!

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

    @media only screen and (min-width: 769px) and (max-width: 1250px) {
    .logo img {
    width: 180px !important;
    margin-top: 10px;
    }
    
    .main_menu ul:first-child > li > a {
    font-weight: 600;
    font-size: 11px;
    }
    }

    Cheers!
    Ismael

    in reply to: H1 tag size #186395

    Hey!

    Please use this:

    .product_title.entry-title {
    font-size: 12px !important;
    }

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Logo Dimension #186394

    Hey apweb!

    You can select the logo size after uploading the logo image and before you click the “Use this image as logo”. Add this on your custom.css or Quick CSS to move the logo horizontally:

    .logo.bg-logo {
    left: 30%;
    }

    Can you please post a screenshot of what you’re trying to do?

    Cheers!
    Ismael

    in reply to: Fill blank space of the Header #186393

    Hey fjrichart!

    You can edit header.php, find this code:

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

    Below, you can place a banner, image or anything you want:

    echo "<div class='header-right'>CONTENT HERE</div>";

    Regards,
    Ismael

    in reply to: Center Blog titles, Shift Blog Post data to bottom #186392

    Hey seelyjen!

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

    #top .fullsize .template-blog .post .entry-content > * {
    text-align: left;
    }

    You can use this to modify the meta info:

    .post-meta-infos {
    font-size: 10px;
    }

    Regards,
    Ismael

    in reply to: Google Plus Button #186391

    Hi Crippy!

    Where are you trying to insert the code? Can you please post the code here? You can insert it on a Text Block then switch to Text or HTML editor. If it doesn’t contain any php codes, it should work. Please use this plugin: http://wordpress.org/plugins/insert-javascript-css/

    Regards,
    Ismael

    in reply to: Gravity Form's – Add Form Button #186390

    Hi Olimess!

    I’m not sure if this is possible. I’ll ask Dude.

    Cheers!
    Ismael

    in reply to: Gallery with Avia Layout Builder #186386

    Hi!

    You have a real lot of plugins installed. I don’t want to mess with the plugins settings. Please deactivate all of them then test the Fullwidth Masonry Gallery again on another browser. Let us know if you have deactivate all of the plugin so that we can check it again.

    Best regards,
    Ismael

    in reply to: How to center feature image on blog posts #186384

    Hi!

    Oh! My bad. Add this on your custom.css or Quick CSS:

    .avia-content-slider1 .slide-image img {
    left: 30%;
    }

    Cheers!
    Ismael

    in reply to: Fatal Error after bbpress plugin upgrade #186383

    Hi dvmoore!

    Please increase the wordpress php memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Cheers!
    Ismael

    in reply to: Enfold- Social media icons and widget icons missing #186378

    Hi!

    I visited the page for the first time using Chrome and Firefox 24.0. The social icons show properly on the first load.

    Regards,
    Ismael

    in reply to: Logo Squished in IE10 #186376

    Hi!

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

    .logo, .logo a {
    min-width: 205px;
    width: 205px;
    }

    Best regards,
    Ismael

    Hi!

    Please use the Non-Fixed Header then add this on your custom.css or Quick CSS to make it fixed.

    #header {
    position: fixed;
    }

    You can move the nav down using this:

    .main_menu {
    top: 20px;
    }

    Regards,
    Ismael

    in reply to: Layer sliders on services page #186370

    Hi Magnus_Norrman!

    Unfortunately, you need to create it from scratch.

    Regards,
    Ismael

    Hi asteratos!

    You can try the Contact Form 7 plugin. You can actually delete or override the contact form styling on css > base.css > #Forms. Delete those line of codes or modify it.

    Regards,
    Ismael

    in reply to: Wrong Contact form #186368

    Hey!

    Those are two different contact forms. Use the Advance Layout Builder, insert 2 1/2 Columns then add the Contact Form element on both columns.

    Cheers!
    Ismael

    Hey leendevos!

    I visited this page and it loads fine: http://leendevos.com/fotograaf/fotografie-projecten/mono-aware-2/#.Un2fDo1HJmw

    I think the problem is your hosting on GoDaddy, is that correct? This is a server side issue and you should ask them to fix it.

    Regards,
    Ismael

    in reply to: Auto updating issue #186366

    Hi artspbseo!

    Please wait for another 12 hours. See if the update comes through.

    Regards,
    Ismael

    in reply to: How to change the font of main menu #186365

    Hey juannjo1!

    What type of header do you have? You can use this:

    .main_menu ul:first-child > li > a {
    padding: 0 12px;
    font-size: 15px;
    }

    Regards,
    Ismael

    in reply to: Portfolio items shows wrong category in breadcrumbs #186099

    Hi!

    Glad it worked. :)

    Best regards,
    Ismael

    in reply to: Accordion links #186096

    Hey!

    Is this your website? http://www.contentsimply.com/

    I don’t see the Contact page. Can you please give us a link to the actual page with the accordion element?

    Cheers!
    Ismael

Viewing 30 posts - 62,731 through 62,760 (of 67,003 total)