erniegarcia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post Count Alignment ProblemAwesome, that fixed it! Thank you so much alchymyth, I really appreciate all of your help.
Forum: Fixing WordPress
In reply to: Post Count Alignment ProblemThis perfectly corrected the issue in Opera 10.63, however there are still some display errors in IE, FireFox, and Chrome.
In FireFox 3.6.13 and Chrome 9, it placed the post count on a new line, complete with a line arrow.
In IE 8 it’s almost totally fixed, however the second line for each widget has too much top line padding [+4px].
Screenshots:
IE8: http://tinyurl.com/6zp4uzv
FireFox: http://tinyurl.com/6l59ca5
Chrome: http://tinyurl.com/6xa5f5rForum: Fixing WordPress
In reply to: Post Count Alignment ProblemHi alchymyth,
A week ago you helped me fix the post count problem for my standard category and archive widget. You suggested I insert the following code below and it corrected the issue.
[Code moderated as per the Forum Rules. Please use the pastebin]
I can’t for the life of me however fix the same post count issue for my AVH Extended Categories Widgets. My coding skills are really weak, so I’m totally stumped as to what step to do next. The author of the wp theme that I’m using suggested I use a string replace function, but I don’t know how to construct/write one of those.
Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionDoes anyone else have any ideas as to how to fix this post count issue?
Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionI entered in all of the coding changes that you suggested.
The line height doesn’t seem to be uniform across the AVH categories. The total line height should be 26px, with a top line padding of 7px. The bottom line padding is correct as is.
I would like to create the FFFFFF color mouse over effect for the AVH widgets, just like the default style of the other categories.
The last issue would be to some how extend the bottom line width, and then expand the clickable area to be the same as the non AVH widgets, which is the whole line space. If possible I would also like to have the AVH post count to be part of the clickable line space, as it is with my archive post counts.
Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionI made the change.
Thus far what is not correct:
[1] The bottom border should match the width of the top border.
[2] The post count color should match the categories font color.
[3] The padding between the categories name and bottom border is off.
[4] The arrows now move when I mouse over them. They should be stationary.
If possible I would like to have the top two AVH category widgets perfectly match the style of all the sidebar widget below them.
Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionI really appreciate your help.
I added the new code. It’s not quite fixed, but definitely closer.
Here is the screenshot you requested:
I’m currently using Opera 10.63, IE8, and FireFox 3.6.13. I’m seeing the exact same thing across all three browsers.
Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionI added your code, please have a look:
My coding skills are really weak, so I’m not sure how to sort out the distorted borders and font alignment.
Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionI’m hoping someone might be able to help me with this.
Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionThought I would check in and see if anyone familiar with AVH Extended Categories might be able to help me with this issue.
Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionThank you for the reply.
I tried out your suggestion but it didn’t seem to work properly. It only partially brought the post counts inline, however it distorted the line height and bottom border width.
2 filter functions are currently running on the site to bring the post counts inline for both archives and the default categories widgets. These filter functions work great, as the theme’s default setup doesn’t seem to allow an inline post count.
add_filter('get_archives_link', 'archive_count_inline'); function archive_count_inline($links) { $links = str_replace('</a> (', ' (', $links); $links = str_replace(')', ')</a>', $links); return $links; }add_filter('wp_list_categories', 'cat_count_inline'); function cat_count_inline($links) { $links = str_replace('</a> (', ' (', $links); $links = str_replace(')', ')</a>', $links); return $links; }Any additional suggestions would be much appreciated.
Forum: Plugins
In reply to: AVH Extended Categories Theme Integration ProblemAny help with this issue would be much appreciated.
Forum: Fixing WordPress
In reply to: Widget Alignment ProblemThought I would check in and see if someone out there might be able to help me with this.
Forum: Fixing WordPress
In reply to: Widget Alignment ProblemI just checked my alignment issue in the newest edition of Google Chrome, and it looks perfect.
So the issue only exists in FireFox and Internet Explorer, but not in Opera or Chrome. Is there a way that I can add a filter function to make the 1px widget alignment adjustment just for IE and Firefox, and not for any other browsers?
My coding skills are not the best, so forgive me if these are basic questions.
Forum: Fixing WordPress
In reply to: Widget Alignment ProblemDepending on your screen resolution, it may be difficult to see as it’s just a 1px misalignment. Unfortunately it’s fairly visible with my screen setting (1280×1024 resolution).
I attempted to add the follow code to style.css, however I can’t seem to get it to work. Any suggestions?
.linkcat-2 a{ margin-top: -1px; }