virtual
-
sf-menu disappearing behind iframe video
I found the solution to the video problem - add ?wmode=transparent right after the embed source code. See details in this article: http://www.jenkaufman.com/youtube-iframe-embed-video-problem-hides-menus-other-layers-546/
-
Appended image not showing
Recap on this because I am new to Wordpress and it might help someone else. The jQuery library is already loaded but WP does not accept the jQuery $ code. So to use that it means enqueuing the js or else to modify the code to jQuery instead of $ e.g…
-
Appended image not showing
"Hits head against wall" ...Thanks Jamy, I completely forgot to load the jQuery library. Now it works...duh!
-
Appended image not showing
That doesn't work, besides it does not tell the h2 tag where to place the image which .append does. Thanks anyway.
-
moving to WordPress..
Definitely PHP first, WP is based on it. As Doc said, a basic understanding of PHP and copy/paste will get you started.
-
Help!!! Two Teir Horizontal Menu - WordPress and Prototype
Sorry my bad, you want an on click event, I thought the article would help go through the steps to get a different menu in there. You will have to disable the js dropdowns which come with the latest wordpress version and replace with your own custom…
-
Help!!! Two Teir Horizontal Menu - WordPress and Prototype
Maybe this will help you http://new2wp.com/pro/jquery-drop-down-menu-wordpress-3-menu/
-
[Solved] IE7 rollover not working
Fabulous, thanks so much I knew I was missing something....duh
-
[Solved] IE7 rollover not working
Thanks Jamy, tried that and it still does not display the hover in IE7 LINK Any other ideas.
-
Jquery browser compatibility
It's targeting anchor tags with a rel of tooltip which are down at the bottom of the page
-
Image Placement
What he means is a floated div with a background image collapses if it has no content.
-
my layout does not work in firefox when I change srceen resolution
It looked OK to me at 1920x1080 and 1280x1024
-
How to update a section without going to the code?
If you want the CMS hosted on the client's site, for a very small fee there is unify.unitinteractive.com
-
Displaced anchors
First time playing fiddler http://jsfiddle.net/jS9Vp/10/
-
CSS Question :)
You need to "clear" the first float. Google for clear floats, there are several methods to do this.
-
Need help with footer
Add overflow:auto to main-content. P.S. That background is hard on the eyes, a very light grey might help tone it down a little
-
how can I use UTF-8 to translate my website from English to Brazilian Portuguese and Spanish?
UTF-8 doesn't translate anything but it can display the characters (such as tilde's and accents) that are used in Spanish and Portuguese. If you are using Wordpress there is a plugin you can use to do this http://www.qianqin.de/qtranslate/
-
Div doesn't reach edge of browser page
The reset goes at the start of the style sheet or if you are using a fancy one can be it's own separate style sheet. Be careful with pre-written resets as they can mess up other things that you might find out about later down the line, and ther…
-
div bottom right alignment (with scrollbars)
Here are 2 links to image randomizers http://www.markinns.com/articles/full/simple_two_line_image_randomiser_script_with_jquery http://www.robwalshonline.com/demos/randomImageDemo/randomImage_plugin.html
-
div bottom right alignment (with scrollbars)
Try this: Remove all css from page-wrap, in fact you can completely delete this div too. Change css in content-wrapper to float: right; margin-top: 30%; padding: 0 20px 20px 0; Delete content div entirely, the content-wrapper will be the…
-
Help Centering Blog
Why do you have the navigation down the side? There is an area for it under the header across the top.
-
Help Centering Blog
I forgot to mention that the software is not free. I guess you are on a budget as you are using Weebly. The site is off center in Firefox on Mac too, I will have a look in PC and let you know what to do,
-
Help Centering Blog
Is the site that is up now showing a true picture?
-
Help Centering Blog
Read again, he didn't say change the margin but change the width to 900px - huge difference. You will also learn that as Mac's do not have IE, only intelligent browsers, your code probably works in them. However as the majority of people a…
-
div bottom right alignment (with scrollbars)
The way you have it now, remove position absolute from content div. that will give you a vertical scrollbar. Besides, you can't position something absolutely and float it at the same time.
-
div bottom right alignment (with scrollbars)
In the content div, change the float: right to position:fixed. That will get rid of your scrollbars and the content div will move around as the window is resized.