rossrobbie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Set a sidebar title’s backgroundThat won’t help.
This category title is the widget.
I need to set a background color to each widget title in the sidebar
and position it depending on the title width.#sidebar h2, .widget h2{ background:#F00; font-family:"Trebuchet MS"; font-size: 13pt; font-style: normal; font-weight: bold; letter-spacing: normal; letter-spacing:0px; cursor:default; margin:0 0 5px 0; }
That code manages the widget titles.
Forum: Fixing WordPress
In reply to: Search problem, pages displayed as resultsI just found this tutorial. Very, very helpful.
By editing search.php and functions.php you’ll exclude pages,
and as search results will only appear posts.Forum: Fixing WordPress
In reply to: Search problem, pages displayed as resultsNope, that doesn’t help.
Forum: Fixing WordPress
In reply to: Search problem, pages displayed as resultsDude, what should I look for in the search.php
Forum: Fixing WordPress
In reply to: Search problem, pages displayed as resultsWhat should I do?
What kinda editing?
For every page in the blog I’m using different template btw.Forum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?Any ideas how this code
<?php foreach((get_the_category()) as $category) { echo '<a href="' . get_category_link( $category->term_id ) . '" >' . $sep . $category->name.'</a> '; $sep = ', '; } ?>
could work for comments?
Forum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?I changed my mind.
The category-comments link below the post are not manually placed there.
It’s used a php script that makes wordpress show them.What if instead of deleting manually the title
we just use another php script that hides the link’s title attribute,
and there will be only the title of the category displaying.Do anybody know about that kind of php script?
Forum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?I removed the “Permanent link to” text,
but these “Comments on” “View all posts in” are still appearing
when mouse hovers the category and comments link bellow the post.They are not in the theme`s source code. I’ve checked everything.
I guess it’s just wrote somewhere in the WordPress’codes.I need a specific code that could disable these titles of the links.
Forum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?Any ideas how to make it work for posts` titles?
Any code to remove the “Permanent link to” stuff.Forum: Fixing WordPress
In reply to: Post thumbnail image in search results pageShould look something like that https://i46.tinypic.com/ezleh3.jpg
Forum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?I already made it by updating the category-template in wp-includes
Thanks anywayForum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?There is a link but it gets me to the wrong page- 404
Forum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?I pasted that, but now there is no category.
The place where the category should appear is empty.Forum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?Dude, there is no title!
I’m using the imagination theme. That doesn’t help :/Forum: Themes and Templates
In reply to: How to make sidebar always as long as contentoh, man, that was a great idea! thanks!