Jump to content

AndreasW

Clients
  • Posts

    20
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

AndreasW's Achievements

  1. I have 17 pages worth of spam accounts to delete and as far as I can tell I have to individually hit the X button one at a time to delete them I know there is a "prune" command available if you do a filter/search on members, but there is no "banned" or "flagged as spammer" option on this filter. The closest thing I guess would be "content count is exactly 0" however we have plenty of proper accounts that haven't posted yet that don't need to be wiped out. Am I missing something obvious or has Invision never implemented a way to do this?
  2. I saw it on a forum I'm a member of but can't find the name to install it on my forum. Anyone recognize it?
  3. Updated the sandbox. That made everything off center including the badges So far the other method is winning still
  4. I made a new default theme, titled it Sandbox, and put your code in its custom.css and it didn't change anything >shrug< https://www.jwfan.com/forums
  5. WOOP nevermind, I just figured it out If anyone else wants to do the same, In Forums/Topics/postContainer, change this: <li data-role='photo' class='cAuthorPane_photo'> {template="userPhoto" app="core" group="global" params="$comment->author(), 'large', $comment->warningRef()"} {{if $comment->author()->modShowBadge()}} <span class="cAuthorPane_badge cAuthorPane_badge--moderator" data-ipsTooltip title="{lang="member_is_moderator" sprintf="$comment->author()->name"}"></span> {{elseif $comment->author()->joinedRecently()}} <span class="cAuthorPane_badge cAuthorPane_badge--new" data-ipsTooltip title="{lang="member_is_new_badge" sprintf="$comment->author()->name"}"></span> {{endif}} </li> to this: <li data-role='photo' class='cAuthorPane_photo'> {{if $comment->author()->pp_main_photo AND $comment->author()->pp_thumb_photo}} <img src="{url="" base=""}/uploads/{$comment->author()->pp_main_photo}"> {{else}} <img src="{$comment->author()->photo}"> {{endif}} {{if $comment->author()->modShowBadge()}} <span class="cAuthorPane_badge cAuthorPane_badge--moderator" data-ipsTooltip title="{lang="member_is_moderator" sprintf="$comment->author()->name"}"></span> {{elseif $comment->author()->joinedRecently()}} <span class="cAuthorPane_badge cAuthorPane_badge--new" data-ipsTooltip title="{lang="member_is_new_badge" sprintf="$comment->author()->name"}"></span> {{endif}} </li> And in custom.css add this: .cAuthorPane_photo img { max-width: 170px; width: auto; }
  6. Hello, forum: http://www.jwfan.com/forums On IPBoard 4.4, we had this in our custom.css that made avatars display bigger in desktop, and this didn't affect mobile .ipsUserPhoto_large img, img.ipsUserPhoto_large, .ipsUserPhoto_large:after { width: 120px; height: 120px; {{if theme.rounded_photos}} border-radius: 45px; {{endif}} } If I put this same code into the custom.css of our (default) theme now that we're on IPBoard 4.5., the avatars look fine on desktop (well, almost fine, the badges for admins are off-center) but it completely breaks the mobile view Does anybody know what CSS I can use to affect desktop avatar size only but leave mobile CSS alone? Maybe some kind of if statement that determines if the parent is "cAuthorPane_info" vs "cAuthorPane_mobile" ?
  7. Does anyone know why our hamburger button is so far to the left, and how to fix it?
  8. I have the desired experience set up in Admin CP: But I know each user can override this if they prefer the other options for whatever reason. I am afraid many are defaulted to one of those other methods since I have no idea how long I've had the Admin CP set up this way How can I sweep through and update everyone?
  9. I have it set up right in Admin CP: But everytime I click on it in the forum, it's always set to 365 days somehow If I change it on that screen it's just temporary, it goes right back to 365 days on a refresh What am I doing wrong?
×
×
  • Create New...