jacorre
-
Logo Design Criticisms?
Try using similar spacing between the letters and apply that spacing between the lion graphic and the company name and between the company name and the slogan.
-
Wordpress - problem with permalinks
What are you using for your permalink structure?
-
CSS: Text in body creates whitespace in footer
You may want to try using a repeating background image within a wrapper to give the effect of two sidebar columns. They will show as far as the content area goes.
-
Font defaults in different browsers
The margin/padding is different between browsers too. Try zeroing out heading and paragraph tags and then applying whatever styling you'd like to see if that helps.
-
Wordpress - single-post template and the loop
I think it would be better to create a custom template page. That way you can write your own custom loop and get your jcarousel style going.
-
Wordpress Tricks
WP-Snippets is a good site for stuff like that.
-
Grids, Background Images, and Padding Oh My!
@stevendeeds I have been using a nested div, even though it's an extra div. But seems to be the easiest option when the design calls for it. @TheDoc If the design was created with a grid layout in mind, then it works well. If it wasn't th…
-
Correct markup of user profile
You could make an argument that the information is tabular and you could use tables. I think a definition list in this instance might be easier to use than an unordered list. It wouldn't need the additional span tags since you can style the dt …
-
Contact forms don't work
Is the script needed to parse the information installed and set up correctly?
-
Need some help with Wordpress categories/sub-categories
WordPress has a function to list categories and sub-categories that's called wp_list_categories.
-
Wordpress 3.1 Noob Question: Date Stamp Design
Might be in the functions.php file for your theme.
-
My home.php didn't work but was okay when renamed to front-page.php. Please explain!
Don't think you're allowed to have the page name and file name be the same thing. I've seen issues with that before myself. If I want a custom home page I usually name the template file homepage.php and title the page as Home or the n…
-
WP help: exclude a specific page's children from nav
Could you instead list only the top level pages and then when on that page, you could include the menu for subpages?
-
WP Custom Login Page CSS
You can also try the Theme My Login plugin.
-
WP Custom Login Page CSS
You can add the following to the functions.php file for your theme: /* This sets a user-defined logo for the login page. */ function custom_login_logo() { echo ' h1 a { background-image:url('.get_bloginfo('template_direct…
-
Getting equal width across backgrounds
You can look at my blog categories navigation to get an idea. I do use display:block as suggested. #categories li a { display: block; padding: 0.625em; text-decoration: none; background-color: #561420; border: 1px solid #000; -moz-border-radi…
-
How to create simple tree structure menu in jquery?
Do a google search for jquery tree navigation and I'm sure you'll find a bunch of results. Here's one I noticed. jQuery File Tree
-
WP permalink postname
You can use %postname% as your permalink and it should work for both posts and pages. You mention your page being named About, but your link is looking for about. Notice the capital letter vs lowercase letter. Go to your About page in Edit Pages …
-
rollover image not working, quick help?
Are the images are in the correct folders that you've defined in your code?
-
Creating a moving image over a background image
jQuery and CSS Sprite Animation
-
[Solved] Can't find wordpress plugin. Help?
Do you really need the buttons? There's a drop down box to select heading tags in the wordpress text editor when creating posts/pages.
-
Help floating menu
If you post an example of what you're working on or an example of what you'd like it would help.
-
Split a form into two columns.
Forgot to mention that just be aware that your changes will be blown away if the plugin gets updated later on.
-
What if the database fails?
Wordpress is a CMS that has options for backing up the database. There are many other options out there as well. It's really up to you as to which one suits your needs best.
-
Custom post types broken after upgrading to WP 3.1
You may want to post on Wordpress.org's forum to get a better response if it truly is an issue after the upgrade. I think I read before that with permalinks it sometimes causes problems. Have you reset your permalinks if you're using the…
-
Split a form into two columns.
I believe you'd have to go into the plugin code itself and make those changes. Backup the plugin files before making any changes first. That way if something goes wrong you can always revert back to the clean version.
-
display post attached images
Are you saying you want the code to use to display an image that is associated to a post? Is the image defined as a thumbnail image or is it defined within a custom field?