Mannix_ wrote: Thu May 16, 2024 2:27 pm First thing what extension did you try?? Maybe they just need some adjustments to make it work.
Second is that a paid or free style?? If it's free please provide a link so we can play with it
No longer awaibleMannix_ wrote: Thu May 16, 2024 2:43 pm Well if it's paid you should ask the author for the help. He know his work best
Code: Select all
/* This is set up for all the icons*/
.forum_cat_icon {
height: 40px;
width: 40px;
line-height: 40px !important;
margin: 0 32px 0 14px !important;
flex-shrink: 0;
background-size: 32px;
background-repeat: no-repeat;
background-position: center;
}
/* This will hide the FA icons */
.forum_cat_icon i {
display: none;
}
/* This targets specific forum with it's id and assigns the icon */
.nex-59 .forum_cat_icon {
background-image: url(https://www.phpbb.com/community/styles/prosilver/theme/images/sticky_read_mine.gif);
}
And if I enter a category that has several subforums, I can't put a default icon for them as read forum, new forum, forum redirect, so if I disable FA icons it stays like this see picture. Don't stay and put it in all the subforums, do you understand what I'm saying?Mannix_ wrote: Thu May 16, 2024 6:25 pm Try thisYou gonna need to repeat the last selector for all the icons just like it's done now for the FA icons at the end of the nex-style.cssCode: Select all
/* This is set up for all the icons*/ .forum_cat_icon { height: 40px; width: 40px; line-height: 40px !important; margin: 0 32px 0 14px !important; flex-shrink: 0; background-size: 32px; background-repeat: no-repeat; background-position: center; } /* This will hide the FA icons */ .forum_cat_icon i { display: none; } /* This targets specific forum with it's id and assigns the icon */ .nex-59 .forum_cat_icon { background-image: url(https://www.phpbb.com/community/styles/prosilver/theme/images/sticky_read_mine.gif); }
Code: Select all
.nextr-8 [class*="_read"] .forum_cat_icon {background-image:ulr(image_path)}
.nextr-8 [class*="_unread"] .forum_cat_icon {background-image:ulr(image_path)}
Bro where i add the image link?Mannix_ wrote: Fri May 17, 2024 9:38 am if you want to use the read / unread state you would need something like this
Code: Select all
.nextr-8 [class*="_read"] .forum_cat_icon {background-image:ulr(image_path)} .nextr-8 [class*="_unread"] .forum_cat_icon {background-image:ulr(image_path)}
Thanks bro i will try when im home after 19 a clock. Can You take a look here too viewtopic.php?t=2653360Mannix_ wrote: Fri May 17, 2024 10:12 am um replace the image_path placeholder. I thought it was obvious enough sorry
Not working bro for exemple acces this categori to se no icon to showMannix_ wrote: Fri May 17, 2024 9:38 am if you want to use the read / unread state you would need something like this
Code: Select all
.nextr-8 [class*="_read"] .forum_cat_icon {background-image:ulr(image_path)} .nextr-8 [class*="_unread"] .forum_cat_icon {background-image:ulr(image_path)}
Code: Select all
.nex-21 [class*="_read"] .forum_cat_icon {background-image:url(image_path)}
.nex-21 [class*="_unread"] .forum_cat_icon {background-image:url(image_path)}