Jump to content

Leaderboard

  1. Tony

    Tony

    Administrator


    • Points

      7

    • Posts

      5,256


  2. Kingy

    Kingy

    Retired Staff


    • Points

      2

    • Posts

      1,134


  3. evitaerCi

    evitaerCi

    Collaborator


    • Points

      2

    • Posts

      290


  4. Nervodx

    Nervodx

    Contributor


    • Points

      2

    • Posts

      150


Popular Content

Showing content with the highest reputation on 07/11/2015 in all areas

  1. Version 3.4.8

    2,300 downloads

    Forum software for thriving discussions. IP. Board is the leading solution for creating an engaging discussion forum on the web. Trusted by thousands of forums, large and small. PROPER NOTES: We have detected problem in: admin/applications/members/extensions/enhancements/mandrill.php This is now corrected. Credits: ECHO
    2 points
  2. Version 1.0.0

    272 downloads

    Easy Menu Easy Menu is a IPS4 plugin which let you modify main navigation easily. it supports external links as well as internal links. Features Extremely simple to use.Support external linksAuto application linkSubmenu supportPermission optionFork on Github
    1 point
  3. On hostinger there is a mod security rule conflicting with theme and add-on installationinstallation. Add this to your .htaccess <IfModule mod_security2.c> SecRuleRemoveById 340009 </IfModule>
    1 point
  4. Go to ACP -> Themes and the select Manage Resources on the theme you're editing. Upload your background image there and it'll give you a template tag to use. Then visit ACP -> Themes -> Edit HTML & CSS -> CSS -> core -> front -> custom -> custom.css body { background: url({resource="bgimage.jpg" app="cms" location="front"}) no-repeat center top scroll #000; }Change the template tag to the one the theme gives you. Change #000 to the background color you'd like. You can also edit global.css as well, but if you're not creating your own framework based off of the default theme, it's best to just override things in custom.css so you'll have smoother theme upgrades without having to redo your work.
    1 point
  5. Most webmasters and bloggers put a great deal of hard work and creativity into their website or blog. Earning money through online advertising is an effective way of covering costs for small sites and earning an income from larger or popular sites. If you want to earn revenue from a website or blog, Google AdSense is the largest of several online advertising networks that will pay you each time a site visitor clicks an advertisement on your Web pages. Before signing up to monetize your site, weigh the pros and cons of Google AdSense and the impact of running online advertising on your website or blog. RevenueThe main advantage of using Google AdSense is that it provides revenue for your website or blog. The level of income you might receive depends on a number of factors, including how much the advertiser is willing to pay for each click and the popularity of your website. Advertisers will pay far more for a click on competitive keywords; likewise, websites with a good track record of turning visitors into clicks tend to attract a premium. Google AdSense pays its website publishers monthly, provided the number of clicks reaches a minimum threshold of $100. One disadvantage of Google AdSense is that the owner of a small website may have to wait some time to reach the payout threshold. ContentThe content of any website or blog is the major element that attracts visitors and determines search engine ranking position. Using Google AdSense or other online advertising networks will reduce the amount of space that you have available for content, and some visitors may not like this. One advantage of using Google AdSense is that it automatically provides contextual advertisements that fit the subject matter of your website. Many webmasters believe this adds value to the site and actually encourages visitors. Google AdSense also serves ads in a range of sizes so you can minimize the impact of lost content space by using only small display ads on your pages. DesignThe look and feel of a website or blog is also important to visitors, particularly when the design aids easy navigation through the site's content. The disadvantage of using Google AdSense is that the ads can reduce the design appeal of the site. Garish colors and large, unattractive advertisements can put off visitors and reduce website traffic. On the plus side, Google AdSense offers highly customizable ads that can blend or attractively contrast with the design of your site. Users can change the color of advertising text, backgrounds and border as well as text size and the shape of advertising boxes. Skilled webmasters and bloggers can tweak Google AdSense advertisements to complement site design. StatisticsOne benefit of Google AdSense is that the system provides highly detailed statistics on website visitors and advertising revenues. AdSense publishers can log in to a secure account portal to access a wealth of visitor and revenue statistics including data on ad click numbers, revenue per click and total revenue, page popularity and even the popularity of individual ads. Webmasters can use this information to tweak page layout and boost revenue. The Google AdSense portal also offers security features, such as the ability to block certain advertisers.
    1 point
  6. Version 1.0.0

    79 downloads

    Show stats with only two tabs: Recent Posts and newest topics. Using ajax update (automatically or manually mode custom). Use the widget to display (currently not supported by the lazy sidebar).
    1 point
  7. Hey there Webflakians, Today I spent hours trying to figure out how to manually edit the Font, Size, and Text Color dropdown menus that is included with IPB's ckeditor. I have tried searching the world wide web, but after some browsing I couldn't find a single tutorial. So I decided to make one through trial and error. To make it a little easier to understand why someone would want to do this I will be using the hook Editor Themes V1.0.0 by IPS Themes. It's available for download here: After installing the hook I setup it up like so With the hook active and setup the dropdown menus looked horribly ugly and blocky The Text Color dropdown stood out to me like a sore thumb Also if you want to use for example the paste option, it's practically impossible to see without having your nose 2 inches from your monitor Lets start by making our paste tool easy to see and practical. Under Look & Feel find and open ipb_ckeditor.css Once you have your ipb_ckeditor.css file open, search for this .cke_skin_ips .cke_dialog_contents, .cke_skin_ips .cke_dialog_footer{ border-top: 1px solid #333 !important; background: #222222 !important; } Now all we need to do is simply change the background color. I chose to go with the this color .cke_skin_ips .cke_dialog_contents, .cke_skin_ips .cke_dialog_footer{ border-top: 1px solid #333 !important; background: #adadad !important; } What we get is something that is easy to see and not so straining For the Font and Size dropdown menus you'll have to have FTP access. You'll need to simultaneously edit 2 files in order for the changes to take effect. Editor.css and Panel.css. You can find both by navigating to this folder: /public/js/3rd_party/ckeditor/skins/ips. We'll start by change this background. Find this bit of code (remember to make these edits in both files) ul.cke_panel_list { list-style-type: none; margin: 3px; padding: 0; white-space: nowrap; } And change it to ul.cke_panel_list { list-style-type: none; margin: 0; padding: 0; white-space: nowrap; } Next Find .cke_panel_listItem a { padding: 2px; display: block; border: 1px solid #fff; color: inherit !important; text-decoration: none; overflow: hidden; text-overflow: ellipsis; } Tweak it like so .cke_panel_listItem a { padding: 2px; display: block; border: none; color: inherit !important; background-color: #595959; text-decoration: none; overflow: hidden; text-overflow: ellipsis; } About half way there. Find and edit this .cke_panel_grouptitle { font-size: 11px; font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; font-weight: bold; white-space: nowrap; background-color: #dcdcdc; color: #000; margin:0px; padding:3px; } End result should match this .cke_panel_grouptitle { font-size: 11px; font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; font-weight: bold; white-space: nowrap; background: #dcdcdc url('{style_images_url}/highlight_faint.png') repeat-x 0 1px !important; color: #000; margin:0px; padding:3px; } You are now done with your Font and Size dropdown menus and they should look similar to what I currently have Much, much better right? Well alas I think so. Ok now we just have the Text Color dropdown. The edits are still in the same 2 files so don't close them yet. Find .cke_colorblock { padding: 3px; font-size: 11px; font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif; } And change it to .cke_colorblock { padding: 3px; font-size: 11px; font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif; background: #595959; } Now Find span.cke_colorbox { width: 10px; height: 10px; border: #808080 1px solid; float: left; } And edit it like so span.cke_colorbox { width: 10px; height: 10px; border: none; float: left; } Basically all we are doing is removing all of the borders. Find a.cke_colorbox { border: #fff 1px solid; padding: 2px; float: left; } Change it to a.cke_colorbox { border: none; padding: 2px; float: left; } Find a:hover.cke_colorbox, a:focus.cke_colorbox, a:active.cke_colorbox { border: #316ac5 1px solid; background-color: #dff1ff; } Change to a:hover.cke_colorbox, a:focus.cke_colorbox, a:active.cke_colorbox { border: none; background-color: #dcdcdc; } Find a.cke_colorauto, a.cke_colormore { border: #fff 1px solid; padding: 2px; display: block; cursor: pointer; } Change to a.cke_colorauto, a.cke_colormore { border: none; padding: 2px; display: block; cursor: pointer; } Last, but not least find a:hover.cke_colorauto, a:hover.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore { border: #316ac5 1px solid; background-color: #dff1ff; } And get rid of the border a:hover.cke_colorauto, a:hover.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore { border: none; background-color: #fff; } Finally a conclusion to this simple yet long tutorial. your Text Color dropdown should now look like this For those of you who have read this whole tutorial I hope it has helped you in some way.
    1 point
  8. Version 1.0.4

    136 downloads

    Will let users to see Notifications, new Message and new Reports count without refreshing the page How To Install To install you just need upload XML file (Admin CP > System > Site Features > Plugins > Install)
    -1 points
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...