Forum Replies Created

Viewing 30 posts - 841 through 870 (of 1,341 total)
  • Author
    Posts
  • in reply to: Landing Page Transitions #489038

    Hi!

    You’re welcome, glad we could help :)

    Please let us know if you ever need help in the future.

    Best regards,
    Dake

    in reply to: Trigger Point for Column Order #489036

    Hey!

    You’re welcome, glad I could help :)

    Please let us know if you ever need help in the future.

    Cheers!
    Dake

    in reply to: Breadcrumbs not appearing on old pages – only on new #489008

    Hey!

    Before implementing either of those solutions, may we have temporary access to your website so we check if there is a simpler solution?

    Please be sure to link to the pages that are not displaying breadcrumbs.

    Regards,
    Dake

    in reply to: Placeholder disappear on focus #489003

    Hey Victor!

    It is possible, however some custom work would be needed.

    You can either enlist the aid of a freelancer to implement that feature for you or you can make a feature request here.

    Best regards,
    Dake

    in reply to: Custom BG Image for Logo Area Dimensions? #488976

    Hey!

    Glad to know we could help :)

    Please let us know if you ever need help in the future.

    Regards,
    Dake

    in reply to: Table in an Akkordeon #488975

    Hey!

    The below css will remove the bottom border for the last table row:

    tr:last-child {
        border-bottom-style: none !important;
    }

    Best regards,
    Dake

    in reply to: Trigger Point for Column Order #488964

    Hey!

    Please try editing the breaking points found in your grid.css instead.

    Each media query can be found on lines 86,98,151,340, respectively.

    Best regards,
    Dake

    in reply to: Table in an Akkordeon #488947

    Hi!

    Please add an exclamation point in front of the word important on the .toggle_content class:

    Without !

    .toggle_content {
    	padding: 0px important;
    }

    With !

    .toggle_content {
    	padding: 0px !important;
    }

    Once the exclamation point has been added the 0px padding will work.

    Cheers!
    Dake

    in reply to: Landing Page Transitions #488490

    Hey!’

    You can set the #url’s in the appearances>menus section then assign color sections to a locator wth the section id as shown below:

    http://i.imgur.com/zaXb7yg.png

    Regards,
    Dake

    in reply to: header background transparency #488482

    Hey!

    You’re welcome, glad I could help :)

    Our WIP Enfold Documentation site can be found here.

    If you ever need help in the future, please let us know.

    Cheers!
    Dake

    in reply to: Startseite im Header entfernen #488481

    Hi CarlNanz!

    You can change the the links in your navigation via the menu section (appearance>menu) as shown below:

    http://i.imgur.com/vgvarma.png
    The icon should be the same in the german wordpress installation as well.

    Ich bin mit Google Translate fr unten

    Sie können die Links in Ihrer Navigation durch die Menüabschnitt (Aussehen > Menü ) ändern , wie unten dargestellt :

    http://i.imgur.com/vgvarma.png
    Das Symbol sollte auch das gleiche in der Deutsch WordPress-Installation sein .

    Regards,
    Dake

    in reply to: Homepage initially freezes on the ipad #488479

    Hi!

    I don’t have an ipad to test the website with but I have not experienced the issue on a desktop and two android devices (nexus 4/LG G4).

    I have notified the team about testing your website on an ipad.

    In the meantime, may we have a screenshot of the issue taking place? Also do you have any other apple devices you can test to see if the issue occurs?

    Best regards,
    Dake

    in reply to: Enfold – Reducing the White space on an image container #488477

    Hey!

    That’s because the image is centered in the layout element.

    Alternatively you can use a 1/4th layout element for the image, a 3/4th layout element for the text then finally set the image left or right aligned accordingly.

    Cheers!
    Dake

    in reply to: Issues with Enfold #488475

    Hi!

    Your special heading font color is set to #ffffff (aka white) on your white background:

    Regular:
    http://i.imgur.com/45m5Psn.png

    Highlighted:
    http://i.imgur.com/DOf1Obj.png

    Best regards,
    Dake

    in reply to: Custom BG Image for Logo Area Dimensions? #488474

    Hi!

    It would really help to have temporary access to your website so we can see if there are any conflicting settings in your theme options.

    Best regards,
    Dake

    in reply to: Modify order appear element in ajax portfolio #488473

    Hi mrivas1804!

    May we have a screenshot example showing what you would like the Ajax portfolio preview to look like?

    Based on what you described so far, it would most likely require custom code. You can enlist the help of a freelancer if you would like to implement this yourself or you can make a feature request here.

    Cheers!
    Dake

    in reply to: Fullwidth image #488472

    Hi MarieAn!

    You can use plain images (preferably images that are large to begin with) and have them shown as fullwidth by using the full-width easy slider element with the slider controls set to hidden and a slideshow transition of your choice.

    Cheers!
    Dake

    in reply to: blured transparent header #488470

    Hi elbnetz!

    You could try using a css3 filter as demonstrated here with an already transparent .png background image.

    But this method isn’t compatible on some browsers.

    Cheers!
    Dake

    in reply to: Trigger Point for Column Order #488466

    Hey!

    The below media query can be found in your layout.css file (wp-content\themes\enfold\css), starting from line 3264.

    You can change the “trigger point” of 768px (preferably using a child theme) to your liking:

    /* Tablet Portrait size to standard 960 (devices and browsers) */
    	@media only screen and (min-width: 768px) and (max-width: 989px) {
    
    		.responsive .main_menu ul:first-child > li > a { padding: 0 10px; }
    		.responsive #top .header_bg { opacity: 1; filter: alpha(opacity=100); }
    		.responsive #main .container_wrap:first-child{ border-top:none; }
    		.responsive .logo{float:left;}
    		.responsive .logo img{margin:0; }
    		.responsive .av_mobile_menu_tablet .main_menu .avia-menu{display: none; }
    		.responsive.html_header_top.html_mobile_menu_tablet #header_main .social_bookmarks { right: 50px; }
    		
    		.responsive.js_active .avia_combo_widget .top_tab .tab{font-size: 10px;}
    		.responsive.js_active .avia_combo_widget .news-thumb{display:none;}
    		
    		.responsive #top #wrap_all .grid-sort-container .av_one_sixth{ width:33.3%; margin-bottom: 0;}
    		.responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header, .responsive.html_boxed.html_header_transparency #top #header{max-width: 100%;}
    		}

    Best regards,
    Dake

    in reply to: masonry blog show title and excerpt below thumbnail #488460

    Hi!

    Looks like you got things sorted on your end:

    http://i.imgur.com/mAid81g.png

    Best regards,
    Dake

    in reply to: WordPress installation very slow #488457

    Hi!

    Glad to know we could help :)

    Please let us know if you ever need help in the future.

    Regards,
    Dake

    in reply to: Table in an Akkordeon #488450

    Hi!

    Sorry about that, please update the td css and add the .toggle_content css as shown below:

    td {
        border-left-style: solid !important;
        border-right-style: none !important;
    	border-left-width: 1px; !important
    }
    
    .toggle_content {
    	padding: 0px !important;
    }

    Cheers!
    Dake

    in reply to: header background transparency #488446

    Hey!

    The method I mentioned above is the simplest method via css.

    In order to have a nontransparent header behave like a transparent header (Automatically disable breadcrumbs and titles, slightly overlap content etc) you will need custom code.

    If you would like to go that route you can enlist the aid foa freelancer or make a feature request here.

    Please note that different pages can have different header settings and the css I provided can be applied to multiple pages at once.

    The css does no disable the normal use of the non or transparent headers.

    Best regards,
    Dake

    Hi RynoSwan!

    Please add the below code to bottom of your avia.js file, found here: wp-content>themes>enfold>js>avia.js

    jQuery(document).ready(function($){
    jQuery('img').removeAttr('title');
    });

    Regards,
    Dake

    in reply to: Inverted Photos #488412

    Hey!

    Please update Enfold to the latest version and clear your cache.

    I’ve tested the about-me page on 2 android devices (Nexus 4 and LG G4) and am not experiencing the error.

    I’m looking into testing on an iphone device right now as well.

    Have you tried inserting an image element with a caption instead?

    Cheers!
    Dake

    in reply to: Logo Missing #488404

    Hey!

    You’re welcome :)

    Please let us know if you ever need help in the future.

    Cheers!
    Dake

    in reply to: change height of the portfolio items #488403

    Hey frankeee!

    So you’re saying that it only works if you include Ismael’s final code to the parent Enfold function.php and not your child theme’s function.php?

    May we have access to your website and a link to the page in question so we can take a closer look?

    Cheers!
    Dake

    in reply to: Table in an Akkordeon #488402

    Hey!

    Please add the below css to your custom css section:

    tr th:first-child {
        border-left-style: none !important;
        border-top-style: none !important;
    }
    
    td {
        border-left-style: solid !important;
        border-right-style: none !important;
    }

    Cheers!
    Dake

    in reply to: iPad Mini view isn't fully responsive #488399

    Hey chicabowl!

    Please create a new thread with your specific issue and link it here, so we can close this thread and assist you from your new thread.

    Cheers!
    Dake

    in reply to: Logo Missing #488398

    Hi!

    I commented out the below css so your logo now displays:

    /*div .logo { display: none !important; }*/
    

    Regards,
    Dake

Viewing 30 posts - 841 through 870 (of 1,341 total)