Forum Replies Created

Viewing 30 posts - 60,151 through 60,180 (of 67,463 total)
  • Author
    Posts
  • in reply to: 404 Error Page #237431

    Hey mattmorse!

    You can edit includes > error404.php file if you want to change the layout of the 404 page. Create a folder called includes then add the error404.php file.

    Regards,
    Ismael

    in reply to: Shadow to layout elements #237430

    Hi!

    On what exact elements are you trying to add the shadow effect? I visited the page and I can only see a very large slider and 4 columns below. I’m not sure where you want to apply the shadow.

    Cheers!
    Ismael

    in reply to: How to fix space issue (after last update) #237429

    Hey mikemurphy10!

    Did you try to reconfigure the header settings on Enfold > Header? Please add this on Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive #top #header_meta .social_bookmarks li:last-child a {
    border-right: none;
    }
    
    #top #header .social_bookmarks li:last-child {
    border-right: 1px solid;
    }
    }

    Regards,
    Ismael

    in reply to: Header Logo & Main Menu #237427

    Hi Enabl!

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

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo {
    display: block;
    margin: 0 auto;
    float: none !important;
    position: relative;
    }
    }

    I suggest that you keep the css to hide the menu, it is much more convenient. Add visibility: hidden;.

    Best regards,
    Ismael

    in reply to: Different Fonts on Backend-Frontend #237424

    Hi!

    There is a minor issue on Enfold 2.6, google fonts are not loaded. Dude created a fix and patched it on 2.6.1. :)

    Regards,
    Ismael

    in reply to: Update Problem with header #237422

    Hey!

    Thank you for using the theme. I hope you’re doing well today.

    You should probably remove all the css modifications that you added for the header. Reconfigure the header settings on Enfold > Header. You’ll see that Kriesi added a lot of header options like header height, logo position etc. Saving the settings might fix the issue.

    Cheers!
    Ismael

    in reply to: Disabling Autoplay on Fullscreen Slider #237420

    Hi!

    The link gives me a 404 page. The solution I provided on the other thread only works on firefox. Let me ask Dude for more info. Please wait for his response.

    Cheers!
    Ismael

    in reply to: Buttons for Navigation/Header #237415

    Hey carlamurray!

    Thank you for using the theme. I hope you’re doing well today.

    Unfortunately, there is still no option for adding gradient button for the menu. You need to modify it via css. There are lots of tutorials for css gradients. Refer to this link: http://css-tricks.com/css3-gradients/

    Please post a screenshot of what you’re trying to do. For further modifications, please visit Werkpress.

    Cheers!
    Ismael

    in reply to: Adding tagline to Enfold 2.6 #237414

    Hey!

    You can find it on line 101. This code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    Best regards,
    Ismael

    in reply to: PHP configuration limits #237413

    Hi AlutermGroup!

    128M for the memory limit is quite sufficient to run the theme on the back and the frontend. We always suggest to increase the wordpress php memory limit to at least 128M.

    Best regards,
    Ismael

    in reply to: Changing color of bold/strong elements #237412

    Hi!

    Can you please post the link to the page with the bold text? Please try Yigit’s advice, see if it works.

    Best regards,
    Ismael

    in reply to: Error with update #237411

    Hey!

    Can you please post the link to the website? Do you have a cache plugin? Please disable that first.

    Cheers!
    Ismael

    in reply to: iPad menu display issue #237410

    Hey!

    How are you? I hope you feel great today.

    Enfold 2.6 offers a new way of constructing the header. Please remove all css modifications that you added for the header then reconfigure the header settings on Enfold > Header. You’ll see a lot of options like header height, logo position etc.

    Regards,
    Ismael

    in reply to: Enfold Showcase #237409

    Hey!


    @ignaziolaci
    : Superb! Good job. :)

    Cheers!
    Ismael

    in reply to: Portfolio Grid Image Sizes #237408

    Hi!

    Please edit the thumbnail size on functions.php, find this code:

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    

    Increase the width and height, if necessary set the crop to false. Something like this:

    $avia_config['imgSize']['square'] 		 	    = array('width'=>312, 'height'=>302, 'crop' => false);		                 // small image for blogs
    

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

    Best regards,
    Ismael

    in reply to: Logo padding in 2.6.1 #237407

    Hi!

    You can use this:

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

    Cheers!
    Ismael

    in reply to: Different header layout for each pages #237406

    Hey elmanisero!

    Thank you for using the theme and for the Enfold translation! I hope you’re doing well today.

    Kriesi custom coded the header for the demo. Unfortunately, that is not possible without major modification and is beyond the scope of support. Please hire a freelance developer to modify the headers for each page.

    Best regards,
    Ismael

    in reply to: Latin extended for Opensans #237405

    Hi!

    Can you please post the link to the actual page with the polish characters? Maybe try to set the font-weight to normal.

    Best regards,
    Ismael

    in reply to: A big problem with a widget of Enfold Theme #237385

    Hey!

    Thank you for using the theme. I hope you’re doing great.

    You have a very old version of the theme. Please download the latest version of Enfold 2.6.1. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    After the update, please recreate the portfolio page then reconfigure the options.

    Cheers!
    Ismael

    in reply to: image library #237376

    Hi Edna!

    A single image is broken down or cropped into smaller thumbnails. The theme resizes the image and create smaller version of the thumbnails. You can find those thumbnail or image sizes on functions.php:

    $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']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// 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
    }

    It is quite normal for a wp installation to have different sizes for a single image.

    Best regards,
    Ismael

    in reply to: Problems after activating childtheme #237374

    Hi netztaucher!

    Please go to Enfold > Import/Export > click Import Parent Theme Settings or reconfigure the header options again if necessary.

    Cheers!
    Ismael

    in reply to: Best practices for theme changes #237370

    Hey modelity!

    Cloning files on the child theme directory is a common practice if you want to preserve the modifications. Unfortunately, the theme doesn’t have filters for all the options that you want to change so you might need to copy the whole function or create the same file on the child theme directory.

    Cheers!
    Ismael

    in reply to: Lightbox direct link to picture #237368

    Hey priitr!

    The theme doesn’t have control over that options. That will depend on the kind of browser you’re using.

    Cheers!
    Ismael

    in reply to: Allignment of content in right sidebar. #237367

    Hi!

    You can adjust the left margin of the sidebar using this on Quick CSS or custom.css:

    .inner_sidebar {
    margin-left: 10px;
    }

    Regards,
    Ismael

    in reply to: Please contribute and translate Enfold #237365

    Hi!

    Wow! Thanks Giuseppe! :)

    Best regards,
    Ismael

    Hi COLORIT!

    Please try this one:

    .header_color .main_menu ul:first-child > li.current-menu-ancestor > a {
    color: #A882BD !important;
    }

    Cheers!
    Ismael

    in reply to: Enfold – Styling Options #237361

    Hey!

    1.) Please use this on Quick CSS or custom.css:

    h3 {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 8px;
    }

    2.) Use this for the tab title:

    .js_active .tab {
    font-size: 15px;
    }

    3.) Like the Devin and Dude said, it is not possible to have an advance filtering for the portfolio entries without major modification. You can hire a freelance developer to modify the category sort function.

    4.) Please use this:

    .inner_sort_button span {
    padding: 0 10px;
    }

    Cheers!
    Ismael

    in reply to: How to set a parallax backgroun to 100% width #237359

    Hey Rusty!

    Have you tried using the top center option for the background position? Please try this on Quick CSS or custom.css:

    .avia_mobile .avia-full-stretch {
    background-attachment: scroll !important;
    background-size: 100% 130% !important;
    background-position: center top !important;
    }

    Cheers!
    Ismael

    in reply to: Fullscreen slider button link to page removed? #237356

    Hey DavyE!

    The option is still there. Please reconfigure the fullscreen slider images then look for “Apply a link or buttons to the slide?” > select “Attach one button”. You can also add two buttons if you want. If you want to open the link on a new window, look for “Button 1 Link Target?”, same goes with the second button.

    Cheers!
    Ismael

    in reply to: Problem with ICON box which is too deep in any browsers #237355

    Hey!

    Please add this on Quick CSS or custom.css:

    .avia-section.av-minimum-height .container .content {
    vertical-align: top;
    }

    Regards,
    Ismael

Viewing 30 posts - 60,151 through 60,180 (of 67,463 total)