Forum Replies Created

Viewing 15 replies - 1 through 15 (of 23 total)
  • Thread Starter erniegarcia

    (@erniegarcia)

    Awesome, that fixed it! Thank you so much alchymyth, I really appreciate all of your help.

    Thread Starter erniegarcia

    (@erniegarcia)

    This 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/6xa5f5r

    Thread Starter erniegarcia

    (@erniegarcia)

    Hi 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.

    Thread Starter erniegarcia

    (@erniegarcia)

    Does anyone else have any ideas as to how to fix this post count issue?

    Thread Starter erniegarcia

    (@erniegarcia)

    I 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.

    Thread Starter erniegarcia

    (@erniegarcia)

    I 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.

    Thread Starter erniegarcia

    (@erniegarcia)

    I really appreciate your help.

    I added the new code. It’s not quite fixed, but definitely closer.

    Here is the screenshot you requested:

    http://tinyurl.com/6xyljpg

    I’m currently using Opera 10.63, IE8, and FireFox 3.6.13. I’m seeing the exact same thing across all three browsers.

    Thread Starter erniegarcia

    (@erniegarcia)

    I added your code, please have a look:

    http://tinyurl.com/682k3tc

    My coding skills are really weak, so I’m not sure how to sort out the distorted borders and font alignment.

    Thread Starter erniegarcia

    (@erniegarcia)

    I’m hoping someone might be able to help me with this.

    Thread Starter erniegarcia

    (@erniegarcia)

    Thought I would check in and see if anyone familiar with AVH Extended Categories might be able to help me with this issue.

    Thread Starter erniegarcia

    (@erniegarcia)

    Thank 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.

    Thread Starter erniegarcia

    (@erniegarcia)

    Any help with this issue would be much appreciated.

    Thread Starter erniegarcia

    (@erniegarcia)

    Thought I would check in and see if someone out there might be able to help me with this.

    Thread Starter erniegarcia

    (@erniegarcia)

    I 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.

    Thread Starter erniegarcia

    (@erniegarcia)

    Depending 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;
    }
Viewing 15 replies - 1 through 15 (of 23 total)