<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Web Design / Development &#124; FLDtrace</title>
	<link>http://www.fldtrace.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 19:10:51 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>Center a DropDown Menu Using CSS and JQUERY</title>
		<description><![CDATA[Maybe you have noticed that majority of the drop-down menus on the web, are aligned to the left of their containing parent. Using Jquery, we will position the dropdown in the middle of the parent, dynamically centered, no matter how long the parent's link width gets. Since the dropdowns are positioned absolutely, the CSS <strong>margin: auto</strong> won't help in our case.

Using this method, we can have an interesting design, with an arrow pointing up or you can come up with other design ideas. Also, for users without Javascript enabled in their browsers, the navigation will degrade gracefully and the positioning will be to the left of the parent.

<strong><a href="http://www.pixeldelirious.com/wp-content/themes/static/" class="feather_link">View Demo</a></strong>


Related posts:<ol><li><a href='http://www.fldtrace.com/css/better-techniques-for-writing-css-and-markup' rel='bookmark' title='Permanent Link: Better techniques for writing CSS and markup'>Better techniques for writing CSS and markup</a></li>
<li><a href='http://www.fldtrace.com/wordpress/float-images-in-wordpress-properly' rel='bookmark' title='Permanent Link: Float images in WordPress properly'>Float images in WordPress properly</a></li>
<li><a href='http://www.fldtrace.com/wordpress/how-to-display-dynamic-menu-in-wordpress' rel='bookmark' title='Permanent Link: How To Display Dynamic Menu Pages In WordPress'>How To Display Dynamic Menu Pages In WordPress</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/css/center-a-dropdown-menu-using-css-and-jquery</link>
			</item>
	<item>
		<title>Float images in WordPress properly</title>
		<description><![CDATA[In the following article, I will explain a method to make it easy for you or for your clients, to float multiple images left, in Wordpress.

The method is useful if you want to float images left, on sections such as team bio, where the member will have his/her image left and a bio text aside right.

The alternative, dirty way to do it, would be using tables, but the code is bulky, harder to maintain,  page  loads slower and definitely not the easiest way to do it. Read on for the good method.


Related posts:<ol><li><a href='http://www.fldtrace.com/wordpress/load-javascript-on-specific-pages-in-wordpress' rel='bookmark' title='Permanent Link: How to load Javascript on specific pages in WordPress'>How to load Javascript on specific pages in WordPress</a></li>
<li><a href='http://www.fldtrace.com/css/center-a-dropdown-menu-using-css-and-jquery' rel='bookmark' title='Permanent Link: Center a DropDown Menu Using CSS and JQUERY'>Center a DropDown Menu Using CSS and JQUERY</a></li>
<li><a href='http://www.fldtrace.com/css/better-techniques-for-writing-css-and-markup' rel='bookmark' title='Permanent Link: Better techniques for writing CSS and markup'>Better techniques for writing CSS and markup</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/wordpress/float-images-in-wordpress-properly</link>
			</item>
	<item>
		<title>Better techniques for writing CSS and markup</title>
		<description><![CDATA[A website speed performance depends mainly on the quality of the CSS and markup code behind it. (JavaScript as well but this part will not be covered in this post.)

The websites with a clean code are also easier to maintain, saving time to the developer and money to the client, that's why I find extremely important to write the (X)HTML and CSS efficiently.

While there are more website layouts types: fixed-width, fluid (liquid), elastic, hybrid, it is important to choose the layout which suits best for the website target audience.

The most popular is fixed-width layout, which allows to take the design and preserve the appearance to the pixel, that's why me and most coders out there choose it.


Related posts:<ol><li><a href='http://www.fldtrace.com/wordpress/float-images-in-wordpress-properly' rel='bookmark' title='Permanent Link: Float images in WordPress properly'>Float images in WordPress properly</a></li>
<li><a href='http://www.fldtrace.com/css/center-a-dropdown-menu-using-css-and-jquery' rel='bookmark' title='Permanent Link: Center a DropDown Menu Using CSS and JQUERY'>Center a DropDown Menu Using CSS and JQUERY</a></li>
<li><a href='http://www.fldtrace.com/wordpress/include-different-sidebar-in-wordpress-depending-on-section' rel='bookmark' title='Permanent Link: Include different sidebar in WordPress, depending on the section you are'>Include different sidebar in WordPress, depending on the section you are</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/css/better-techniques-for-writing-css-and-markup</link>
			</item>
	<item>
		<title>Show subpages only for the current parent page in WordPress</title>
		<description><![CDATA[Have you ever tried in Wordpress, to list only the sub pages of the current parent page and hide the sub pages of the other parent pages?

I had few people asking me how I realized toggling the subpage navigation links in <a href="http://www.jointuse.org/resources/make-joint-use-happen/answers-to-hard-questions/">following website</a>.

If you notice, the other parent sub pages are hidden. If you go instead on <a href="http://www.jointuse.org/resources/policy/ca-funding-framework/">other subpage</a>, it will hide the others and show up the sub-pages of the current page.


Related posts:<ol><li><a href='http://www.fldtrace.com/wordpress/how-to-display-parent-page-title-in-wordpress' rel='bookmark' title='Permanent Link: How To Display Parent Page Title in WordPress'>How To Display Parent Page Title in WordPress</a></li>
<li><a href='http://www.fldtrace.com/wordpress/bbpress-front-page-text-plugin' rel='bookmark' title='Permanent Link: BBpress Front Page Text Plugin'>BBpress Front Page Text Plugin</a></li>
<li><a href='http://www.fldtrace.com/wordpress/how-to-display-dynamic-menu-in-wordpress' rel='bookmark' title='Permanent Link: How To Display Dynamic Menu Pages In WordPress'>How To Display Dynamic Menu Pages In WordPress</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/wordpress/show-subpages-for-the-current-parent-page-in-wordpress</link>
			</item>
	<item>
		<title>Include different sidebar in WordPress, depending on the section you are</title>
		<description><![CDATA[If / else statements are programming language logic and is something that will help us create better Wordpress custom themes.

A client of mine, wanted to improve his Wordpress site and decided he wants to display different sidebar information depending on the page or section the visitor is.

For example, he wanted to have blog related links as: latest posts, categories and tags, being displayed only on blog section (blog index, categories view, single post view etc). On products/services page and its sub-pages, he decided he wants to have displayed the sub-pages of that section and other interesting links. The rest of the pages, should have only the interesting links section or generic information.


Related posts:<ol><li><a href='http://www.fldtrace.com/wordpress/8-recommended-useful-plugins-for-wordpress' rel='bookmark' title='Permanent Link: 8 Recommended Useful Plugins for WordPress'>8 Recommended Useful Plugins for WordPress</a></li>
<li><a href='http://www.fldtrace.com/wordpress/load-javascript-on-specific-pages-in-wordpress' rel='bookmark' title='Permanent Link: How to load Javascript on specific pages in WordPress'>How to load Javascript on specific pages in WordPress</a></li>
<li><a href='http://www.fldtrace.com/wordpress/float-images-in-wordpress-properly' rel='bookmark' title='Permanent Link: Float images in WordPress properly'>Float images in WordPress properly</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/wordpress/include-different-sidebar-in-wordpress-depending-on-section</link>
			</item>
	<item>
		<title>Why web designers should develop using Windows</title>
		<description><![CDATA[Most of web designers and developers, I know or heard of, are building websites using a MAC PC or laptop.

While it is nothing wrong with that, I am firm adept of Windows platform, though there are advantages or disadvantages of each operating system.

Is true that MACS are sexier, much easier to work with, plus can save time and headaches to developer, but in the end, we build websites for our clients. That's why  their needs should be our focus.

Here are few reasons, why web developers should use Windows OS when we build websites:


Related posts:<ol><li><a href='http://www.fldtrace.com/design/mistakes-printgraphic-designers-do-when-design-websites' rel='bookmark' title='Permanent Link: Mistakes print/graphic designers do when design websites'>Mistakes print/graphic designers do when design websites</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/freelancing/why-web-designers-should-develop-using-windows</link>
			</item>
	<item>
		<title>BBpress Front Page Text Plugin</title>
		<description><![CDATA[BBpress Front Page Text for BBpress forum has been released and this post will serve as plug-in's home page. The simple plug-in, adds a back-end option for administrators to add/manage content for forum's front page. While the developers can easily add the text by diving in the back-end, the plug-in allows the the clients to easily update the content without being code savvy. It also helps if you need to update the front page text regularly.


Related posts:<ol><li><a href='http://www.fldtrace.com/wordpress/show-subpages-for-the-current-parent-page-in-wordpress' rel='bookmark' title='Permanent Link: Show subpages only for the current parent page in WordPress'>Show subpages only for the current parent page in WordPress</a></li>
<li><a href='http://www.fldtrace.com/wordpress/8-recommended-useful-plugins-for-wordpress' rel='bookmark' title='Permanent Link: 8 Recommended Useful Plugins for WordPress'>8 Recommended Useful Plugins for WordPress</a></li>
<li><a href='http://www.fldtrace.com/wordpress/how-to-display-parent-page-title-in-wordpress' rel='bookmark' title='Permanent Link: How To Display Parent Page Title in WordPress'>How To Display Parent Page Title in WordPress</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/wordpress/bbpress-front-page-text-plugin</link>
			</item>
	<item>
		<title>How to load Javascript on specific pages in WordPress</title>
		<description><![CDATA[The website speed and responsiveness are very important factors and this aspects should not be neglected if you want to have happy visitors.

There are many areas that should be improved for better website performance as: smart wise written (X)HTML/CSS, optimized images and minimal javascript.

On larger websites, you will have JavaScript, that needs to be loaded just on certain pages or areas from the website, without needing to load it and slow down those.


Related posts:<ol><li><a href='http://www.fldtrace.com/wordpress/float-images-in-wordpress-properly' rel='bookmark' title='Permanent Link: Float images in WordPress properly'>Float images in WordPress properly</a></li>
<li><a href='http://www.fldtrace.com/wordpress/how-to-display-dynamic-menu-in-wordpress' rel='bookmark' title='Permanent Link: How To Display Dynamic Menu Pages In WordPress'>How To Display Dynamic Menu Pages In WordPress</a></li>
<li><a href='http://www.fldtrace.com/wordpress/bbpress-front-page-text-plugin' rel='bookmark' title='Permanent Link: BBpress Front Page Text Plugin'>BBpress Front Page Text Plugin</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/wordpress/load-javascript-on-specific-pages-in-wordpress</link>
			</item>
	<item>
		<title>Mistakes print/graphic designers do when design websites</title>
		<description><![CDATA[This article is not only meant for print/graphic designers but for the others web designers as well.

Although, I am web designer myself, I found working with a few clients, who already had the website design ready and need to slice into (X)HTML/CSS, which part I love and cannot complain about. These types of designs usually are provided by in house graphic designer, other graphic design freelancer or a web design company.


Related posts:<ol><li><a href='http://www.fldtrace.com/wordpress/how-to-display-dynamic-menu-in-wordpress' rel='bookmark' title='Permanent Link: How To Display Dynamic Menu Pages In WordPress'>How To Display Dynamic Menu Pages In WordPress</a></li>
<li><a href='http://www.fldtrace.com/freelancing/why-web-designers-should-develop-using-windows' rel='bookmark' title='Permanent Link: Why web designers should develop using Windows'>Why web designers should develop using Windows</a></li>
<li><a href='http://www.fldtrace.com/css/better-techniques-for-writing-css-and-markup' rel='bookmark' title='Permanent Link: Better techniques for writing CSS and markup'>Better techniques for writing CSS and markup</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/design/mistakes-printgraphic-designers-do-when-design-websites</link>
			</item>
	<item>
		<title>How To Display Dynamic Menu Pages In WordPress</title>
		<description><![CDATA[I have came across couple methods to display menu pages items in Wordpress including static one recommended by Wordpress, but none of it was suited for my clients needs, since you had to hack the code each time you added a new page.  The method I will show you is absolute dynamic and your client or you, can display pages, subpages and highlight them dynamically.


Related posts:<ol><li><a href='http://www.fldtrace.com/wordpress/load-javascript-on-specific-pages-in-wordpress' rel='bookmark' title='Permanent Link: How to load Javascript on specific pages in WordPress'>How to load Javascript on specific pages in WordPress</a></li>
<li><a href='http://www.fldtrace.com/wordpress/include-different-sidebar-in-wordpress-depending-on-section' rel='bookmark' title='Permanent Link: Include different sidebar in WordPress, depending on the section you are'>Include different sidebar in WordPress, depending on the section you are</a></li>
<li><a href='http://www.fldtrace.com/wordpress/how-to-display-parent-page-title-in-wordpress' rel='bookmark' title='Permanent Link: How To Display Parent Page Title in WordPress'>How To Display Parent Page Title in WordPress</a></li>
</ol>]]></description>
		<link>http://www.fldtrace.com/wordpress/how-to-display-dynamic-menu-in-wordpress</link>
			</item>
</channel>
</rss>
