Forum Replies Created

Viewing 30 posts - 2,221 through 2,250 (of 82,588 total)
  • Author
    Posts
  • in reply to: Broken styling since 5.0 update #1360808

    Hi,

    I added the code Team VDLP shared on this post – https://kriesi.at/support/topic/styling-custom-post-types-broken-since-enfold-5-0/#post-1360792 to the bottom of functions.php file of your child theme and that helped.

    Please review your website :)

    Best regards,
    Yigit

    in reply to: Theme Problem #1360807

    Hi,

    Thanks for contacting us!

    Could you please post FTP logins here privately as well?

    Cheers!
    Yigit

    in reply to: Input text fields wrong color on mobile #1360779

    Hi,

    I have checked your website on my iphone however it looks correct on my end as well. I attached a screenshot in private content field below :)

    Regards,
    Yigit

    Hi,

    You are welcome!

    Let us know if you have any other questions and enjoy your weekend :)

    Best regards,
    Yigit

    in reply to: Unable to Access Account and Update Theme #1360732

    Hey Gabriela,

    Thanks for contacting us!

    I am afraid the only way to access updated theme files for you is to have an access to ThemeForest account that was used when purchasing the theme.

    Envato has replaced their API keys with Personal Tokens and we have implemented those changes in Enfold 4.5. Any older version than that requires a manual update first (you can download the theme files by logging into your ThemeForest account and going to Downloads page) and then you can insert your Personal Token for auto updates – https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token.

    Please try contacting Envato support. They might be able to help you recover your ThemeForest account but they would probably ask for a proof of purchase :)

    Best regards,
    Yigit

    in reply to: Remove link from featured image #1360689

    Hi Eva,

    Please refer to @guenni007’s post above :)


    @guenni007
    Thanks as always :)

    Cheers!
    Yigit

    in reply to: Styling custom post types broken since Enfold 5.0 #1360688

    Hey Team VDLP,

    Glad you guys figured it out!

    Would you mind sharing your solution for future readers? :)

    Best regards,
    Yigit

    Hi A,

    It seems like you have saved theme options and it overwrote the changes I made. I made them once again so please refresh your Theme Options page before saving it :)

    Best regards,
    Yigit

    in reply to: change layout search results #1360681

    Hi,

    We are happy that @Guenni007 could help you out!
    Let us know if you have any other questions and enjoy the rest of your day :)


    @Guenni007
    Thanks for your help :)

    Best regards,
    Yigit

    in reply to: Change H3 in footer to regular text #1360679

    Hi,

    We are happy that @guenni007 could help you out!
    Let us know if you have any other questions and enjoy the rest of your day :)

    @guenni thanks for your help as always :)

    Best regards,
    Yigit

    in reply to: select the portfolio Grid by potfolio tag? #1360653

    Hi,

    Please add following to bottom of Functions.php file of your child theme to enable post type option :)
    add_theme_support( "add_avia_builder_post_type_option" );

    Regards,
    Yigit

    • This reply was modified 2 years, 11 months ago by Yigit.
    in reply to: I need a little Help #1360644

    Hey,

    You are welcome!

    If you have any other questions or issues, please register to our support forum – https://kriesi.at/support/register/ using your purchase code and start new threads under Enfold sub forum :)

    Best regards,
    Yigit

    in reply to: Hosting #1360641

    Hey,

    Please see private content field below :)

    Regards,
    Yigit

    in reply to: change layout search results #1360637

    Hey Antonio,

    Could you please post a screenshot and show the changes you would like to make so we can make sure that we are on the same page? You can upload your screenshots on imgur.com and post the links here :)

    Regards,
    Yigit

    Hey A.,

    // was used to comments instead of /* */. So I replaced all instances of // with /* */ :)

    Could you please post a screenshot and show the changes you would like to make so we can make sure that we are on the page? After I made the changes there was only a white border around highlighted menu item and that sounds like what you wanted so I am a little confused :)

    Regards,
    Yigit

    in reply to: Bigger socket in little content pages #1360632

    Hi,

    You are welcome, Antonio. Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

    in reply to: Safari: LayerSlider video – fullscreen issue #1360631

    Hi Bianca,

    Thanks for your patience!

    I have added following code to bottom of Quick CSS field and that helped

    .avia-safari .ls-wrapper.ls-z {
    transform: translateZ(0px) !important;
    }

    Please review your website :)

    Best regards,
    Yigit

    in reply to: Bigger socket in little content pages #1360626

    Hi Antonio,

    Could you please try adding following code to bottom of Quick CSS field in Enfold theme options > General Styling tab?

    html {
      background-color: white;
    }

    Best regards,
    Yigit

    Hi A,

    There were many errors in your custom CSS related to the way you add comments in CSS. I have corrected them. Following is the correct way of adding comments in CSS

    
    /* Comment goes here */
    

    And you had following custom CSS in Quick CSS field which was overriding default styling

    #top .av-menu-button > a .avia-menu-text {
      font-size: 16px !important;
      font-family: 'Lato' !important;
      background: #9cae30 !important;
      border-collapse: separate !important;
      border-width: 0px !important;
      border-color: white !important;
      border-radius: 5px !important;
      color: white !important;
      opacity: 1 !important;
      padding: 10px !important;
      box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.5) !important;
      -webkit-transition: 0.3s !important;
      -moz-transition: 0.3s !important;
      -ms-transition: 0.3s !important;
      -o-transition: 0.3s !important;
      transition: 0.3s !important;
    }

    I changed it to following

    	#top .av-menu-button > a .avia-menu-text {
    			font-size: 16px!important;
    			font-family: 'Lato'!important;
    			/* background: #9cae30!important; CAMBIO ANDREA  */
    			border-collapse: separate!important;
    			border-width: 0px!important; /* CAMBIO ANDREA 30/6/2022, prima c'era 1px */
    			border-color: white!important;
    			border-radius: 5px!important;
    			color: white!important;
    			opacity:1!important;
    			padding:10px!important;
    			/* box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.5)!important; */
    			-webkit-transition:	0.3s!important;
    			-moz-transition:	0.3s!important;
    			-ms-transition:		0.3s!important;
    			-o-transition:		0.3s!important;
    			transition:			0.3s!important;
                             border: solid !important;
    	}

    You can now change border color in Enfold theme options > Advanced Styling > Menu Item Button with Border :)

    Best regards,
    Yigit

    in reply to: Bigger socket in little content pages #1360620

    Hey Antonio,

    Please go to Enfold theme options > Footer > Footer Behaviour and enable curtain effect :)

    Best regards,
    Yigit

    in reply to: CSS to change search font in header #1360617

    Hi,

    You are welcome, Antonio :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

    in reply to: Add Title to template-blank.php #1360615

    Hi,

    You are welcome, Michael!

    Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

    in reply to: CSS to change search font in header #1360531

    Hey Antonio,

    Thanks for contacting us!

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab and adjust it as needed :)

    
    .header_color ::placeholder {
      color: red;
    }
    

    Best regards,
    Yigit

    Hey Myrna,

    Thanks for contacting us!

    You can login on ThemeForest using the account you purchased Enfold with and go to Downloads page to download the latest version of the theme.

    To receive auto updates in WordPress dashboard, please refer to this post – https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token and insert your Personal Token in Enfold theme options :)

    Best regards,
    Yigit

    in reply to: Add Title to template-blank.php #1360507

    Hey Michael,

    Thanks for contacting us!

    You can edit your page and enable title and breadcrumbs in Title bar under Layout section.

    If you would like to add title to all pages using blank template, please try adding following code to bottom of Functions.php file of your child theme

    add_action('ava_after_main_title','new_ava_after_main_title');
    function new_ava_after_main_title(){
    global $avia_config;
    if ( $avia_config['template'] == "avia-blank" ) {
    	$page_title = "<h1 class='page-title'>". get_the_title() ."</h1>";
    	echo $page_title;
    	}
    }

    Best regards,
    Yigit

    in reply to: Menu Item Border on Click #1360506

    Hey,

    Thanks for contacting us!

    Please go to Enfold theme options > Header > Header Layout > Header Style and choose “Minimal” option :)

    Best regards,
    Yigit

    in reply to: Remove line under transparent header #1360499

    Hi,

    You are welcome! Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

    Hey Bernhard,

    I have got the same permission error Rikard has got and when I try to load your website I am getting “The page isn’t redirecting properly” error.

    We would recommend you to increase memory limit to 256M and PHP version to 8.0.x

    Regards,
    Yigit

    in reply to: Remove line under transparent header #1360495

    Hey,

    Thanks for contacting us!

    Please edit your page and in Layout section > Header visibility and transparency, choose “Transparent Header” option. It seems like you are currently using Transparent Header with Border option :)

    Best regards,
    Yigit

    in reply to: Stretched Width site settings #1360484

    Hi Tia,

    We are happy that Nikko could help you out!

    Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

Viewing 30 posts - 2,221 through 2,250 (of 82,588 total)