ads1018
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Custom Category Template & Internet ExplorerFigured it out. Had comment tag <!– –> at the top of my php page.
Forum: Themes and Templates
In reply to: Custom Category Template & Internet ExplorerNvrmind. Fixed it. Not sure how lol.
Forum: Themes and Templates
In reply to: Custom Category Template & Internet ExplorerHere’s the link to one of the category pages. Check it out on Explorer compared to Firefox or Safari. https://badideahouse.com/blog/category/devils/
Forum: Fixing WordPress
In reply to: Display caption with the_post_thumbnailThe problem with this solution is that the caption just floats off to the side on its own…it’s not part of the thumbnail. Is there anyway to present the caption directly below the thumbnail image without having to dig into css every time you add one?
Forum: Fixing WordPress
In reply to: the_post_thumbnailUnfortunately, that plugin doesn’t seem to be compatible with wordpress mu and buddypress ??
Forum: Fixing WordPress
In reply to: Uploading MP3, VideoI have no problems uploading images. I’d just like to be able to upload .mp3 and .mov files
Forum: Fixing WordPress
In reply to: Styling Post CategoriesBrilliant. Worked like a charm. Thanks for directing me to those links too. Can’t emphasize enough how much stress you relieved!
Forum: Fixing WordPress
In reply to: Styling Post CategoriesSomething along these lines:
<ul class="post-categories"> <li class="xyz"><a href="https://mysite.com/blog/category/xyz/" title="View all posts in xyz" rel="category tag">xyz</a></li> <li class="abc"><a href="https://mysite.com/blog/category/abc/" title="View all posts in abc" rel="category tag">abc</a></li> </ul>
<ul class="post-categories"> <li class="xyz"><a href="https://mysite.com/blog/category/xyz/" title="View all posts in xyz" rel="category tag">xyz</a></li> <li class="mlv"><a href="https://mysite.com/blog/category/mlv/" title="View all posts in mlv" rel="category tag">mlv</a></li> </ul>
Forum: Fixing WordPress
In reply to: Styling Post CategoriesThanks, but this still doesn’t generate class id’s for each category in the post.
Forum: Fixing WordPress
In reply to: Styling Post CategoriesAnyone have any clue?
Forum: Fixing WordPress
In reply to: Styling Post CategoriesThere’s not much written about the_category tag. Seems like a no brainer to be able to style multiple category links in a post but no one seems to be able to do it.
Forum: Fixing WordPress
In reply to: Styling Post CategoriesI’m using the_category tag within the loop. Is there any other way?
Forum: Fixing WordPress
In reply to: Styling categories classesUnfortunately, I haven’t taught myself php yet. I only get the basics. Would you mind showing me how it would look after I loop through the $categories array?
Forum: Fixing WordPress
In reply to: Styling categories classesAnyone have a clue?
Forum: Fixing WordPress
In reply to: Styling categories classesHere’s what the html output looks like:
<div class="post-255 post sticky hentry category-nets category-yankees" class="post" id="post-255"> <a href="https://nysportsmill.mu/blog/category/nets/" title="View all posts in nets" rel="category tag">nets</a>, <a href="https://nysportsmill.mu/blog/category/yankees/" title="View all posts in yankees" rel="category tag">yankees</a>
Anyone have any clue how to target/style those links?