Search found 1559 matches

by Mannix_
Fri Mar 22, 2024 11:34 am
Forum: [3.3.x] Styles Support & Discussion
Topic: Changing online status look
Replies: 4
Views: 208

Re: Changing online status look

try this

Code: Select all

.postprofile dt {
    position: relative;
}

.postprofile .icon-online {
    position: absolute;
}
by Mannix_
Thu Mar 21, 2024 8:54 am
Forum: [3.3.x] Styles Support & Discussion
Topic: Forum images
Replies: 8
Views: 489

Re: Forum images

as Mick mentioned there is nothing in vanilla phpbb to limit the size of those images and it looks like all except first one got cut off by something. Can you post a link to your board so we can see what is going on??
by Mannix_
Wed Mar 20, 2024 9:54 am
Forum: [3.3.x] Styles Support & Discussion
Topic: Legend icons phpbb 3.3.11
Replies: 12
Views: 741

Re: Legend icons phpbb 3.3.11

Using group id as a selector is much more reliable since you won't have to adjust anything if you decide to change group color :)
by Mannix_
Tue Mar 19, 2024 1:01 pm
Forum: [3.3.x] Styles Support & Discussion
Topic: Forum images
Replies: 8
Views: 489

Re: Forum images

are all those images the same size ??
by Mannix_
Thu Mar 14, 2024 8:41 am
Forum: [3.3.x] Styles Support & Discussion
Topic: Template changes for style
Replies: 3
Views: 251

Re: Template changes for style

I'm afraid it's not possible to do with just simple template editing :) Best to ask for an extension to be made
by Mannix_
Mon Mar 11, 2024 2:46 pm
Forum: [3.3.x] Styles Support & Discussion
Topic: Background color on index.php - Prosilver
Replies: 10
Views: 426

Re: Background color on index.php - Prosilver

-webkit is just a prefix that is related to all webkit based browsers like chrome etc. you can also run into -moz prefix and that one is related to firefox browser. This is very old code so it may not be needed at this point :)
by Mannix_
Mon Mar 11, 2024 6:55 am
Forum: [3.3.x] Styles Support & Discussion
Topic: Background color on index.php - Prosilver
Replies: 10
Views: 426

Re: Background color on index.php - Prosilver

I think you are thinking about ul.forums
by Mannix_
Fri Mar 08, 2024 6:58 pm
Forum: phpBB Custom Coding
Topic: Change 'by' to 'posted by'
Replies: 7
Views: 554

Re: Change 'by' to 'posted by'

in viewforum_body.html find {L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_topic_author_username_prepend -->{topicrow.TOPIC_AUTHOR_FULL}<!-- EVENT viewforum_body_topic_author_username_append --> &raquo; <time datetime="{topicrow.FIRST_POST_TIME_RFC3339}">{topicrow.FIRST_POST_TIME}</time>...
by Mannix_
Thu Feb 29, 2024 2:02 pm
Forum: Extension Requests
Topic: User post moderation on use of certain BBCode
Replies: 6
Views: 231

Re: User post moderation on use of certain BBCode

warmweer wrote: Thu Feb 29, 2024 1:16 pm what when a post containing an image is quoted: would moderation then still be required.
If you can quote the post. The image was already approved so no moderation required imo ;)
by Mannix_
Wed Feb 21, 2024 6:09 pm
Forum: [3.3.x] Styles Support & Discussion
Topic: separate background color for each forum
Replies: 4
Views: 555

Re: separate background color for each forum

in forumlist_body.html find <li class="row"> and change to <li class="row bg-{forumrow.FORUM_ID}"> then you can use that class to change the background color, something like this in any css file add .bg-1 {background-color: red;} .bg-2 {background-color: green;} Purge the cache i...
by Mannix_
Mon Feb 05, 2024 7:28 pm
Forum: [3.3.x] Styles Support & Discussion
Topic: Forum Legend
Replies: 8
Views: 810

Re: Forum Legend

Sniper_E wrote: Mon Feb 05, 2024 7:25 pm
Mannix_ wrote: Mon Feb 05, 2024 7:18 pmA legend would be all the things below the forum name.
Well hot dog! And all this time I thought that section was the forum description. I'm trying to keep up. :D
Forum description is just a part of it. But i was thinking the same all this time ;)
by Mannix_
Mon Feb 05, 2024 7:18 pm
Forum: [3.3.x] Styles Support & Discussion
Topic: Forum Legend
Replies: 8
Views: 810

Re: Forum Legend

According to a dictionary one of the explanation for a Legend is the words written on or next to a picture, map, coin, etc. that explain what it is about or what the symbols on it mean. Idk if its the right word to use to describe that part of the board but apparently devs think it is. In context of...
by Mannix_
Sun Feb 04, 2024 2:58 pm
Forum: [3.3.x] Support Forum
Topic: 3.3.11
Replies: 14
Views: 988

Re: 3.3.11

You guys are aware that there is polish language pack available for 3.3.11 right??? https://www.phpbb.com/customise/db/translation/polish/
by Mannix_
Sun Feb 04, 2024 10:58 am
Forum: [3.3.x] Styles Support & Discussion
Topic: Forum Legend
Replies: 8
Views: 810

Re: Forum Legend

This is the first time I see someone refer to that bit of information as legend
by Mannix_
Thu Feb 01, 2024 10:03 am
Forum: phpBB Custom Coding
Topic: Removing 'total topics' from board's stats
Replies: 2
Views: 389

Re: Removing 'total topics' from board's stats

index_body.html find and remove {TOTAL_TOPICS} &bull;. Purge cache in ACP after

Go to advanced search