Jump to content

Yuu

Snow
  • Posts

    422
  • Joined

  • Last visited

  • Days Won

    23

Everything posted by Yuu

  1. That would be #content. If you wanna change something, just inspect element it and find the name of the class or ID and look for it in the CSS.
  2. ACP -> Look & Feel -> Your Skin -> CSS -> ipb_styles.css If you want to change the nav bar background, look for #primary_nav. Most of the CSS you're going to want to change is inside that CSS file.
  3. Yuu

    Cursor Selection

    Version 1.0.0

    64 downloads

    This simple hook allows you to change the highlight color when you highlight something on your screen.
  4. Tried it out on my board to see if it actually worked, doesn't seem like it does.. And the CSS messes up the first maintitle. I'd post a screenshot, but I deleted everything straight after testing it out.
  5. For those of you who are saying that it isn't working for you, try this tutorial:
  6. I was originally going to make a hook for this, and I got quite far with it too. But, I ran into a few problems and just couldn't get it to work. So I'm making a tutorial for it. Please note: This was done on the default IPB skin. This may be different for you, depending on the skin you're using. 1) Go to your ACP -> Look & Feel -> Your Skin -> globalTemplate. Find this: {parse template="includeJS" group="global" params="$jsModules"} {parse template="includeFeeds" group="global" params="$documentHeadItems"} {parse template="includeRTL" group="global" params=""} {parse template="includeVars" group="global" params="$header_items"} Add this code above it: <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'></script><script type='text/javascript' src="{style_images_url}/boardwidth.js"></script> 2) Go to your ACP -> Look & Feel -> Your Skin -> CSS -> ipb_styles.css. Find this: #content, .main_width { margin: 0 auto; /* Uncomment for fixed */ /*width: 980px;*/ /* Fluid */ width: 87% !important; min-width: 960px;} Change it to this: #content, .main_width { margin: 0 auto; /* Uncomment for fixed */ width: 980px; /* Fluid */ /*width: 87% !important;*/ min-width: 960px;} And save. 3) Go back to your globalTemplate and find this: <if test="showhomeurl:|:$this->settings['home_url'] AND $this->settings['home_name']"> Add this code above it: <li class='right widthSwitch'><a href="#">Change Width</a></li> Note: You can place a link for this anywhere you want, I'm just using this location for tutorial purposes. 4) Now, you're going to code and paste the following code into Notepad or anything you prefer, and save it as "boardwidth.js". Here is the code: Then go to your FTP -> public_html -> public -> style_images -> (Your skin name). Then upload the boardwidth.js file in that folder. And you're done! A smooth board width changer, made with jQuery. This saves a cookie in your web browser, so each time you visit, it will be the same as the last time you visited ( until you clear your cookies ). Remember that the instructions may be a bit different depending on what skin you're using. If you need help adding this to your board, just leave me a PM and I will reply whenever I read it.
  7. ACP > System > System Settings > System (tab) > Security & Privacy. Find this and set it to 'Yes':
  8. Well, that last post of mine was pretty much wrong... lol. Don't use that if you're planning on doing this too. But I PM'd Angels with the correct code/placement for it I believe, just waiting for a reply.
  9. Sorry for the long reply... For admins, that would be correct.ACP > Look & Feel > Your Skin > Topic View > post Find this: <div class='post_body'> For Admins only, add this directly below this: <if test="showacplink:|:$this->memberData['g_access_cp'] AND !$this->settings['security_remove_acp_link']"><div class="post_body_admin"> Then find this: <if test="repButtonsLike:|: ! $topic['_isArchived']"> {parse template="repButtons" group="global_other" params="$post['author'], array_merge( array( 'primaryId' => $post['post']['pid'], 'domLikeStripId' => 'like_post_' . $post['post']['pid'], 'domCountId' => 'rep_post_' . $post['post']['pid'], 'app' => 'forums', 'type' => 'pid', 'likeFormatted' => $post['post']['like']['formatted'] ), $post['post'] )"} </if> And add this below: </div></if> Result: If you want it to display for Moderators AND Admins, the <if> statement would be: <if test="accessreports:|:$this->memberData['is_mod'] OR !empty($this->memberData['access_report_center']) || ($this->memberData['g_access_cp'] AND !$this->settings['security_remove_acp_link'])"> And for just Moderators, I think the <if> statement would be: <if test="accessreports:|:$this->memberData['is_mod'] OR !empty($this->memberData['access_report_center']) "> (haven't test, might be wrong.) If you want it to display it for a certain group, use this: <php>$groups = array(1, 2, 3, 5);</php> Then go to ACP > Members > Member Groups. Look at the left side for the ID number for each group. and replace them with the ID's for the groups you want. Then you would use this <if> statement: <if test="in_array($this->memberData['member_group_id'], $groups)"><div class="your_class_here"> If you need help, PM me and I'll try to help you with getting your results.
  10. It needs to be approved though, but just visit that link in an hour or so.
  11. Version 2.0.0

    108 downloads

    This mod adds the ability to send an automatic PM to your members when an admin edits their primary group from the ACP. [b]Features[/b] [list] [*]No file edits, coded as an hook! [*]Easily enable/disable the hook from the Admin CP [*]Ability to specify always the same account to send the PMs or use the account of the admin that edited the group [*]Ability to exclude certain groups by default from receiving a PM (useful for the banned group) [*]Ability to setup a custom PM subject and message from the ACP with some quick tags (member name and new group name) [*]New options in the ACP near the dropdown of the primary group when editing a member to not send a PM to individual accounts [*]The hook itself makes use of the MemberSync option so every time the group changes a PM is sent [/list]
  12. PM on Group Change. http://community.invisionpower.com/files/file/4629-pm-on-group-change/ I'll upload it in a sec.
  13. Demo of the final result: http://imsanctuary.info/jq/scroll/ ACP > Look & Feel > Your Skin > globalTemplate Find this: {parse template="includeJS" group="global" params="$jsModules"} {parse template="includeFeeds" group="global" params="$documentHeadItems"} {parse template="includeRTL" group="global" params=""} {parse template="includeVars" group="global" params="$header_items"} Add this code above the one you just found: <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'></script><script type='text/javascript'>jQuery.noConflict();jQuery(document).ready(function($){ // Smooth scroll to top $('a[href=#top], a[href=#ipboard_body]').click(function(){ $('html, body').animate({scrollTop:0}, 400); // Replace 400 with whatever number you want return false; });});</script> And you're done! With only a few lines of code.
  14. Sexy desktop you have there STAR. For some reason, I honestly really love this wallpaper. I use it for my phone, laptop, and WebFlake profile background.
  15. Screen capped this a few days ago, but it hasn't changed since.
  16. If I'm not mistaken, this code should suite you just fine. <if test="accessreports:|:$this->memberData['is_mod'] OR !empty($this->memberData['access_report_center']) || ($this->memberData['g_access_cp'] AND !$this->settings['security_remove_acp_link'])"> YOUR CODE GOES HERE. </if>
  17. Even though you say it's not the Curve White skin, the styles are pretty much all exactly the same. Colors, icons, breadcrumb, branding, etc. And then the Header Bar is just like WF's.
  18. http://community.invisionpower.com/files/file/5466-raw33-most-viewed-topics/ I tried uploading it, but I kept getting an error even though I was doing it correctly, so I just stopped trying.. EDIT: Never mind, it went through apparently. Here ya go, .
  19. Version 1.0.0

    210 downloads

    This hook will add a list on the side showing most viewed topics on your board. Fetaures: - enable/disable hook, - choose which groups can see this list, - choose how many topics to show,
  20. I'm assuming the What's Happening? sidebar is custom made (probably by Phun or Para). Every site that has custom hooks/apps/skins wants to keep them custom and exclusive, so I wouldn't think that they would be releasing it. :P The sidebar forum stats isn't a hook, it was just some HTML/CSS edits.
  21. Yuu

    Driptone (Rip)

    73 downloads

    The driptone.com template, ripped.
  22. In your CSS, find this: /* LAYOUT */#content, .main_width { margin: 0 auto; /* Uncomment for fixed */ /*width: 980px;*/ /* Fluid */ width: 87% !important; min-width: 960px;} Replace with this: /* LAYOUT */.main_width { margin: 0 auto; /* Uncomment for fixed */ /*width: 980px;*/ /* Fluid */ width: 87% !important; min-width: 960px;}#content { margin: 0 auto; width: 65%; min-width: 960px;} Change the width: 65% to whatever you want it to be.
  23. It says that for everyone. It displays it as Warning Points: {Your number of warnings here}It just kinda stands out a bit from all the other things in the UIP.
  24. ACP > Look & Feel > Your Skin > CSS > ipb_styles.css Look for: .setRoundedAvatars.ipsUserPhoto Change the border-radius from 100px to 0px.
×
×
  • Create New...