csleh
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Help please, CSS problem!Try using Firefox browser and install the firebug extension. Then you can view the page, make changes to the css until it looks good, then copy the code to paste in your stylesheet.
background images: is there a no-repeat declaration?
Sidebars: sounds like a float issue. Try changing the width and see what happens. Remember, browsers (well, ie) don’t like the measurements to add up to 100% of containter width.Also, some users won’t have images turned on so make sure the background of the areas with photos is set to keep the type legible.
Forum: Themes and Templates
In reply to: What can / can’t i do with css and wordpress?Great answer above.
Re: dreamweaver:
I do all my initial designing in dreamweaver mostly in code view. It’s easy to work out all the html/css issues. Get a feel for “header” “body” “sidebar” and “footer” so divs can be placed in logical spots.When the design is ready I edit the default theme using my css and putting html in the appropriate php files. Then the php code is put in the right spots to call content, make the navigation, etc.
Make sure to bookmark helpful pages when looking for wordpress help — chances are you’ll want to go back again!
Forum: Fixing WordPress
In reply to: orderby isn’t workingyes, this is page.php. I assume the code is being used, since category 10 (the partner listing) is shown. I don’t know how to test that though.
Forum: Themes and Templates
In reply to: how do I make my custom header fit all types of computersSomewhere else in the stylesheet is code with a width, probably something like ‘width:988px’
You can change this, but realize other things might get screwed up in the process.Read up on css and practice — not on your live blog! — making changes to get the width how you like. Percentages and em sizes (fluid and elastic layouts) might suit.
Keep in mind that no matter what you do, you do not have final control over the look of your site. The viewer does. Absolutely no guarantees in web design.
For practicing use Firefox and download the developers plugin. It lets you edit css styles on the fly, and you can copy and save to update the real style sheet when you are ready.
Forum: Themes and Templates
In reply to: CSS problem menu messed up please helpIf you are refering to the menu not moving with the rest of the page, the issue is there is no declaration for the menu.
Add this:
#menu {
position:relative;
width:940px;
height:140px;
margin: 0 auto;Forum: Themes and Templates
In reply to: Change the menu/page layout for one pageIf this is a Page — super easy. Make a new template, and in the Edit Page screen scroll down and select that page template. There’s some code at the top of the php file needed to make a template:
<?php
/*
Template Name: whatever
*/
?>
then add the code you want from the regular page, making a <div> that is big enough, and not pulling in the menu area.If this is a post, I think you need conditional code to use the new <div> instead of the default from the rest of the site. You could also try a category template and use the “force category template” but this would affect all of your site.
Personally I’d extend to the right and not the left. There’s more real estate that direction.
Forum: Fixing WordPress
In reply to: orderby isn’t workingI was experimenting with using one template for many page types, so would be great to know how I’m screwing up.
Forum: Fixing WordPress
In reply to: orderby isn’t workingLink change:
http://www.lighthouseconsultingpartners.com/who-we-are/partners/I don’t see the sorting. I see:
Detroit Chamber of Commerce
Institute of Management Consultants
Association for Computing Machinery
International Association for Outsourcing ProfessionalsBut ‘A’ should come before ‘I’ if were sorting alphabetically.
Forum: Fixing WordPress
In reply to: Visual Editor stuck on HTMLThis post has suggestions:
http://wordpress.org/support/topic/165449?replies=61I found the tiny_mce_config tweak worked for me when all else failed.
Forum: Themes and Templates
In reply to: CSS not styling all my linksThis page will help for the listing issue:
http://codex.wordpress.org/Template_Tags/wp_list_categoriesIf you look at your actual code:
<!--catigory navigation--> <div id="cat-nav"> <ul> <li class="all"><a href="http://new.coolmac.org/" title="All">All</a></li> <li> <li class="cat-item cat-item-1"><a href="http://new.coolmac.org/archives/category/uncategorized/" title="View all posts filed under CoolMac News">CoolMac News</a> </li><li class="cat-item cat-item-6"><a href="http://new.coolmac.org/archives/category/meeting-minutes/" title="View all posts filed under Meeting Minutes">Meeting Minutes</a> </li><li class="cat-item cat-item-5"><a href="http://new.coolmac.org/archives/category/upcoming-events/" title="View all posts filed under Upcoming Events">Upcoming Events</a> </li> </li> </ul> </div> <!--catigory navigation--> <ul id="nav"> </ul>you’ll see the tags are all messed up. Nested bullets here aren’t picking up the styling.
To remove the number you’ll need to edit the template for the file. But you must have done that already, I don’t see a number of posts on the site.
Forum: Themes and Templates
In reply to: Change my theme to single column when viewing single photosDo you have an image.php file? THis controls the look of the single image page. I found these to be helpful:
http://mfields.org/2008/04/26/adding-text-links-to-wordpress-gallery/
http://www.smjdesign.com/designwell/archives/change-media-and-images-to-full-size-in-wordpress-media-gallery/Forum: Fixing WordPress
In reply to: A few questions.Where you have:
<div id="pages"> <ul> <?php wp_list_pages('depth=1&title_li=' ); ?> </ul> </div>add a line like this:
<div id="pages"> <ul> <?php wp_list_pages('depth=1&title_li=' ); ?> <li><a href="linktobb.html">link text</a></li> </ul> </div>Forum: Themes and Templates
In reply to: the_category() taghave you tried
‘cat=-3’to exclude category 3 here
Forum: Fixing WordPress
In reply to: if in_category code questionOK, so the
"&&is saying “if this is also true” and the!is saying “leave this one out”. Is that right?Forum: Themes and Templates
In reply to: Please Help! replacing head imageI think there is a background image to #page that is 760px wide, and includes both left and right borders. The header image looks like it also has these shadowed borders, but they aren’t in the same position. The blue color is set right before the url(blah.jpg) in the css file.
Edit your header image and it should be all right.