How can I shrink the Site Identity Icon? It takes all the space, no URL visible!

I must confess, I heve lots of addons installed, therefore my toolbar is fully loaded. the adress bar is shrunk to a minimum, but there would be absolutely no need for the Page Security Info to be THAT space consuming!!? Who needs the full name of the certificate to be visible all the time! Wouldn´t it be enough to just show it by hovering over it?
Is there any possibility to shrink this annoying text to the size of an icon??
Thanx 4 every hint!
Firefox 5.0.1, Windows XP

Here is a variation that shows the label on hover.<br />
<br />
<pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#identity-icon-labels { display:none!important; }
#identity-box:hover #identity-icon-labels { display:block!important; }
</nowiki></pre>

Similar Messages

  • How can you shrink the size of an upright picture to make it smaller without losing any of the detail in it??? At the moment, if I view them on my laptop, landscape photos fill the screen, but portrait photos only show the middle part.

    How can you shrink the size of an upright picture to make it smaller without losing any of the detail in it (in Slideshow)??? At the moment, if I view them on my Mac Laptop, landscape photos fill the screen, but portrait photos only show the middle part, so I loose the top and bottom of the picture.  Have tried cropping, but that means I lose top and bottom part of the picture, so that is not the answer!!

    Homestly haven't a clue what's going on there. 
    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder.
    (On 10.7: Hold the option (or alt) key while clicking on the Go menu in Finder to access the User Library)
    (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • How can i shrink the db(530GB) in chunks?

    How can i shrink the db(530GB) in to chunks?.
    Thanks,
    Ron.

    Since i am new.Do you have any scripts or this?
    I am trying bleow scripts,but its not showing any result:
    Use Test
    --Tuesday, July 26, 2011Shrink database in chunks
    declare @DBFileName sysname
    declare @TargetFreeMB int
    declare @ShrinkIncrementMB int
    -- Set Name of Database file to shrink
    set @DBFileName = 'I:\Program Files\Microsoft SQL Server\MSSQL.12\MSSQL\Data\Test_data.mdf'
    -- Set Desired file free space in MB after shrink
    set @TargetFreeMB = 5000 --need to change the size
    -- Set Increment to shrink file by in MB
    set @ShrinkIncrementMB = 1000
    -- Show Size, Space Used, Unused Space, and Name of all database files
    select
    [FileSizeMB] =
    convert(numeric(10,2),round(a.size/128.,2)),
    [UsedSpaceMB] =
    convert(numeric(10,2),round(fileproperty( a.name,'SpaceUsed')/128.,2)) ,
    [UnusedSpaceMB] =
    convert(numeric(10,2),round((a.size-fileproperty( a.name,'SpaceUsed'))/128.,2)) ,
    [DBFileName] = a.name
    from
    sysfiles a
    declare @sql varchar(8000)
    declare @SizeMB int
    declare @UsedMB int
    -- Get current file size in MB
    select @SizeMB = size/128. from sysfiles where name = @DBFileName
    --Print '@sizemb = '+ @sizemb
    -- Get current space used in MB
    select @UsedMB = fileproperty( @DBFileName,'SpaceUsed')/128.
    --print '@usedMB = ' + @usedmb
    select [StartFileSize] = @SizeMB, [StartUsedSpace] = @UsedMB, [TargetFreeMB] = @TargetFreeMB,[Total] =@UsedMB+@TargetFreeMB ,[DBFileName] = @DBFileName
    -- Loop until file at desired size
    while @SizeMB > @UsedMB+@TargetFreeMB+@ShrinkIncrementMB
    begin
    set @sql =
    'dbcc shrinkfile ( '+@DBFileName+', '+
    convert(varchar(20),@SizeMB-@ShrinkIncrementMB)+' ) '
    print 'Start ' + @sql
    print 'at '+convert(varchar(30),getdate(),121)
    exec ( @sql )
    print 'Done ' + @sql
    print 'at '+convert(varchar(30),getdate(),121)
    -- Get current file size in MB
    select @SizeMB = size/128. from sysfiles where name = @DBFileName
    -- Get current space used in MB
    select @UsedMB = fileproperty( @DBFileName,'SpaceUsed')/128.
    select [FileSize] = @SizeMB, [UsedSpace] = @UsedMB, [DBFileName] = @DBFileName
    end
    select [EndFileSize] = @SizeMB, [EndUsedSpace] = @UsedMB, [DBFileName] = @DBFileName
    -- Show Size, Space Used, Unused Space, and Name of all database files
    select
    [FileSizeMB] =
    convert(numeric(10,2),round(a.size/128.,2)),
    [UsedSpaceMB] =
    convert(numeric(10,2),round(fileproperty( a.name,'SpaceUsed')/128.,2)) ,
    [UnusedSpaceMB] =
    convert(numeric(10,2),round((a.size-fileproperty( a.name,'SpaceUsed'))/128.,2)) ,
    [DBFileName] = a.name
    from
    sysfiles a

  • How can I reclam the space

    oracle 10g, on the production one of the schema (40GB), i took export and restored one of the test env. and i see the datafie size 15GB.
    question how can I reclam the space on production whitout any outage. can i able to do something online to reclame the space?
    Thanks

    What about Segment Space Management on your Tablespace of that table? ASSM(auto)/MSSM(manual)
    MSSM:
    - ALTER TABLE ... MOVE
    alter table .. move - this makes your index unusable. You have to "alter index ... rebuild" after that
    - ALTER INDEX ... REBUID
    ASSM:
    - ALTER TABLE ... SHRINK SPACE
    You can shrink space online ... But You have "alter table ... enable row movement"
    "alter table ... enable row movement" can make stored procedure depend on this table status be INVALID.
    You can shrink space online, Ifr you have heavy DML, that can make your table blocking lock.
    STEP SHOULD BE =>
    ALTER TABLE ... ENABLE ROW MOVEMENT;
    ALTER TABLE ... SHRINK SPACE COMPACT; -- THIS NOT AFFECT DML, BUT NOT REDUCR HWM
    ALTER TABLE ... SHRINK SPACE; -- THIS HELP REDUCE HWM
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/schema.htm#ADMIN10161
    - ALTER INDEX ... SHRINK SPACE
    If your data is LOB, you have to "alter table ... move lob"
    http://it.toolbox.com/blogs/surachart/move-lobsegment-to-different-tablespace-30530
    Good Luck

  • How can we do the validation for non visible records in table control.

    Hi Experts,
      I have a table control which displays list of material details. I have a button to upload the material details from excel file to table control directly. I have to validate all the customers which are exist in the table. But my item (Material) table control displays only 5 rows i.e only 5 entries are visible in module pool screen. The validation is done for 5 records only in PAI event, but i need to do validation for rest of the records too (Which are not visible on items table), if validation fails then needs to display error message.
      How can we do the validation for non visible records in table control.
    Regards,
    Bujji

    Hi,
    try validating material before displaying it in table control...'
    Rgds/Abhhi

  • How can I adjust the space between the dividing line of the footnotes and the continuous text?

    How can I adjust the space between the dividing line of the footnotes and the continuous text?

    I want to extend the space so the dividing line does not stuck to the normal (continuous) text in my thesis. Do you have a solution? That would be perfect. Thanks a lot!

  • How can I make the status bar always visible in safari?

    How can I make the status bar always visible in safari? Even when I go to "View" and then select "show status bar," the status bar still disappears unless my cursor is hovering over it. I want to be able to see the time, battery life etc. while surfing the web in safari!

    When Safari is in FullScreen mode, menu bar will be hidden.
    Safari window to fit the screen?
    Move the mouse pointer to the bottom right corner of the Safari window.
    Double arrows will appear. Drag it to resize the window to fit the screen.

  • How can I make the space bar repeat rapidly?

    How can I make the space bar repeat rapidly?

    When Safari is in FullScreen mode, menu bar will be hidden.
    Safari window to fit the screen?
    Move the mouse pointer to the bottom right corner of the Safari window.
    Double arrows will appear. Drag it to resize the window to fit the screen.

  • How can I change the space between a checkbox and text all at one time? I have a lot of checkboxes in my form.

    How can I change the space between a checkbox and text all at one time? I have a lot of checkboxes in my form.

    Okay, I haven't found a way to add an extra space using Find/replace, but you might be able to add some text wrap to the check boxes that will push the text away from them.
    Open Find/Replace and click the Object tab.
    Click the Specify attributes to find button to the right of the Find Object Format: field.
    Under Basic Attributes, choose Stroke and then the Black swatch (assuming the black swatch is applied to the strokes of your check boxes). If there are no other stand-alone objects in your form with a Black stroke, this should be all you need. (If there are Black strokes on your table cells, they will be ignored.)
    Click OK
    Click the Specify attributes to change button to the right of the Change Object Format: field.
    Under Basic Attributes, choose Text Wrap & Other > Text Wrap > Type: > Wrap around bounding box (2nd button from left)
    Under Offset, set a Right offset at the distance you'd like to add (I don't know what units you use, but the 3-5 points might work for your purposes...might take some trial-and-error to get it where you want)
    Click OK
    Click Change All

  • How can I eliminate the space Pages inserts after an apostrophe?

    How can I eliminate the space Pages inserts after an apostrophe?

    egret wrote:
    Never mind.........I found out it was the font I was using (Song).
    Yes, best not to use Chinese fonts for other languages as sometimes the characters are especially wide or otherwise inappropriate.

  • How  can i check the space in the field.

    hi:
    how  can i check the space in the field.!
    for example:
    data: string(30) type c value 'sent ence'.
    search  string for space.
    if sy-subrc = 0.
    write: 'i am right'.
    endif.
    but the result is that it cann't check the space.
    so how can check the space in the field!!
    thank you very much!

    Hi,
    data: v_string(30) type c value 'sent ence'.
    DATA : v_cnt TYPE I,
                v_num TYPE I  VALUE 1,
                v_num1 TYPE I.
    v_cnt =  strlrn( v_string ).
    DO v_cnt TIMES.
      IF v_string+v_num1(v_num)  EQ SPACE.
        write: 'i am right'.    
    ELSE.
       write: 'i am WRONG'.
      ENDIF.
      v_num1  =  v_num1 + 1. 
    ENDDO.

  • How can I shrink the track icon size?

    Why is the the first track icon in the orchestral template ginormous while the rest are small and how can I shrink it?

    Hi
    In that template, the AutoZoom function is on so the selected track will be larger than the others.
    Turn it off using the (default) button in the ToolBar, or use the (default) key command Control-Z
    CCT

  • "Other" and "Documents and Data" tabs? What is on them and how can I minimize the space they take up?

    Okay, so I plugged my phone in recently and I clicked the iPhone tab (force of habbit) and I took a look at the storage on my iPhone 4. The two largest tabs are the "Other" and "Documents & Data" tabs. What is on those tabs and how can I minimize the amount of space they take up?

    Hello, tayajoan. 
    Thank you for visiting Apple Support Communities. 
    Here is an article that provides more information regarding the "other" storage. 
    Other: Everything else, such as contacts, calendars, messages, emails and their attachments, Safari Offline Reading List, settings, and other system resources.
    iPhone, iPad, and iPod: Understanding capacity
    http://support.apple.com/kb/ht1867
    Cheers,
    Jason H. 

  • How can i set the space between two button?

    Hello,
    I have
    <mx:HBox>
    <mx:Button label="one" />
    <mx:Button label="two" />
    </mx:HBox>
    how can i set the distance between this two compotents?
    Thanks

    quote:
    Originally posted by:
    robinbouc77
    Hi,
    you can use horizontalGap property on HBox to change the
    space between your buttons. I think the default value is 6. You can
    also use <mx:Spacer/>, but changing the gap on HBox is
    probably the cleanest way ;)
    C U
    perfect!!! works fine

  • How can I shrink the spacing between the icons in the bookmarks toolbar?

    Hello everyone!
    I would like to open up some space in my bookmarks toolbar (also on the navigation toolbar if I can) by reducing the spacing between the icons. Is there any way to do this without the need of some third party program? If not, which one should I download?
    Curious thing is that a few days ago I did not have this problem at all, all my bookmarks were visible in the toolbar regularly, neat and tight. Now there is that boring guillemet sitting there at the corner...
    And this is the line where I thank you quite a bit for your interest towards my problem. So thank you very much:)
    With respect
    Arial

    You're welcome
    You can also remove the text labels with code in userChrome.css and if necessary adjust the margins as you like.
    Add code to the userChrome.css file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>#personal-bookmarks .bookmark-item > .toolbarbutton-text {
    display:none !important;
    #personal-bookmarks .bookmark-item > .toolbarbutton-icon {
    margin:0px !important;
    padding:0px !important;
    </nowiki></pre>
    *https://developer.mozilla.org/en/CSS/margin
    *https://developer.mozilla.org/en/CSS/padding

Maybe you are looking for