Forum Replies Created

Viewing 30 posts - 91 through 120 (of 135 total)
  • Author
    Posts
  • in reply to: Mobile website problem #276834

    Your’e welcome :-)

    in reply to: One-Page Site Navigation #276833

    True, but if she does so, the parallax effect will be lost when she navigates to search site for example …
    Because the #link jumps directly without scroll …
    I had the same problem and the plugin fixed it for me :-)

    in reply to: Change icon inside li on mobile menu #276820

    Fixed …
    created my own font for this :-)

    in reply to: Mobile website problem #276806

    Try this. Perhaps it helps …

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo {
    	display: block;
    	position: relative;
    	margin: 0 auto;
    	margin-bottom: 80px;
    	}
    
    #advanced_menu_toggle, #advanced_menu_hide {
    	display: block;
    	position: absolute;
    	right: 40%;
    	top: 120px;
    	}
    }
    • This reply was modified 10 years, 5 months ago by docperi.
    in reply to: One-Page Site Navigation #276787

    Use the search function … sometimes it helps :-)

    You have to switch your menu …
    Use this plugin to make the menu appear conditionally:
    https://wordpress.org/plugins/zen-menu-logic/

    Josue told me … had the same problem :-)
    Bye

    in reply to: Fly-out menu formatting, transparency and screen size. #276769

    I found a good solution for me :-)
    You can see it here in action

    Maybe my code can help you out. I did some custom-style to the logo and menu-position.
    Use and modify it to your gusto ;-)

    /*-------------  Mobile-Menu  & Logo --------------- */
    
    #mobile-advanced{
    	width:100%;
    	right:0;
    	position: absolute;
    	z-index: 100;
    	top:-100%;
    	padding:125px 0;
    	background-color: rgba(0,0,0,0.7); 
    	overflow: hidden;
    	border-left-style: solid;
    	border-left-width: 1px;
    	margin:0 0 0 -2px;
    	-webkit-transform: 	scale(1);
    	-moz-transform: 	scale(1);
    	-ms-transform: 		scale(1);
    	transform: 			scale(1);
    	-webkit-transition: all 0.9s ease;
    	-moz-transition: 	all 0.9s ease;
    	transition: 		all 0.9s ease;
    	-webkit-transform-origin: 0% 0%;
    	-moz-transform-origin: 0% 0%;
    	-ms-transform-origin: 0% 0%;
    	transform-origin: 0% 0%;
    	display:none;
    	}
    	
    @media only screen and (max-width: 798px) {
    #mobile-advanced{
    	padding:112px 0;
    	}
    }
    	
    	
    .avia_transform3d #mobile-advanced{
    	-webkit-transform: scale3d(1);
    	-moz-transform: 	scale3d(1);
    	transform: 	scale3d(1);
    	}
    
    .show_mobile_menu #mobile-advanced{
    	-webkit-transform: translate(0, 100%);
    	-moz-transform: 	translate(0, 100%);
    	-ms-transform: translate(0, 100%);
    	transform: 			translate(0, 100%);
    	}
    
    .avia_transform3d .show_mobile_menu #mobile-advanced{
    	-webkit-transform: translate3d(0, 100%, 0);
    	-moz-transform: 	translate3d(0, 100%, 0);
    	transform: 	translate3d(0, 100%, 0);
    	}
    
    #mobile-advanced a{
    	background:#fff;
    	}
    
    @media only screen and (max-width: 968px) {
    #advanced_menu_hide{
    	right:5%!important;
    	margin-top:-6px!important;
    	}
    
    .responsive .container {
        width: 90%;
    	}
    }
    
    @media only screen and (max-width: 767px) {
    #advanced_menu_hide{
    	right:5%!important;
    	margin-top:-11px!important;
    	}
    
    .responsive .main_menu{position: static; margin-right:0px;}
    .responsive .logo{position: relative; height:90px!important; float:left;margin-left:10px;}
    .responsive .mobile_slide_out .logo{float:left; margin:10px;}
    .responsive .logo a , .responsive .logo img{margin-left: 10px auto; max-width: 90%!important;}
    
    .responsive .mobile_slide_out .logo img {
    	margin-left: 5px;
    	float:left;
    	}
    	
    .responsive .logo a, .responsive .logo img {
        height: auto !important;
        max-width: 90%;
    	}
    
    .responsive .mobile_slide_out .logo {
    	left: -5%;
    	}
    }
    • This reply was modified 10 years, 5 months ago by docperi.
    in reply to: Fly-out menu formatting, transparency and screen size. #276751

    I got the same problem …
    And i dont understand it cause in the layout.css both have same css

    #advanced_menu_toggle, #advanced_menu_hide{
    position: absolute;
    border-radius: 2px;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-decoration: none;
    text-align: center;
    right: 0;
    top: 50%;
    margin-top:-23px;
    z-index: 10000;
    border-style:solid;
    border-width: 1px;
    font-size: 30px;
    display:none;
    }

    Strange … the positions by % (right, top) doesnt work fine …

    in reply to: Different Colors for tooltip in sections #276578

    Gracias :-)

    in reply to: Different Colors for tooltip in sections #276568

    hmm …. pero eso es para todos …. right?
    I need only for one color-section a different tooltip color Josue.

    Seems there is no chance to change it, right?

    • This reply was modified 10 years, 5 months ago by docperi.
    in reply to: Parallax and Blog? #274177

    YESSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS!!!!!!!!!!!!!!!!!
    Josue … u made my day.
    Muchas gracias :-)

    in reply to: Parallax and Blog? #274077

    i did this before. But on portfolio sites and blog sites it doesnt work when the main page uses parallax with links like #section
    thats my problem

    in reply to: Parallax and Blog? #274018

    It works. But not the Parallax effect … :-(

    I would like to link via main navigation to the section id without http …
    When i click now the site reloads at the right position. But the parallax effect is gone …
    Still looking for a solution.

    • This reply was modified 10 years, 5 months ago by docperi.
    in reply to: Masonry Grid getting me crazy … #273912

    FIXED!

    in reply to: Masonry Grid getting me crazy … #273799

    Images and installtion works fine. Memory Limit is set to 512 M.
    Like i said … “Load more” doesnt work. Only displaying all.
    Any idea?

    in reply to: Masonry Grid getting me crazy … #273620
    This reply has been marked as private.
    in reply to: Masonry Grid getting me crazy … #273514

    hello Josue,
    thx for your help. Its strange… when i use the option to display all it works. If i want to show 15 and load more it shows the images like before.
    Limit is set to 256MB …

    in reply to: Menu/ Logo problem #270171

    FIXED!

    Enfold > Header Layout > Mobile Menu > Header Mobile Menu activation.
    Activate for Smartphones and Tablets … :-)

    in reply to: Prettyphoto and iframe #270165

    FIXED!
    I edited the prettyPhoto.css :-)

    in reply to: Advanced Layout Builder & WPML #260190

    Fixed! WPML was the problem …
    It shows in backend as the newest installation (3.1.4). But thats wrong. The newest WPML version 3.1.5 fixes all :-)

    in reply to: WP 3.9 / Enfold 2.6.4 WPML Issues #260144

    Hello,
    ich habe das gleiche Problem. Fahre alle Plugins auf dem neustem Stand. Und der Erweiterte Editor lädt nicht. Vor den Updates gings …
    Keine Idee?

    in reply to: Inconsistent main menu and sub menu on-states #214494

    Sorry, its not about this topic, but cant send PM … so i do it that way :-)

    @ Glyyphism
    Still looking for grayscale google maps?

    Solution for u with the site u told us about (http://snazzymaps.com/style/15/subtle-grayscale )

    Open class-framework-widgets.php and search for

    var myOptions = {
    		  zoom:".$zoom.",
    		  mapTypeControl:true,
    		  mapTypeId:google.maps.MapTypeId.".$type.",
    		  mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    		  navigationControl:true,
    		  navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
    		  center:latlng		  
    		};

    replace it with:

    var myOptions = {
    		  zoom:".$zoom.",
    		  mapTypeControl:true,
    		  mapTypeId:google.maps.MapTypeId.".$type.",
    		  mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    		  navigationControl:true,
    		  navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
    		  center:latlng,
    		  styles: [{featureType:'water',elementType:'all',stylers:[{hue:'#e9ebed'},{saturation:-78},{lightness:67},{visibility:'simplified'}]},{featureType:'landscape',					elementType:'all',stylers:[{hue:'#ffffff'},{saturation:-100},{lightness:100},{visibility:'simplified'}]},{featureType:'road',elementType:'geometry',stylers:[						{hue:'#bbc0c4'},{saturation:-93},{lightness:31},{visibility:'simplified'}]},{featureType:'poi',elementType:'all',stylers:[						{hue:'#ffffff'},{saturation:-100},{lightness:100},{visibility:'off'}]},{featureType:'road.local',					elementType:'geometry',stylers:[{hue:'#e9ebed'},{saturation:-90},{lightness:-8},{visibility:'simplified'}]},{featureType:'transit',elementType:'all',stylers:[						{hue:'#e9ebed'},{saturation:10},{lightness:69},{visibility:'on'}]},{featureType:'administrative.locality',elementType:'all',stylers:[						{hue:'#2c2e33'},{saturation:7},{lightness:19},{visibility:'on'}]},{featureType:'road',elementType:'labels',stylers:[{hue:'#bbc0c4'},{saturation:-93},{lightness:31},						{visibility:'on'}]},{featureType:'road.arterial',elementType:'labels',stylers:[{hue:'#bbc0c4'},{saturation:-93},{lightness:-2},{visibility:'simplified'}]}]		  
    		};

    This works. Have fun :-)

    • This reply was modified 10 years, 10 months ago by docperi.
    in reply to: Problem uploading fontello icon sets #210881
    This reply has been marked as private.
    in reply to: Problem uploading fontello icon sets #209993
    This reply has been marked as private.
    in reply to: Problem uploading fontello icon sets #209953
    This reply has been marked as private.
    in reply to: Problem uploading fontello icon sets #209439

    i got now the same. It was all running. Had uploaded fonts before…. Now trying to upload another font i see the same errormessage. Zip is activated … dont know what happend. I testet it with various font-files. No Luck. Other Idea than reinstall?
    The DB Row avia_builder_fonts mangages the fonts…. Maybe i replace only the one table and it should run …

    At the moment it has this content:
    a:1:{s:5:”mario”;a:3:{s:7:”include”;s:16:”avia_fonts/mario”;s:6:”folder”;s:16:”avia_fonts/mario”;s:6:”config”;s:11:”charmap.php”;}}

    What is standard content? Empty right? And is there an other row managing fonts?

    The message i see:
    Couldn’t add the font.
    The script returned the following error:
    Fatal error: Call to a member function attributes() on a non-object in /homepages/5/d132518056/htdocs/,,,/…/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 179

    I replaced the file … no chance to get it running. Need a solution :-(
    PS. Plugins are compatibel. There is no conflict!

    • This reply was modified 10 years, 10 months ago by docperi.
    in reply to: Open Page in Lightbox #208987

    Thx Ismael,
    u made my day :-)

    But now i got a new question. :-)
    How can i get the ajax link for ex. to one portfolio item to open it in lightbox?

    This wont work:
    <a href="portfolio-item/2709?ajax=true&width=800&height=600" rel="prettyPhoto[ajax]">Ajax content</a>
    Got a idea? Possible?

    • This reply was modified 10 years, 10 months ago by docperi.
    in reply to: Colour changes not updating #208463

    Np, sometimes shit happens … :-)

    in reply to: Colour changes not updating #208457

    Sorry, simple question: Did you cleared the cache?

    in reply to: Problem size logo #208455

    Got a link to your site?

    in reply to: change Icons in Ajax portfolio #208445

    With other words: found it…
    Open functions.php and you see all icons.
    Cheers

Viewing 30 posts - 91 through 120 (of 135 total)