Jump to content

Leaderboard

  1. Tony

    Tony

    Administrator


    • Points

      2

    • Posts

      5,256


  2. titcrunch

    titcrunch

    Community Regular


    • Points

      1

    • Posts

      736


  3. Salazar

    Salazar

    Apprentice


    • Points

      1

    • Posts

      49


  4. Luca Munich

    Luca Munich

    Enthusiast


    • Points

      1

    • Posts

      235


Popular Content

Showing content with the highest reputation on 03/12/2020 in all areas

  1. A sign in the profile indicating that the user has not confirmed his registration The tablet will appear if the user after registration has not confirmed his Email address open the list of styles HTML and CSS editing CSS tab> custom.css add to the very bottom /** Warning Email in Profile **/ .warning_Email { color: #ffffff; font-size: 26px; padding-top: 7px; padding-left: 1px; width: 40px; height: 40px; border-radius: 38px; position: relative; display: inline-block; text-align: center; background-color: #9e1419; } .WEmail_bottom { padding-top: 5px; } .WEmail_Text0 { padding: 10px; margin-bottom: 5px; background-color: rgb(204, 83, 83); color: #202225; } .WEmail_Text { font-size: 12px; } /** Warning Email in Profile the end **/ open templates we find; core> front> profile> profile find the line; <div class = 'ipsPad'> about 8-8 line add below; {{if $member->members_bitoptions['validating']}} <div class='WEmail_Text0 WEmail_bottom'> <div class="ipsGrid"> <div class="ipsGrid_span2 ipsType_center"> <span class='warning_Email'> <i class="fa fa-envelope-o"></i> </span> </div> <div class="ipsGrid_span10"> <p class='ipsType_reset WEmail_Text'> <strong> {$member->validatingDescription()} </strong> </p> <p class='ipsType_reset ipsType_small'>Будьте бдительны возможно это спамер!</p> </div> </div> </div> {{endif}} That's all, if you want to edit for yourself.
    1 point
  2. 1 point
  3. It was removed because you're inciting panic for an isolated issue regarding trivial rate-limiting. Smaller communities are entirely unaffected by Discord's changes and even larger communities, dependent upon their configuration, are at no risk. SoftwareFactory recommended an immediate upgrade as a precaution — and as an obvious fix for those affected — not because anyone was in imminent existential danger as you seemed to suggest. A simple heads-up topic would have sufficed, not a review shitting on a fully-functional application that may or may not have a minor defect for an isolated number of end-users. Furthermore, there has been no "suspension" or "ban" for rate-limiting issues. That's not how Discord handles these situations. You turned a superficial flaw with the application into the fucking Coronavirus.
    1 point
  4. It's work for all ipb version and also in all site web add in custom.css : body { cursor: url(http://yourdomaine.com/yourcursor.cur),default; } and : a:hover { cursor: url(http://yourdomaine.com/yourcursor.cur),default; }found a custom cursor here : http://www.rw-designer.com/cursor-library or create your here : http://www.cursor.cc/ and add it in your server in ftp and change 2 link in code become. You can see a exemple in live in http://titcrea.com (i use only the first code in body for keep the hand in link)
    1 point
  5. Increase cover photo height Go to: ACP > Customization > Themes > YourTheme (Edit HTML and CSS) > CSS > core > front > styles > profile.css FIND: #elProfileHeader { padding-bottom: 0; padding-top: 125px; position: relative; height: 200px; background-size: cover; background-repeat: no-repeat; background-position: 50%; box-shadow: 0px 0px 30px rgba(0,0,0,0.4) inset; text-shadow: 0px 0px 4px rgba(0,0,0,0.5); font-size: 16px; {prefix="transition" value="all 0.3s ease-in-out"} } REPLACE WITH: #elProfileHeader { padding-bottom: 0; padding-top: 235px; position: relative; height: 310px; background-size: cover; background-repeat: no-repeat; background-position: 50%; box-shadow: 0px 0px 30px rgba(0,0,0,0.4) inset; text-shadow: 0px 0px 4px rgba(0,0,0,0.5); font-size: 16px; {prefix="transition" value="all 0.3s ease-in-out"} } NOTE: If you change height: 310px, be aware that you will have to change padding-top as well. BEFORE AFTER
    1 point
  6. First of all, choose the theme you want to modify Click on "Edit HTML and CSS" Go to "Templates > core > front > global" and search for template "footer" Search for: {{if \IPS\Settings::i()->privacy_type != "none"}} <li><a href='{{if \IPS\Settings::i()->privacy_type == "internal"}}{url="app=core&module=system&controller=privacy" seoTemplate="privacy"}{{else}}{setting="privacy_link"}{{endif}}'>{lang="privacy"}</a></li> {{endif}} And replace with: {{if \IPS\Settings::i()->privacy_type != "none"}} <li><a href='{{if \IPS\Settings::i()->privacy_type == "internal"}}{url="app=core&module=system&controller=privacy" seoTemplate="privacy"}{{else}}{setting="privacy_link"}{{endif}}' data-ipsDialog>{lang="privacy"}</a></li> {{endif}} Then, add this code below: {{if \IPS\Settings::i()->gl_type != "none"}} <li><a href='{{if \IPS\Settings::i()->gl_type == "internal"}}{url="app=core&module=system&controller=guidelines" seoTemplate="guidelines"}{{else}}{setting="gl_link"}{{endif}}' data-ipsdialog data-ipsdialog-title="{lang="guidelines"}">{lang="guidelines"}</a></li> {{endif}} Okay, now your rules / privacy policy will appear as a popup. To remove the popup and let ordinary, just remove the "data-ipsDialog" of your code.
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...