Kermet
-
about wordpress menus
http://codex.wordpress.org/Function_Reference/wp_nav_menu You create the menu in the backend, filling it with whatever you need, then you print to the frontend with wp_nav_menu(array('menu' => 'mymenuname')); You really don&…
-
Finally was able to re-design our OWN site...what do you think?
@Luminated my bad, i thought i had IE 8 on my VM (running osx), but i have IE 6 still... ..i guess it's enough if any site loads at all on that one... :)
-
Get array of Images from a Wordpress Post
I use attachments plugin (http://wordpress.org/extend/plugins/attachments/) to attach media to a post, then i can retrieve all the attached media as an array. You could try that if wordpress' get_attachment function doesn't do the trick fo…
-
All Ajax Theme - Js into pages problem
Probably they rely on document.ready function, or something like that. If they load into the #content's ajax-ed area you probably have to change that logic a bit...just a guess.
-
Finally was able to re-design our OWN site...what do you think?
I really love the design! However, the site looks really bad in IE8, but i guess you already knew that? :)
-
Loading Dynamic text in HTML?
You can't do that with HTML, which is static content by definition. However, you could, with some scripting (bash? perl? depends what you have available/what you know already) "dinamically" generate html code based on the input txt/do…
-
Get array of Images from a Wordpress Post
http://codex.wordpress.org/Function_Reference/wp_get_attachment_image The first example should be what you're looking for.
-
design critique and help
On Firefox 9, when you click, for example, link B when you're in page A, you get page A loaded then straight after page B pops instead of it. For the homepage, you should center the graph with the big title above. The fonts used on graph are v…
-
Your Top 10 Wordpress Plugins.
Well i don't have ten plugins, but i always includes the following when i start out a fresh site for a client: Contact Form 7Contact Form to DBAttachments Really can't live withouth them
-
Could Wordpress achieve this?
First of all, there's nothing you can't achieve in WordPress :) Have a look at this: http://codex.wordpress.org/Template_Tags/get_posts You'll want to use customized loops to achieve what you're looking for.
-
Breaking Up Contact Form Vertically
Media queries allows you to do that directly into the CSS http://www.w3.org/TR/css3-mediaqueries/ Short answer: you can with something like @media (max-width:500px) { … }, adjust the pixel width for your needs. This doesn't target exactly the…
-
Breaking Up Contact Form Vertically
I can't see the whole code you posted, you should be embedding it into code tags. Anyway that's the idea, you put the table tags directly into CF7 textarea defining your form. You can put there ids and classes aswell, for styling.
-
Breaking Up Contact Form Vertically
That's a common request from our clients on WP via CF7. I usually embed everything into this kind of structrure: Insert your name [text* myname] Not the best looking solution, but it works.
-
Wordpress loop: Hide images
You could use a custom template and include the_content() into a div of some kind of id or class: and put in the css.mycustomclass img { display: none; }
-
Suggestions on Analytics for Large Website
Google Analytics, what else?
-
background problem
Try usingbackground-position: topfor the background, or some other fixed (pixels) dimension, to have consistency between different sized pages
-
using single property classes for multiple elements
I think the first approach could be more clear, but i'd group the css declarations like this: #element, #element2 { position:absolute; bottom:0; } #element { width:100%; } #element2 { width:500px; }
-
Help with Page Wrap
The problem you're having is because parent elements doesn't expand to fit child elements, if those child elements are floated. Try applying a class for clearfix to the wrapper: http://css-tricks.com/snippets/css/clear-fix/ Doing so will m…