1. CSS/HTML issues are off-topic for this site, per the FAQ.
But, have you tried investigating with Firebug or Chrome’s dev tools? The answer is obvious in seconds. This page http://www.biz.uiowa.edu/bta/test/ has large headings because of
.singular .entry-title {
font-size: 2em;
margin-bottom: 0.3em;
}
Since you are running a second loop on a singular page, the body class issue I proposed in the comments is catching you.
2. To best exclude a category from the index loop you should use pre_get_posts
.
function wpa_94196_exclude_category( $query ) {
if ( is_home() && is_main_query() ) {
set_query_var( 'cat', '-9' );
}
}
add_action( 'pre_get_posts', 'wpa_94196_exclude_category' );
Related Posts:
- Get page content by category or tag
- Display one latest post from multiple categories
- How to query post like normal search would do. within search.php page
- Set colors depending on category
- Pagination on category.php and tag.php not working
- new WP_Query issues
- Get posts from sites in Multisite?
- How to check if I’m on the last page of posts?
- Get all categories and posts in those categories
- How To Modify The Loop in archives.php To Have 11 Posts Per Page and CSS Styling
- Combine two taxonomies in a hierarchical tree
- How to get posts from two categories with WP_Query?
- Group WP_Query by category
- Exclude categories from search query
- How can I reduce the number of database query calls for this custom homepage?
- WP_Query not looking at child category
- Using categories & “stickyness” together
- Does the ‘cat’ argument in query_posts fetch posts from subcategories as well as the given ID?
- List posts by category exclude current post
- Category page showing posts from all categories
- Loop with Dynamic Categories
- Excluding posts from a category but only if they’re not in multiple categories
- What could be causing my wp_query pagination to break?
- Display only the latest post from multiple categories
- Custom query with category exclusion and post-meta “whitelist”
- Create a full width responsive header image per page
- Remove child products from woocommerce category page [closed]
- Using same slug name for a page and category
- Remove “Category Archives: title” at the top of a category page [duplicate]
- Exclude most recent posts from specific category in wp_query()
- How to have a static category/author page?
- Listing all posts from current category on page
- I use same slug name for category and page
- Select category in custom query
- Page with the same name of a category
- How to Check if a Child Category is Being Queried
- Show posts of category in a page
- Return category slug / title from category ID
- How to show only one post for each categories of taxonomy of custom post that contains a specific custom field
- Show pages and articles in category search result
- How to create taxonomy values for pages and list them in wp-admin
- How to run WP_Query to retrieve attachments to posts only from a particular category?
- What type of page should i use? static page or category page? and what’s the difference? [closed]
- How to query posts from specific authors and categories using WP_query?
- Exclude category from loop not working
- “NOT ONLY IN” taxonomy query operator?
- Duplicate Category and Page URL loads Category instead of the Page
- How to show in search results posts with a particular tag in a particular category?
- Add a specific category at a specific place to the menu that uses wp_list_pages
- Custom WP_Query for current category (in category.php)?
- Viewing category pages without the word ‘category’ in URL
- in_category() works in single.php but not in page.php?
- List Posts by Category for a Non-Zero, Non-NULL Custom Field Value?
- Categories vs. Page Site Organization
- getting content from main domain to sub-domain using category and WP_Query
- WP_Query() returns null when results exist!
- Ignoring a category in WP_Query still shows the links in next_post_link()?
- How do I automatically put categories and their descriptions on a WP Page?
- 3 Columns, 3 Categories, One Archive, and Pagination
- editing fonts of category links from the_category() funtion
- Five posts from a category in footer
- Is it possible to restrict viewing of category PAGE to logged in users only?
- Post count for category and tag
- Enter a variable in the ‘category_name’ parameter
- Checking for two categories in query_posts
- Hard coded main navigation
- Query Posts Exclude Entire Category
- how to query posts and auto assign category if post title has keyword
- How do I call posts with a certain tag?
- Modify WordPress SQL Query to pull from within a category
- query order by category
- How to make 2 tag feeds show up on 1 page?
- Serve specific “template” page at any URL that ends in its slug
- Search in custom post type AND in pages with category
- Get link which associated with a specific category and tag
- posts_nav_link(); picks up index.php instead of category.php as template
- Give a page priority over a category that has the same name?
- Multiple URL’s based on category for one post
- Filtering out child category posts from parent category archive not working
- category permalinks
- Display custom tags on pages that have a specific page parent
- How to “group” (categorize) the Pages together?
- Multiple Loops on category.php with pagination on last loop
- How to get latest posts from each category in regular order
- Different banner for different section
- Custom category URL rewriting
- Putting a Category of posts under a Page
- change recent posts based on category
- Order by category titles
- Have parent category contain only one post?
- How to remove specific categories from posts?
- How can you change the permalink for pages?
- List posts in alphabetical order
- Should I use “Categories ” or “Pages” for a WordPress Static Site (A non blog site)?
- Category.php loads first before page.php?
- How to insert category list into post creation page, and retrieve chosen categories?
- Randomly load categories with latest post
- How do I query_posts in cat=1 AND not in cat=2
- List all posts in a category with query_post() function
- How do I display something on a particular category page?