• Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Rules
    • Help

    Do more on the web, with a fast and secure browser!

    Download Opera browser with:

    • built-in ad blocker
    • battery saver
    • free VPN
    Download Opera

    Opera Mini 8 for Android

    Opera Mini
    17
    32
    15971
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • d-wa
      d-wa last edited by

      @tinman989 in case no one gonna help :

      why you can't remove saved pages and bookmars from speed dial is that it is the only way you could access them. feeds included.

      I agree with you with the white colour. as I've already mentioned in some of my previous posts, we really need a theme colour options. like in old opera 4 on our java phones.

      for the layout, they seems to try to maximize the viewing area and minimize the address/navigation bar. I guess they haven't check how it went on a small screen.

      and for the purpose to retain the old UI we got classic layout. It's the only thing there is to it.
      Or maybe they need to add theme option regarding the colour AND the layout?

      Reply Quote 0
        1 Reply Last reply
      • baunz
        baunz last edited by

        This issue about dark or black shades saves battery is only for oled displays... Clearly yours is not oled... both the Aces..... if you understand well lollipop and most of material apps... are colourful and black isn't one of them....
        The user interface of opera mini 8 is great... just put full screen and the white background won't be visible anymore....

        Reply Quote 0
          1 Reply Last reply
        • vigneshlin
          vigneshlin last edited by

          giving the theme options like dark, white or black red would be a welcome addition

          Reply Quote 0
            1 Reply Last reply
          • richardus2099
            richardus2099 last edited by
            1. How can I manage search engines? I can't seem to be able to delete or modify them

            2. How can I disable the suggestions I get every time I type in the search/address bar? it makes my mobile phone sluggish

            3. I want to have a separate search box from the address bar, so my spell checker works!

            The only reason I kept opera was the two boxes. Now this browser is totally behind Chrome and Firefox, because they're faster in my phone than this one, so if I cannot solve these issues, I'm going to uninstall it.

            Thanks.

            Reply Quote 0
              1 Reply Last reply
            • baunz
              baunz last edited by

              To delete the search engines... you swipe to the right... to add...am not sure.

              Seem like you should stick to opera mini 7.6.4... to get separate address and search box...

              I like the combination of both the search and the address... Makes things clean and easy to use.

              Reply Quote 0
                1 Reply Last reply
              • regfav
                regfav last edited by

                Please let us open images in the current tab.
                Opening in a background tab should be an option.

                Thanks.

                Reply Quote 0
                  1 Reply Last reply
                • barsk
                  barsk last edited by

                  To add search engines you visit the search engine you want to add and then long press on the search field to open up the context menu. There you will find an option to add the search engine (this is the same way as it was done in Mini 7).

                  Reply Quote 0
                    1 Reply Last reply
                  • kirox317
                    kirox317 last edited by

                    This method does not work with websites like www.ixquick.com
                    Is there any way to add this search engine?
                    How to change the default search engine? After restart it is always Google.

                    Reply Quote 0
                      1 Reply Last reply
                    • d-wa
                      d-wa last edited by

                      Opera Mini default search engine can't be changed since forever.

                      why asking just now?

                      Reply Quote 0
                        1 Reply Last reply
                      • vigneshlin
                        vigneshlin last edited by

                        no it used to remember search engine last selected in older versions

                        Reply Quote 0
                          1 Reply Last reply
                        • d-wa
                          d-wa last edited by

                          but not until restart.

                          maybe you confuse it for multiple tabs search. now each tab remember its own last used search engine. start with Google obviously.

                          Reply Quote 0
                            1 Reply Last reply
                          • kirox317
                            kirox317 last edited by

                            it would be really awesome to change the default search engine pemanently, because not everyone is happy with google I guess

                            Reply Quote 0
                              1 Reply Last reply
                            • d-wa
                              d-wa last edited by

                              ya think?

                              two words for you: Google pays.

                              Reply Quote 0
                                1 Reply Last reply
                              • klaipedaville
                                klaipedaville last edited by

                                Hello there!

                                I would be really thankful if anybody could advise on jquery's weird behavior in opera mini 8 (full version is 8.0.1807.91281). When the following code is placed directly in head tags it works,

                                <head>
                                <script src="jquery.js"> type="text/javascript"></script>
                                <script type="text/javascript">
                                $(document).ready(function(){
                                $('#hasphone').show();
                                $('#hasmail').show();
                                });
                                </script>
                                </head>
                                

                                However, trying to keep my head nice and clean and doing the following simply stops this simple function's execution. I created my show.js file, placed it in my head and also referenced jquery like this:

                                <head>
                                <script type="text/javascript" src="show.js"> </script>
                                <script type="text/javascript" src="jquery-1.4.2.min.js"> </script>
                                </head>
                                

                                Then I placed my simple function inside my show.js file like this:

                                $(document).ready(function(){
                                $('#hasphone').show();
                                $('#hasmail').show();
                                });
                                

                                It works fine in all the major browsers I tested it in (Opera Classic, IE, Safari, Chrome, FF) but it just fails in opera mini 8. Could anybody advise please, what I am doing wrong here? My vague guess is that opera mini 8 has its rendering stuff off this browser and does it remotely via their servers, that's why the only way for it to work in opera mini is to put the code directly in head. I am not sure I am on the right track here but that's the only workaround I've found so far to force it work in opera mini 8.

                                Would appreciate any help /comments at all as this thing slowly starts driving me crazy 🙂 Many thanks in advance!

                                Reply Quote 0
                                  1 Reply Last reply
                                • klaipedaville
                                  klaipedaville last edited by

                                  I upgraded to jquery 1.11.3 and keep the lines in this order now:

                                  <head>
                                  <script type="text/javascript" src="jquery-1.11.3.min.js"> </script>
                                  <script type="text/javascript" src="show.js"> </script>
                                  </head>
                                  

                                  I removed one extra closing bracket from the line below right after jquery.js:

                                  <script src="jquery.js"> type="text/javascript"></script>
                                  

                                  so the correct line looks like this:

                                  <script src="jquery.js" type="text/javascript"></script>
                                  

                                  However, that did not help. The trick was in my other scripts' order. That is I reversed the order I had and it started to work. For example I had script1, script2, script3 placed like this:

                                  <script src="script1.js"> type="text/javascript"></script>
                                  <script src="script2.js"> type="text/javascript"></script>
                                  <script src="script3.js"> type="text/javascript"></script>
                                  

                                  Now I have changed it to:

                                  <script src="script1.js"> type="text/javascript"></script>
                                  <script src="script3.js"> type="text/javascript"></script>
                                  <script src="script2.js"> type="text/javascript"></script>
                                  

                                  and it all revived. Hope it will help someone out there. Make sure you check / experiment with your scripts' places and chances are it will work for your as well. Just remember it all has to go coherently and successively.

                                  Reply Quote 0
                                    1 Reply Last reply
                                  • First post
                                    Last post

                                  Computer browsers

                                  • Opera for Windows
                                  • Opera for Mac
                                  • Opera for Linux
                                  • Opera beta version
                                  • Opera USB

                                  Mobile browsers

                                  • Opera for Android
                                  • Opera Mini
                                  • Opera Touch
                                  • Opera for basic phones

                                  • Add-ons
                                  • Opera account
                                  • Wallpapers
                                  • Opera Ads

                                  • Help & support
                                  • Opera blogs
                                  • Opera forums
                                  • Dev.Opera

                                  • Security
                                  • Privacy
                                  • Cookies Policy
                                  • EULA
                                  • Terms of Service

                                  • About Opera
                                  • Press info
                                  • Jobs
                                  • Investors
                                  • Become a partner
                                  • Contact us

                                  Follow Opera

                                  • Opera - Facebook
                                  • Opera - Twitter
                                  • Opera - YouTube
                                  • Opera - LinkedIn
                                  • Opera - Instagram

                                  © Opera Software 1995-