Jump to content

Ehren

Invision Community Team
  • Posts

    255
  • Joined

  • Last visited

  • Days Won

    22

Reputation Activity

  1. Thanks
    Ehren got a reaction from kmk in Add Message header   
    Add the following to your custom.css file:
    .cContentMessage__header > .ipsFlex-fw\:wrap{ flex-wrap: nowrap; }  
  2. Thanks
    Ehren got a reaction from kmk in Subscriptions widget   
    You'd need to remove the vertical padding and use a min-height instead while also using flexbox to vertically center the text. Personally, I'd keep it as-is since it's technically working as intended.
  3. Thanks
    Ehren got a reaction from TheSaint in Big Blank Area   
    Hello,
    This is caused by an incorrect suffix on your group name. The prefix is:
    <strong><font color="#cc0000"> And the suffix is:
    </font><strong>  
    The font tag is deprecated and the strong tag is not closed properly. You should change the prefix to:
    <strong style='color:#cc0000'> And change the suffix to:
    </strong>  
  4. Like
    Ehren got a reaction from Ibai in Big Blank Area   
    Hello,
    This is caused by an incorrect suffix on your group name. The prefix is:
    <strong><font color="#cc0000"> And the suffix is:
    </font><strong>  
    The font tag is deprecated and the strong tag is not closed properly. You should change the prefix to:
    <strong style='color:#cc0000'> And change the suffix to:
    </strong>  
  5. Like
    Ehren got a reaction from Jim M in Big Blank Area   
    Hello,
    This is caused by an incorrect suffix on your group name. The prefix is:
    <strong><font color="#cc0000"> And the suffix is:
    </font><strong>  
    The font tag is deprecated and the strong tag is not closed properly. You should change the prefix to:
    <strong style='color:#cc0000'> And change the suffix to:
    </strong>  
  6. Like
    Ehren got a reaction from Meddysong in Big Blank Area   
    Hello,
    This is caused by an incorrect suffix on your group name. The prefix is:
    <strong><font color="#cc0000"> And the suffix is:
    </font><strong>  
    The font tag is deprecated and the strong tag is not closed properly. You should change the prefix to:
    <strong style='color:#cc0000'> And change the suffix to:
    </strong>  
  7. Like
    Ehren got a reaction from Davyc in Big Blank Area   
    Hello,
    This is caused by an incorrect suffix on your group name. The prefix is:
    <strong><font color="#cc0000"> And the suffix is:
    </font><strong>  
    The font tag is deprecated and the strong tag is not closed properly. You should change the prefix to:
    <strong style='color:#cc0000'> And change the suffix to:
    </strong>  
  8. Like
    Ehren got a reaction from SeNioR- in Big Blank Area   
    Hello,
    This is caused by an incorrect suffix on your group name. The prefix is:
    <strong><font color="#cc0000"> And the suffix is:
    </font><strong>  
    The font tag is deprecated and the strong tag is not closed properly. You should change the prefix to:
    <strong style='color:#cc0000'> And change the suffix to:
    </strong>  
  9. Thanks
    Ehren got a reaction from kmk in Create New Content button   
    I can't think of a solution which uses css alone. You'd need to use conditionals in the HTML to hide it.
  10. Like
    Ehren reacted to kmk in Grid card auto adjustable   
    Fortunately I just have one row of 3 forums... 🐼 
  11. Thanks
    Ehren got a reaction from kmk in Grid card auto adjustable   
    Hello,
    It depends what solution you're after. If you only have 2 forums in a grid layout, there will likely be a few empty cells after those. To make the cells occupy the entire width, add this to custom.css
    .ipsForumGrid { grid-template-columns: repeat(auto-fit, minmax(var(--ipsForumGrid--width), 1fr)); }  
    If you have multiple rows of forums (say 3 on one row and 2 on another), the above code will still leave an empty cell on the right side of the bottom row. To fix this (so the bottom cells occupy the entire row), you'd need to recode the grid using flexbox.
  12. Thanks
    Ehren got a reaction from kmk in Hide Start new topic button in support forum   
    I imagine you could just do this with Forum/Group permissions.. Restrict all groups from posting new topics in that forum and then make a group which has permission, and add yourself to that group.
  13. Like
    Ehren got a reaction from opentype in Hide Start new topic button in support forum   
    I imagine you could just do this with Forum/Group permissions.. Restrict all groups from posting new topics in that forum and then make a group which has permission, and add yourself to that group.
  14. Agree
    Ehren got a reaction from Davyc in Hide Start new topic button in support forum   
    I imagine you could just do this with Forum/Group permissions.. Restrict all groups from posting new topics in that forum and then make a group which has permission, and add yourself to that group.
  15. Thanks
    Ehren got a reaction from kmk in Elements By and In   
    To remove it from your topic feed widget, add this to custom.css
    [data-blockid^="app_forums_topicFeed_"] .ipsDataItem_title + .ipsType_light{ display: none; } If you only want to display the time, use this:
    [data-blockid^="app_forums_topicFeed_"] .ipsDataItem_title + .ipsType_light{ font-size: 0; } [data-blockid^="app_forums_topicFeed_"] .ipsDataItem_title + .ipsType_light time{ font-size: 13px; } Wrap those codes with media queries if you only want to target mobiles.
  16. Like
    Ehren got a reaction from Unienc in Elements By and In   
    To remove that entire row, add this to custom.css:
    @media (max-width: 979px){ .cForumFluidTable .ipsDataItem_meta{ display: none; } } If you want to remove everything except the time, use this instead:
    @media (max-width: 979px){ .cForumFluidTable .ipsDataItem_meta{ font-size: 0; } .cForumFluidTable .ipsDataItem_meta time{ font-size: 13px; } }  
  17. Like
    Ehren got a reaction from Unienc in Elements By and In   
    Yeah, the code is for fluid view only. If you can post your URL, I'll take a look at your existing setup.
  18. Like
    Ehren got a reaction from Unienc in Elements By and In   
    To remove it from your topic feed widget, add this to custom.css
    [data-blockid^="app_forums_topicFeed_"] .ipsDataItem_title + .ipsType_light{ display: none; } If you only want to display the time, use this:
    [data-blockid^="app_forums_topicFeed_"] .ipsDataItem_title + .ipsType_light{ font-size: 0; } [data-blockid^="app_forums_topicFeed_"] .ipsDataItem_title + .ipsType_light time{ font-size: 13px; } Wrap those codes with media queries if you only want to target mobiles.
  19. Thanks
    Ehren got a reaction from Insydius in Forums, subforums   
    This will remove subforums in grid view:
    .cForumGrid .ipsType_minorHeading, .cForumGrid .ipsType_minorHeading + .ipsList_inline{ display: none; }  
  20. Thanks
    Ehren got a reaction from Gauravk in Hoover over menu text color   
    Hello,
    It looks like you're already using custom.css to change the background of the active link. Simply add your new color value to that and it'll work.
    For example, change this:
    .ipsNavBar_primary > ul > li.ipsNavBar_active > a { background: #f5f5f5; } To this:
    .ipsNavBar_primary > ul > li.ipsNavBar_active > a { background: #f5f5f5; color: #111; }  
  21. Like
    Ehren reacted to craigf136 in Create Menu still needs a re-work   
    It's a nice feature of @Ehrenthemes tbh but statistics on it aren't available. So hard to tell if it's a game changer unless I'm missing something?
     

  22. Like
    Ehren reacted to Jordan Miller in Create Menu still needs a re-work   
    Wellllll lol @Morrigan does 🤠
    I would be interested to see some stats on how often the Create button is used. 
    On my own community, there's a "start new topic" button always visible in our footer navigation (bottom right), which I think has been a game changer. I know it's a little bit of a tangent, but worth mentioning :] 
    Our header nav also has a + sign that acts as our create button btw but I think people are more likely to use the footer one.
     

     
    Btw this theme is Chameleon Pro 
  23. Thanks
    Ehren got a reaction from th3#afk in Members Shop ( Support Topic )   
    No worries, add this to custom.css
    .ipsFieldRow_label[for="elInput_ms_referrer_setting"]{ display: block !important; } I'm guessing the default value for that class is block, but if that code doesn't work, just let us know.
  24. Haha
    Ehren reacted to SC36DC in Members Shop ( Support Topic )   
    That absolutely worked!!!!! I can not thank you enough. I felt bad asking for your help, I was just hoping it would be something you could figure out the correct css for this in a matter of seconds. The 'Referrer' title is now showing. It was set to "display:none", btw.

    Thanks again @Ehren The true CSS HERO!
  25. Thanks
    Ehren got a reaction from SC36DC in Members Shop ( Support Topic )   
    No worries, add this to custom.css
    .ipsFieldRow_label[for="elInput_ms_referrer_setting"]{ display: block !important; } I'm guessing the default value for that class is block, but if that code doesn't work, just let us know.
×
×
  • Create New...