Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • in reply to: Stuck in Maintenance Mode #109766
    k_grinder
    Member
    Post count: 4

    I couldn’t find a .maintenance file anywhere. I had show hidden file, just no where to be found. I did fix the problem by deactivating these two plug-ins: All-in-One WP Migration and BackUpWordPress. Not sure if conflict with your theme or with WP 4.0. I had had those plug-ins on this install and did work fine with your theme before I updated to WP 4.0. FYI.

    in reply to: Stuck in Maintenance Mode #109754
    k_grinder
    Member
    Post count: 4

    Not there either. I’ve hunted for it in several directories, including wp-content/themes/dante.

    in reply to: Stuck in Maintenance Mode #109718
    k_grinder
    Member
    Post count: 4

    I have looked for that file. I don’t have it. Here’s the screen cap.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Animated Icons Box not working in Internet Explorer #48808
    k_grinder
    Member
    Post count: 4

    I’m having the same issue, Obviously, because this is a browsers limitation issue. However, it is a shortcoming and when you read the compatibility list on themeforest and it says it’s IE compatible, I assume I don’t have to go check it on every browser that it is compatible.

    Anyway, that said I love the theme and it’s functions. I wanted to point out that in Opera the CSS3 transition does not work either. However, it has an acceptable degradation by showing the relevant content on the “flip” side. Is there a way to force a degradation on IE that shows the “relevant” side, which can be assumed to be the “flipped” side?

    Is there a way to make this work? From this article: http://davidwalsh.name/css-flip

    /* entire container, keeps perspective */
    .flip-container {
    	perspective: 1000;
    	transform-style: preserve-3d;
    }
    	/*  UPDATED! flip the pane when hovered */
    	.flip-container:hover .back {
    		transform: rotateY(0deg);
    	}
    	.flip-container:hover .front {
    	    transform: rotateY(180deg);
    	}
    
    .flip-container, .front, .back {
    	width: 320px;
    	height: 480px;
    }
    
    /* flip speed goes here */
    .flipper {
    	transition: 0.6s;
    	transform-style: preserve-3d;
    
    	position: relative;
    }
    
    /* hide back of pane during swap */
    .front, .back {
    	backface-visibility: hidden;
    	transition: 0.6s;
    	transform-style: preserve-3d;
    
    	position: absolute;
    	top: 0;
    	left: 0;
    }
    
    /*  UPDATED! front pane, placed above back */
    .front {
    	z-index: 2;
    	transform: rotateY(0deg);
    }
    
    /* back, initially hidden pane */
    .back {
    	transform: rotateY(-180deg);
    }
    
    /* 
    	Some vertical flip updates 
    */
    .vertical.flip-container {
    	position: relative;
    }
    
    	.vertical .back {
    		transform: rotateX(180deg);
    	}
    
    	.vertical.flip-container:hover .back {
    	    transform: rotateX(0deg);
    	}
    
    	.vertical.flip-container:hover .front {
    	    transform: rotateX(180deg);
    	}
Viewing 4 posts - 1 through 4 (of 4 total)