link to an example on your site please
your themes style sheet
http://www.rockin-wildcat.com/rwc/wp-content/themes/blog-diary-pro/style.css
has line 2201 with
.reply a {
display: inline-block;
border-radius: 0;
color: #fff;
position: relative;
font-size: 16px;
background-color: #46c4f3;
padding: 5px 20px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
the background-color: #46c4f3; element is causing the box issue, and the font-size: 16px; the text issue
I’d suggest you add these to the custom css area of your theme
.reply a {
font-size: 12px !important;
background-color: none !important;
}
you can adjust the font-size to whatever value you wish
Thank you for the quick reply. π
It worked for the font size but not for the background color.
Funny additional fact: The name beneath the avatar is shown in two rows instead of one. Hmmm …
Any further ideas?
oops sorry the value should be transparent
so
background-color: transparent !important;
and padding in the original code is causing the name issue
so
padding: 5px 20px;
makes it wrap
add
padding : none !important ;
so you end up with
.reply a {
font-size: 12px !important;
background-color: transparent !important;
padding : none !important ;
}
We’re getting near to it! π
Background color is away … Yess! But the name is still shown in two lines.
Problem solved: Changed “none” to “0px” and now it works.
Thanx a lot!
great – glad you are fixed
Oh … one last question … if you have a look at my site again, please.
Between the opening post and the first reply there is no “space line” between these two. Between the first and the second and the third and the fourth … reply there is always a “space line”. Is this a wanted feature or can I handle it either one way or another?
Not sure what your theme is trying to do here, so sorry not one I can fix
Oh my … itβs not coming to an end.
Please have a look at this mobile screenshot:
The avatar is at the wrong position. Not in the opening post but in all of the replies. Can you help?
These are all issues with your theme, not bbpress.
However in the spirit of helpfulness, I’ll do this last one, but after that you need to refer to your theme’s support channels.
So the best I can do without spending considerable time is :
@media only screen and (max-width: 480px) {
#bbpress-forums div.bbp-reply-author img.avatar {
position: relative !important ;
}
#bbpress-forums .bbp-body div.bbp-reply-author {
padding-left: 0px !important;
}
Which puts it on then left, but is not perfect
Man, you’re awesome!! Thank you sooo much for your help.
The thing is I have no clue if a problem is made by the theme or the plugin. Thus I’m very happy that you could help! π
Hi Robin
I have one more question regarding the font size of the quotes in the forum.
As one can see the font size is way too big for the quotes and I have no clue why: Screenshot.
Would be great if you could tell me how to fix this.
Thank you and best regards
BJ_Bundy
need a link to a live example
just put this in your theme’s custom css area
blockquote {
font-size: 12px;
}
and change the size to whatever you want
Thank you for your quick reply. Unfortunately it does not work. π
ok, put this is in the custom css part of the bbp style pack plugin
blockquote {
font-size: 12px !important;
}
That worked!!! Thank you soo much and have a great weekend!!