Jump to content
WebFlake

KELSIER

Apprentice
  • Posts

    23
  • Joined

  • Last visited

  • Days Won

    3

Community Answers

  1. KELSIER's post in Behemoth Theme Copyright was marked as the answer   
    Read this post
     
  2. KELSIER's post in show information was marked as the answer   
    Use this instead for administrators only
    {{if \IPS\Member::loggedIn()->isAdmin()}} Posts:= {number="$member->member_posts"} {{endif}}  
  3. KELSIER's post in Post highlighting by group was marked as the answer   
    You can do that like this 
    Add this line to custom.css
    .ipsComment_highlighted:not(.ipsBox_transparent):not(.ipsModerated):not(.ipsComment_selected):not(.ipsComment_popular )[data-membergroup="x"] { background: black; border: 1px solid #fff; }  The 'x' from data-membergroup="x" stands for the group id,  you can copy and modify it for each group.
  4. KELSIER's post in how to remove button "start new topic" from index was marked as the answer   
    Delete in forums/front/index/index the following 
    {{if \IPS\Member::loggedIn()->member_id}} <ul class='ipsToolList ipsToolList_horizontal ipsClearfix ipsPos_right'> <li class='ipsToolList_primaryAction ipsResponsive_hidePhone'> <a class="ipsButton ipsButton_medium ipsButton_important" href="{url="app=forums&module=forums&controller=forums&do=add" seoTemplate="topic_non_forum_add_button"}" data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="select_forum"}'>{lang="start_new_topic"}</a> </li> {template="viewChange" group="global" app="forums" params=""} </ul> {{endif}}  
  5. KELSIER's post in Remove Topic Icon Drop-Shadow was marked as the answer   
    .ipsItemStatus.ipsItemStatus_large .ipsItemStatus.ipsItemStatus_read Edit text-shadow / ta_base.css 
  6. KELSIER's post in Behemoth theme copyright was marked as the answer   
    Edit the ta.library.js and search for 
    ta_c.setAttribute("style","display:inline !important") replace it with 
    ta_c.setAttribute("style","display:none !important")  
  7. KELSIER's post in How do I add these lines? was marked as the answer   
    It's because you have 2 header blocks.
    You have an existing <header> block, add the menu to it.
    Change this
    <div id='ipsLayout_header'> <header id='header'> <div class='ipsLayout_container flex flex-jB'> <div class='flex01 flex11-t'>{template="logo" app="core" group="global" params=""}</div> {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}}<div class='user-links user-links-sep'>{template="userBar" app="core" group="global" params=""}</div>{{endif}} </div> </header> <div class='nav-bar'> <div class='ipsLayout_container flex flex-jB flex-aS'> <div class='flex11'>{template="navBar" app="core" group="global" params=""}</div> <div class='ipsfocus-search'></div> </div> </div> </div> with this
    <div id='ipsLayout_header'> <header id='header'> <div class='ipsLayout_container flex flex-jB'> <div class='flex01 flex11-t'>{template="logo" app="core" group="global" params=""}</div> {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}}<div class='user-links user-links-sep'>{template="userBar" app="core" group="global" params=""}</div>{{endif}} </div> <div class='nav-bar'> <div class='ipsLayout_container flex flex-jB flex-aS'> <div class='flex11'>{template="navBar" app="core" group="global" params=""}</div> <div class='ipsfocus-search'></div> </div> </div> </header> </div>  
  8. KELSIER's post in Gallery Issue was marked as the answer   
    Make sure you didn't reach your server/hosting upload limits. 
    If you have acces to php.ini tweak the following to your needs.
    file_uploads upload_max_filesize max_input_time max_execution_time post_max_size  
  9. KELSIER's post in The separator bar was marked as the answer   
    Search for 
    .cPost .cPost_contentWrap Usually found in forums.css and replace everything with this
    position: relative; border-left: 2px solid #424448; /* change the color and size */ padding: 7px 15px 15px 10px;  
×
×
  • Create New...