Forum Replies Created

Viewing 30 posts - 61,981 through 62,010 (of 67,134 total)
  • Author
    Posts
  • in reply to: un-link pictures in ajax portfolio image lists #202465

    Hi nini_bacher!

    Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 642:

    $output .= " <a href='".$img[0]."' class='portolio-preview-list-image' title='".$description."'><img src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";

    Replace it with:

    $output .= " <a href='".$img[0]."' class='portolio-preview-list-image noLightbox' title='".$description."'><img src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";

    Remove browser cache then reload the page. You can also add this on your custom.css or Quick CSS to disable the image link entirely:

    .portolio-preview-list-image {
    pointer-events: none;
    }

    Cheers!
    Ismael

    in reply to: Website Not Working Properly in IE #202461

    Hi!

    You can disable the “Minify CSS files automatically?” option.

    Best regards,
    Ismael

    in reply to: Viewport Meta #202453

    Hey akmhou!

    Yes, you can change that on your child theme’s header.php if you want the site to enable zoom on mobile devices. If it doesn’t work you can try this:

    <meta name="viewport" content="user-scalable = yes">

    Best regards,
    Ismael

    in reply to: enfold no change language to spanish #202448

    Hi mrivas1804!

    Use the WPML plugin. You can download the language pack here, extract it on the theme’s lang folder: Spanish: http://bit.ly/enfold-es_ES

    Regards,
    Ismael

    in reply to: Enfold > masonry post > image size #202445

    Hi David!

    You can adjust the width of the featured image using this:

    .fullsize .big-preview.single-big {
    max-width: 1000px;
    }

    Best regards,
    Ismael

    in reply to: Layer slider standalone plugin appear strangely #202444

    Hi katana!

    Have you tried uploading a larger image? Maybe, double the size of the usual. Try this plugin: http://wordpress.org/plugins/wp-retina-2x/

    Best regards,
    Ismael

    in reply to: Problem with double menus and error code #202442

    Hi!

    Please give us a link to the website. Have you tried removing the browser cache? Test it on another browser. Go to Appearance > Menus and set the Theme Locations > Enfold Main Menu and Enfold Secondary Menu.

    Best regards,
    Ismael

    in reply to: Icon Box Edit #202440

    Hey Michael!

    Can you please give us a link to the website? Post the login details here as a private reply. We would like to inspect the elements.

    Cheers!
    Ismael

    Hi David!

    I’m sorry but you need to hire a freelance developer to customize the theme for you. You can hire someone from http://werkpress.com/.

    Best regards,
    Ismael

    in reply to: How to install fonts #202437

    Hey!

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

    @font-face{
    font-family: Garamond Premier Pro;
    src: url('http://www.celadonsamui.com/wp-content/themes/enfold/fonts/GaramondPremrPro.otf') format ('opentype');
    }
    
    h2 {font-family: Garamond Premier Pro;}

    Best regards,
    Ismael

    in reply to: Chaging image sizes #202435

    Hi montanayank!

    Where are these images? Do you use it on blog, portfolio etc?

    Cheers!
    Ismael

    in reply to: Shortcode from Custom Facebook Feed plugin #202427

    Hi Alexa!

    You need to add the shortcode on the Visual mode of the editor.

    Best regards,
    Ismael

    in reply to: tabs help #202425

    Hey!

    You can do this for the active tab.

    div .main_color .tabcontainer .active_tab {
    background-color: blue;
    border: 3px solid black;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: white;
    }

    Add this for the inactive tabs:

    .main_color .tabcontainer .tab {
    background-color: white;
    border: 3px solid gray;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: gray;
    }

    Change the background and color values. Adjust the left margin of the titles:

    .home .tab_titles {
    margin-left: 20%;
    }

    Cheers!
    Ismael

    in reply to: Bluehost Server – Contact Forms Not Working #202423

    Hey Zachary!

    Looks like you need to use email addresses made directly from the bluehost email panel: https://my.bluehost.com/cgi/help/153

    Best regards,
    Ismael

    in reply to: Print Friendly and PDF plugin pushes sidebar below content #202421

    Hi!

    This is what I get when I add the shortcode on a Text Block.

    Please check the page, maybe there are unclosed div tags within the editor. Deactivate all plugins except for the print friendly plugin. Check it on another browser.

    Regards,
    Ismael

    in reply to: Font in IE different than FF and Chrome #202414

    Hey!

    What is the font that you want to apply? I found this css declaration which is incorrect.

    p, em, div {
    font-family: "body-font"!important;
    }

    Replace it with this code on Quick CSS or custom.css:

    p, em, div {
    font-family: 'Open Sans', sans-serif;
    }

    Cheers!
    Ismael

    in reply to: Woocommerce Main Shop Page #202411

    Hey!

    You can use this. :)

    #top .product_column_4 .products .product {
    margin: 0 5% 1% 0;
    width: 20.25%;
    }

    Regards,
    Ismael

    in reply to: Easy Testimonials Integration #202410

    Hi!

    You can adjust the line-height.

    .testimonial_body {
    line-height: 20px;
    }

    Regards,
    Ismael

    in reply to: Text form fields in footer widgets styling issue #202409

    Hi sharonreiley!

    I don’t see the difference between the fields except for the border. Please add this on your custom.css or Quick CSS:

    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
    -webkit-appearance: none;
    border: none;
    padding: 8px 6px;
    outline: none;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777;
    margin: 0;
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 0px;
    }

    Best regards,
    Ismael

    Hey!

    1.) Use this to remove the allowed html tags note:

    .form-allowed-tags {
    display: none;
    }

    2.) Change the button color using this:

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

    3.) Use this to increase the top padding:

    .content, .sidebar {
    padding-top: 100px;
    }

    Best regards,
    Ismael

    in reply to: Animation #202401

    Hey!

    On what browser are you testing this with? I tested it on Chrome and Firefox, Windows 7 but I don’t see the website move whenever I hover over the blog post and images. Please remove browser cache or test it on another browser.

    Regards,
    Ismael

    in reply to: "iconlist animation" in shortcodes.css #202400

    Hey!

    It is available on the latest version of Enfold.

    Regards,
    Ismael

    in reply to: Small layout for blog not displaying featured images #202399

    Hey alkaithil!

    Did you set it on General Settings > Blog Style? Select the single post view layout on General Settings > Single Post Style.

    Cheers!
    Ismael

    in reply to: No success creating sortable categories / image settings #202398

    Hey!

    Please watch this video to learn more about the masonry element: http://vimeo.com/channels/aviathemes/77433498

    The demo uses images larger than 1030×360 for the blog overview page. You can find the thumbnail sizes on functions.php, look for these codes:

    $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

    Best regards,
    Ismael

    in reply to: Blog shortcode with no sidebar #202396

    Hey!

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

    #top .fullsize .template-blog .blog-meta {
    float: left;
    }

    Cheers!
    Ismael

    in reply to: Glitch after update #202395

    Hey!

    Please try this one:

    .avia-table.avia-data-table {
    table-layout: fixed;
    width: 100%;
    }

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: Increase size and margin-top of logo #202391

    Hi Ben!

    You can use this to increase the size of the logo:

    .logo, .logo img {
    width: 400px;
    }

    Adjust the left position using this:

    div .logo {
    left: 36%;
    }

    Regards,
    Ismael

    in reply to: Blog Posts element corrupts layout #202385

    Hi!

    Insert the images and text elements inside the 2/3 slider below the Easy Slider.

    Best regards,
    Ismael

    in reply to: Layout builder and WYSIWYG editor is mostly blank #202381

    Hi hvglobal!

    Please check Screen Options, see if the Avia Layout Builder is ticked. Increase wordpress php memory limit. Please refer to this link: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,
    Ismael

    in reply to: Woocommerce Main Shop Page #202380

    Hi lizybloom!

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

    
    div .products .product {
    margin: 0 5% 1% 0;
    margin-left: 0;
    }

    Adjust the width and the right margin. The right margin is the second value on the margin property.

    Best regards,
    Ismael

Viewing 30 posts - 61,981 through 62,010 (of 67,134 total)