Mpwassler
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Iconic One] Change Footer HeightLink
Forum: Plugins
In reply to: [Asynchronous Javascript] blocking the scriptsWrap your whole javascript file in window.onload= function (){
Javascript goes here
};Forum: Your WordPress
In reply to: Improve my sitefor the logo i would recommend you use an svg file. If you have adobe illustrator you can export as svg. Or you could use a free tool like inkscape. The advantage of svg files is that they are resolution independent so they will always look sharp this would be a good choice for your logo since it is re sizing allot
Forum: Your WordPress
In reply to: Review My Siteyes, auto-playing audio should never happen. It is one of the worst things you can do from a usability stand point most people will simply leave immediately if they encounter it. Think about it this way you never know where your user will be. They could be at work or in some other crowded place and when that sound comes on there going to embarrassed by the attention. I would recommend getting rid of the audio completely. Also I would recommend trying to have more content placed higher up the page, you have to scroll quite a bit before you get to any text content. Im sure you have at least some text worthy of being the first thing a user sees on your site instead of just a giant logo
add
#content .content-box:nth-child(3n+3){ clear:both; }
to the css file
Forum: Themes and Templates
In reply to: .push animation, hover.cssdo you have a link to your website?
Forum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pagecan you try to link a sytlesheet into the iframe . . . like put a
<link type="text/css" rel="Stylesheet" href="stylesheet.css" />
inside of the iframe tag. then that style sheet will affect it. otherwise we would probably need to inset it with javascriptForum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pageI realized that your style sheet can’t style I frames from another site there is a solution but I don’t know off the top of my head and I’m out right now I’ll look into it when I get home as see if I can fix it
Forum: Fixing WordPress
In reply to: Menu issues and assistance requiredthe easiest way would be to use a psudo selector something like this
#menu-item-354 ul{ dislpay;none } #menu-item-354:hover ul{ display: block; }
its a bit more complicated if you want it to animate but it can still be done
Forum: Plugins
In reply to: Element.style . i cannot how to delete it or modify.ngg-album-desc {max-width: what u want it to be !important;}
Forum: Fixing WordPress
In reply to: Menu issues and assistance requiredWhere is it supposed to be ??
Forum: Fixing WordPress
In reply to: Menu issues and assistance requiredGlad u finally got that working lol
Forum: Fixing WordPress
In reply to: Menu issues and assistance requiredYes it’s late here now … It got ride of it when I entered it in developer tools so i think it should work. I’m pretty new to wordpress but Iv done allot of front end web development so I know lots of css But allot of these wordpress themes have so many random things going on it gets confusing. Like this theme uses javascript for a bunch of responsive styling it almost looks like it’s pulling in different css from the server when the page is resized … And that could be making it hard to over write things
Forum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pagei didnt know what to put in the
<a>
tag tho beacuse you didnt escape it in your post so it showed as a link and not the tag but it will most likely behref ="<?php the_permalink() ?>"
Forum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pageWhere it says add scroller content here replace it with this
<div id="voodooBlog"> <?php while (have_posts()): the_post(); ?> <div class="dateIcon"> <h5><?php the_time('M'); the_time('j'); ?></h5> </div> <div class="text"> <h4><a><?php the_title(); ?></a> </h4> <?php the_excerpt(); ?> </div> <?php endwhile; ?> </div>
Then u gotta use .text h4{ styles:here; } and .text p {styles:here;} to style