Forum Replies Created

Viewing 30 posts - 72,391 through 72,420 (of 82,620 total)
  • Author
    Posts
  • in reply to: Avia not working in 4.0 alpha version #262377

    Hi patrickschua!

    You can try deactivating all active plugins and flushing browser cache few times to check if that helps. If it does not, unfortunately there is not much we can do since we only support stable releases

    Regards,
    Yigit

    in reply to: Background Colour Flash When Selecting Navigation #262375

    Hey!

    Please try deactivating all active plugins and check if that helps. Deactivating all unnecessary plugins would help increasing page speed

    Regards,
    Yigit

    in reply to: hide specific page on mobile phone #262369

    Hi baiker!

    You can add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    #menu-item-59 { display: none !important; }}

    You can right click on Chrome or Firefox to inspect elements to find menu item ID http://i.imgur.com/HyPTCRg.jpg

    Best regards,
    Yigit

    in reply to: Spacing between two sidebar image widgets #262363

    Hey Ben!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    div#widget_sp_image-3 {
    margin-top: -5px;
    }

    Regards,
    Yigit

    in reply to: Header title and breadcrumbs #262358

    Hi Signum!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .title_container .main-title { display: none; }

    Then go to Enfold/framework/php folder and open class-breadcrumb.php and search/change “You are here” then find following line

    $separator = '<span class="sep">' . $separator . '</span>';

    and change it to

    $separator = '<span class="sep"> - </span>';

    Cheers!
    Yigit

    in reply to: Problems after migrating to live server #262350

    Hi!

    Nera uz ka Renata! Prasom klausti jei turite daugiau klausimai :)

    Regards,
    Yigit

    in reply to: Transparent Header not working #262348

    Hey!

    Do you mind creating a temporary admin login and posting it here privately so we can take a look Simon?

    Cheers!
    Yigit

    in reply to: Icon overlaying the Grid Blog #262347

    Hey mwolfert!

    I cannot see an orange icon – http://i.imgur.com/LafWGxM.png
    Have you already fixed the issue? If not, please post a screenshot and show the issue

    Regards,
    Yigit

    in reply to: sidebar size #262345

    Hi thanp73!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    @media only screen and (min-width: 1340px) {
    .responsive_large .container .nine.units {
    width: 830px;
    }}
    @media only screen and (min-width: 1140px) {
    .responsive .container .nine.units {
    width: 720px;
    }}
    .container .nine.units {
    width: 630px;
    }

    Cheers!
    Yigit

    in reply to: Background Colour Flash When Selecting Navigation #262343

    Hey Gary!

    I tried to reproduce the issue on Safari Version 7.0.3 but i could not. Please see screencast here – http://youtu.be/Ixpzw-lXQQo

    Cheers!
    Yigit

    in reply to: Problem with theme colors #262342

    Hey pedrosierra!

    Please update Enfold to the latest version 2.7.1 – http://kriesi.at/documentation/enfold/updating-your-theme-files/
    If you are using any caching plugins, try deactivating them and flush browser cache after making styling changes

    Best regards,
    Yigit

    in reply to: Accordian within Portfolio #262340

    Hey!

    You can do so in Advanced Styling tab in Enfold theme options – http://i.imgur.com/JI8RCyZ.png :)

    Cheers!
    Yigit

    in reply to: Menu Position #262337

    Hi jdrakeproductions!

    Seems like you already figured it out – http://i.imgur.com/ylb1J50.jpg ? :)
    Your website looks great by the way

    Best regards,
    Yigit

    in reply to: Portfolio Arrows issue #262335

    Hi shantidevii!

    Please go to Appearance > Editor and open functions-enfold.php file and find

    $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category']);
    	            $entries['next'] = get_next_post($settings['same_category']);

    and change it to

    $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['next'] = get_previous_post($settings['same_category']);
    	            $entries['prev'] = get_next_post($settings['same_category']);

    Best regards,
    Yigit

    in reply to: table issue with tab #262334

    Hey tobylove!

    I just checked your website on my iphone and it does look fine on my end – http://i.imgur.com/DjIKpi6.png
    Can you post a screenshot and show the issue you are seeing?

    Regards,
    Yigit

    in reply to: Transparent header issues (Enfold) #262332

    Hi!

    Please tell your designer to edit the your logo and make its background transparent. Currently it is white and that is what you are seeing when header is set to display transparent :)
    then go to Enfold theme options > Header Layout > Mobile Menu > Header Mobile Menu activation and choose 990px

    Cheers!
    Yigit

    in reply to: Menu not fitting on phone #262330

    Hey ctcphx!

    Please try adding following code to Quick CSS

    #megaMenu.megaResponsive ul.megaMenu li.menu-item.ss-nav-menu-mega ul.sub-menu.sub-menu-1 { overflow: visible; }

    Best regards,
    Yigit

    in reply to: Masonry Background Color #262329

    Hey josvissers1!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .main_color .av-masonry {
    background-color: red;
    }

    Regards,
    Yigit

    in reply to: Problems after migrating to live server #262328

    Hi!

    Please update the theme manually via FTP – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Yigit

    in reply to: Table cell size control #261961

    Hey!

    Yes, seems like i misunderstood :) Please add following code to Quick CSS instead

    .avia-data-table .avia-desc-col { width: 50%; }

    Regards,
    Yigit

    in reply to: Remove table styling #261950

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    td { background-repeat: repeat-x; background-size: contain; }
    .main_color table, .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra { background: transparent; }

    Cheers!
    Yigit

    in reply to: Move Breadcrumbs to left side #261945

    Hey!

    Please add following code to Quick CSS as well

    .avia-fullwidth-slider { border-top-style: none; }
    @media only screen and (max-width: 480px) {
    .title_container { 
    display: none; }}

    Regards,
    Yigit

    in reply to: social icons and portfolio item "arrow" icon #261940

    Hey!

    I have just checked your website on OS X 10.9.2 on Firefox 29 and it does look fine on my end – http://i.imgur.com/TRPWZSc.png
    Please flush browser cache and refresh your page a few times

    Best regards,
    Yigit

    in reply to: Menu Covers Logo On Mobile #261935

    Hey!

    I have asked @josue to take a look at your website on his mobile device. Problem seems to be fixed on my end, if it works fine on his end also, there is not much we can do as long as we cannot reproduce the issue.
    Let us wait for his answer

    Cheers!
    Yigit

    in reply to: Table cell size control #261931

    Hi ItaiAzer!

    Please add following code to Quick CSS and adjust as needed

    td { min-height: 80px; }

    If that does not work, please post the link to your website

    Regards,
    Yigit

    in reply to: Mega Menu Column Title #261929

    Hey!

    Can you try uploading a taller image and check how it looks?

    Regards,
    Yigit

    Hi!

    You can add your Facebook as a new link in Appearance > Menus and then add following code to Quick CSS not to display it in menu when website displayed on a desktop

    @media only screen and (min-width: 990px) {
    li#menu-item-59 {
    display: none !important; }}

    You can right click on Chrome or Firefox to inspect elements to find menu item ID http://i.imgur.com/HyPTCRg.jpg

    Cheers!
    Yigit

    in reply to: Next / previous blog post bug #261898

    Hey web4proPL!

    You can remove post nav by adding following code to Quick CSS in Enfold theme options under General Styling tab

    #top .avia-post-nav { display: none; }

    and you can use following code when you are using boxed layout

    .avia-post-prev { left: 4%; }
    .avia-post-next { right: 4%; }

    I could not reproduce scrolling issue on my end on Chrome version 34.0.1847.131 on Mac OS X 10.9.2. Which OS and Chrome version are you using?
    It does look fine on my end on Firefox 29 – http://i.imgur.com/fhsWzsH.jpg
    Can you post the link to your website so we can look into it?

    Regards,
    Yigit

    in reply to: text block visual not showing text #261892

    Hi!

    You are welcome! It certainly is, glad you like it :)

    Best regards,
    Yigit

    in reply to: Remove table styling #261890

    Hey Sconcepts!

    Please go to Enfold/Css folder and open Base.css file and edit table, tbody, td and tr values

    Best regards,
    Yigit

Viewing 30 posts - 72,391 through 72,420 (of 82,620 total)