Forum Replies Created

Viewing 30 posts - 1 through 30 (of 75 total)
  • Author
    Posts
  • in reply to: Using Audio Player with Fullscreen Slider #1136718

    Hi again,

    I kind of solved my problem so you can close the ticket.

    in reply to: Media Queries for fullscreen slider images #1122501

    Hello Victoria,

    Thank you for your answer. But I am not sure if I understand you correctly,

    What I am trying to learn is, is it possible to change the images I add to color section backgrounds by css styles?
    It does not have to be fullscreen slider. At the moment we can add classes to color section and use css for custom styles.. Is it possible to use css and change the images we add to color section as a background? And if it is possible, can you give me an example of one css stile for example for mobile phone portrait mode..

    Thanks

    in reply to: Child Theme Style.css does not effect main theme styles #1121273

    Hello Mike,

    I did what you told me and cleaned my style.css file. Now things are working smoothly.
    Last, can you please tell me if Enfold-child theme’s style.css file over writes base.css, layout.css and grid.css ?

    I want to add some media queries for different screen widths for tablets and mobiles (both portrait and landscape orientations).

    Thanks,
    Enis

    in reply to: Code Block removes a tag #1121240

    Hello Mike

    Thank you for this. I think this was related with my other problem in CSS file..
    Now it works fine. You can close this ticket.

    Thank you.
    Enis

    Hello Mike,

    Thanks for the answers.
    I will do what you offer. But can you tell me what kind of errors did you find? Can you give me an example you changed so I can learn the mistake..

    Do you mean the brake occurs before the media query 768 for mobile because mobile shows css correct? Did I understand you correct? Sorry that English is not my native language that is why I needed to ask.

    But then here is the question, when I copy all the styles from STYLE.CSS and place it in QUICK CSS section, then every style works smoothly… How can we explain this?

    Thanks for your efforts..

    in reply to: Code Block removes a tag #1119482

    Hello Mike,

    I am curious if you have seen my reply? How can I solve my problem?

    Thanks
    Enis

    Hello Ismael,

    Sorry it was my mistake when typing here in the ticket I wrote the file name wrong.
    The file name is correct. It is style.css in the enfold-child folder.

    Enfold > Performance > File Compression settings – Disabled but the custom styles are still ignored
    I am very sure that it is not a caching problem. I tried Deleting cache / Hard Code Refresh / Different browser and other solutions I came across here but nothing helped.

    This has been a long time problem with Enfold.
    What other solutions can you offer me?

    This reply has been marked as private.
    in reply to: Child Theme Style.css does not effect main theme styles #1119122

    Hello Mike,

    Unfortunately it did not work.
    It only works if I place the styles to QUICK CSS.. But it never reads from my Child Theme Styles.css

    This has been a long time problem and I am surprised Enfold did not find a solution for this..
    QUICK CSS is cool but it is not practical to work when dealing with lots of styles..

    in reply to: Code Block removes a tag #1118764

    Hello Mike,

    That is the thing with my problem, I am wrapping the DIV “A Element” Then I save and when I check it on the page source I see that the ALB or code block element changes the code.

    The thing is, a few times I was able to see the code working and the DIV was inside the A Element.. So there is a problem going on with either code block element or with Enfold ALB when saving the page..

    I am attaching you the screen shots from my ALB , Shorcodes and the reflection of this code to the page after saving the page..
    As you can see some how the DIV ıs taken out of A element…

    Code seen in ALB
    Code seen in shortcodes section
    Code seen browser

    • This reply was modified 5 years, 5 months ago by indurango.
    in reply to: Code Block removes a tag #1118521
    This reply has been marked as private.
    in reply to: How to show Burger Menu only in specific pages #1092975

    Hi Rikard,

    I want to show burger menu only in homepage and show default menu in other pages.
    That s the purpose.. Do you know how I can achieve this?

    Thanks,
    Enis

    Hello Basilis,

    No change.. Still gray background when NOT scrolled..

    When scrolled things are OK.

    Currently I have the below css for mobile header :

    @media only screen and (max-width: 767px) {
    .html_header_top.html_header_sticky #header {
    position: fixed !important;
    }}
    
    @media only screen and (max-width: 767px) {
    .responsive #top #main {
    padding-top: -82 !important;
    }}
    
    @media only screen and (max-width: 767px) {
    #top #wrap_all .header_color .header_bg .av_header_transparency  {
        background: transparent;
        position: absolute!important;
    }}

    And there is still gray background behind the header area in mobile..

    thanks
    Enis

    in reply to: Advice about content elements and css effects #1020503

    Thanks.. You can close the ticket.

    in reply to: Aligning textblock elements inside color section #1018909

    Hello Mike,

    Thank you for the answer..
    You can close the ticket.

    Regards,
    Enis

    in reply to: Enfold Burger Menu Not working properly #1018908

    Hi Rikard,

    Thank you for the answer..
    You can close the ticket..

    Regards,
    Enis

    in reply to: Enfold Burger Menu Not working properly #1018626

    Hello Rikard,

    Yes I removed that and the burger menu works perfectly.
    Can you tell me what that piece of code in functions.php is about?

    I do not want to mess up things that I do not realize at the moment..

    Thanks,

    in reply to: Enfold Burger Menu Not working properly #1018479

    Hello Victoria,

    I found out that the problem causing the burger menu not to close is the functions.php in my child theme folder.
    When I remove it burger menu works fine.

    But to be honest I do not know what is the customization in the fucntions.php.
    I am guessing that it was something you helped me with WPML translations.. (maybe)

    Is it possible to look at the code and tell me what this customization does?

    function add_my_script() {
      wp_enqueue_script( 'my-custom-script', get_stylesheet_directory_uri() . '/js/avia.js', array('jquery'), '1.0.1', true );
    }
    add_action( 'wp_enqueue_scripts', 'add_my_script', 10);
    
    function icl_post_languages(){
      $languages = icl_get_languages('skip_missing=1');
      if(1 < count($languages)){
        echo __('This post is also available in: ');
        foreach($languages as $l){
          if(!$l['active']) $langs[] = '<a href="'.$l['url'].'">'.$l['translated_name'].'</a>';
        }
        echo join(', ', $langs);
      }
    }
    
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }
    
    add_theme_support('avia_template_builder_custom_css');

    Kind regards,
    Enis

    in reply to: Enfold Burger Menu Not working properly #1010182

    Hello Victoria,

    I have customization in avia.js so I will keep it.
    But about the burger menu, what is the solution you are suggesting?

    Regards,
    Enis

    in reply to: Enfold Burger Menu Not working properly #1009599

    Hi Victoria,

    Yes the avia.js updated with the lates Enfold version last week.

    header.php was added after Basilis suggested to update it from the main enfold theme to child theme.
    Now, I deleted header.php but nothing changed.

    Below problems still continue :

    1- Burger menu X Close button do not appear. So I can not close the menu.
    2- I tried to add the text ‘Menu’ to burger menu but it does not work.
    3- When I change the burger menu icon color from Enfold Theme Options, the color only changes when I scroll down the page and when sticky header becoems active.. Otherwise it does not reflect the customized icon color.
    4- Is it possible to place full screen slider inside a color section? Or any solution to make color section bg images to slide?

    in reply to: Enfold Burger Menu Not working properly #1008990

    Hi Basilis,

    Sorry for my reaction.
    I updated my headerphp file with the one from the main Enfold theme folder. But it did not work.. I had written that I updated the header.php but after editing my message I think I deleted that without realizing. Sorry for that.

    But I did not understand your last message. What are you working on updating?
    Should I have to wait or do I have to do anything else?

    Thanks for your patience.
    E.

    in reply to: Can not change color Section BG image opacity witj Section ID #1008986

    Hi Ismail,

    That worked perfectly
    Thank you so much.

    You can close the ticket.. Have a nice day.
    E.

    in reply to: Enfold Burger Menu Not working properly #1008104

    Hello Basilis,

    I think you did not read my messages carefully.
    In my reply, i wrote that i already did that but nothing changed.

    This is the 3rd day and i still do not have any solution.

    in reply to: Enfold Burger Menu Not working properly #1007840

    Hello,

    My problems still continue :

    1- Burger menu X Close button do not appear. So I can not close the menu. As you suggested, I updated the header.php inside child theme with the header.php from main theme folder but burger menu still not working.

    2- I tried to add the text ‘Menu’ to burger menu but it does not work.
    ( I tried this solution )

    3- When I change the burger menu icon color from Enfold Theme Options, the color only changes when I scroll down the page and when sticky header becoems active.. Otherwise it does not reflect the customized icon color.

    4- Is it possible to place full screen slider inside a color section? Or any solution to make color section bg images to slide?

    Thank you.

    in reply to: Enfold Burger Menu Not working properly #1007690

    Hello Basilis,

    Do you mean update the header.php with the original header.php in Enfold main theme folder?

    in reply to: Changing Sticky Header transparency #1007617

    That work…
    Thank you so much Mike..
    You are a savior….

    in reply to: Can not change color Section BG image opacity witj Section ID #1007567

    Hello Vinay,

    Thanks for the response. But I do not know how to implement that code.
    My Section id is ”home-section-bg-img”

    Can you help me how the css code should be?

    in reply to: Enfold Burger Menu Not working properly #1007489

    Hello anyone?

    • This reply was modified 6 years, 3 months ago by indurango.
    in reply to: What is the optimum full screen bg image sizes? #1007434
    This reply has been marked as private.
    in reply to: Internal Server Error in staging website. #1007330
    This reply has been marked as private.
Viewing 30 posts - 1 through 30 (of 75 total)