1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"[
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
%brandDTD;
]>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Customizing &brandShortName;</title>
<link rel="stylesheet" href="helpFileLayout.css"
type="text/css"/>
</head>
<body>
<div class="boilerPlate">This document is provided for your information
only. It may help you take certain steps to protect the privacy and security
of your personal information on the Internet. This document does not,
however, address all online privacy and security issues, nor does it
represent a recommendation about what constitutes adequate privacy and
security protection on the Internet.</div>
<h1 id="customizing_mozilla">Customizing &brandShortName;</h1>
<p>You can customize &brandShortName; to better suit your needs using features
like Sidebar, bookmarks, and Tabbed Browsing.</p>
<p>This section describes the customizable aspects of &brandShortName;'s
browser component.</p>
<div class="contentsBox">In this section:
<ul>
<li><a href="#sidebar">Sidebar</a></li>
<li><a href="#tabbed_browsing">Tabbed Browsing</a></li>
<li><a href="#changing_fonts_colors_and_themes">Changing Fonts, Colors, and
Themes</a></li>
<li><a href="#toolbars">Toolbars</a></li>
<li><a href="#bookmarks">Bookmarks</a></li>
<li><a href="#specifying_how_mozilla_starts_up">Specifying How
&brandShortName; Starts Up</a></li>
<li><a href="cs_nav_prefs_appearance.xhtml">Appearance
Preferences</a></li>
<li><a href="cs_nav_prefs_navigator.xhtml">Browser
Preferences</a></li>
<li><a href="cs_nav_prefs_advanced.xhtml">Advanced Preferences</a></li>
</ul>
</div>
<h2 id="sidebar">Sidebar</h2>
<div class="contentsBox">In this section:
<ul>
<li><a href="#what_is_sidebar">What is Sidebar?</a></li>
<li><a href="#opening_closing_and_resizing_sidebar">Opening, Closing and
Resizing Sidebar</a></li>
<li><a href="#viewing_sidebar_tabs">Viewing Sidebar Tabs</a></li>
<li><a href="#adding_sidebar_tabs">Adding Sidebar Tabs</a></li>
<li><a href="#customizing_individual_sidebar_tabs">Customizing Individual
Sidebar Tabs</a></li>
<li><a href="#reorganizing_sidebar_tabs">Reorganizing Sidebar Tabs</a></li>
<li><a href="#removing_sidebar_tabs">Removing Sidebar Tabs</a></li>
</ul>
</div>
<h3 id="what_is_sidebar">What is Sidebar?</h3>
<p>Sidebar is a customizable area in your browser where you can keep items
that you need to use all the time—the latest news and weather, your
address book, stock quotes, a calendar—and many other available
options. Sidebar presents these items to you in tabs that are continually
updated.</p>
<p>&brandShortName; comes with some Sidebar tabs already set up, but you can
customize Sidebar by adding, removing, and rearranging tabs.</p>
<p>[<a href="#sidebar">Return to beginning of section</a>]</p>
<h3 id="opening_closing_and_resizing_sidebar">Opening, Closing and Resizing
Sidebar</h3>
<p>To open Sidebar, <span class="noMac">press <kbd>F9</kbd> or</span> open the
View menu in the browser, choose Show/Hide, and then Sidebar from the
submenu.</p>
<p>Once Sidebar is opened, you can use its handle to close, open and resize
Sidebar's frame. Move the mouse pointer up and down along the left edge
of the &brandShortName; window. The pointer changes to a hand when it touches
the <q>handle</q> for Sidebar, as shown in the picture.</p>
<table summary="Image table">
<tr>
<td colspan="2"></td>
</tr>
<tr style="vertical-align: top;">
<td><img src="images/sidebar.png" alt="image of sidebar with
handle"/></td>
<td style="vertical-align: middle;">
<p><strong>Sidebar<br/>Handle</strong></p>
</td>
</tr>
</table>
<ul>
<li>Click the handle to close/open Sidebar's frame</li>
<li>Click and drag the handle to resize Sidebar's frame</li>
</ul>
<p>To close Sidebar with its handle, do one of the following:</p>
<ul>
<li class="noMac">Press <kbd>F9</kbd></li>
<li>Click the X in the upper-right corner of Sidebar</li>
<li>Open the View menu, choose Show/Hide, and then Sidebar from the
submenu</li>
</ul>
<p>[<a href="#sidebar">Return to beginning of section</a>]</p>
<h3 id="viewing_sidebar_tabs">Viewing Sidebar Tabs</h3>
<p>To view a tab:</p>
<ul>
<li>Click a tab's title; for instance, click the word <q>Search</q>. The
Search tab opens, which allows you to search for web pages.</li>
</ul>
<p><strong>Tip</strong>: To reload a Sidebar tab, right-click on the tab title
and choose Reload from the pop-up menu.</p>
<p>[<a href="#sidebar">Return to beginning of section</a>]</p>
<h3 id="adding_sidebar_tabs">Adding Sidebar Tabs</h3>
<p>To add a new tab:</p>
<ol>
<li>Click <q>Tabs</q> at the top of Sidebar, and select Customize
Sidebar from the menu</li>
<li>In the Customize Sidebar dialog box, select a tab from the list on the
left. Double-click the folders to open or close folders.</li>
<li>Click Add.</li>
<li>Continue adding as many tabs as you want.</li>
<li>Click OK to finish.</li>
</ol>
<p><strong>Note</strong>: If you add more than eight tabs to Sidebar,
&brandShortName; hides the remaining tabs to reduce clutter. To scroll
through the hidden tabs, click the down arrow button at the bottom of Sidebar
until you see the desired tab. Click the up arrow button to once again scroll
up.</p>
<p><strong>Tips</strong>:</p>
<ul>
<li>To preview a Sidebar tab before adding it, select a tab from the list
on the left side of the Customize Sidebar dialog box and click Preview.
After a few seconds, the tab displays in the Tab Preview pop-up
window.</li>
<li>To view an extensive and categorized list of tabs available for Sidebar,
click <q>Tabs</q> at the top of Sidebar, and select Sidebar
Directory.</li>
</ul>
<p>You can also turn Sidebar tabs on and off.</p>
<ol>
<li>Click <q>Tabs</q> at the top of Sidebar. Current tabs are listed in
the lower part of the menu.</li>
<li>Select the tabs you want displayed in Sidebar. Remove the checkmark
(deselect) to turn a tab off (it will still be available from the
menu).</li>
</ol>
<p><strong>Tip</strong>: To quickly turn off a Sidebar tab, right-click on its
name and choose Hide Tab.</p>
<p>[<a href="#sidebar">Return to beginning of section</a>]</p>
<h3 id="customizing_individual_sidebar_tabs">Customizing Individual Sidebar
Tabs</h3>
<p><strong>Note</strong>: Not all tabs can be customized.</p>
<ol>
<li>Click <q>Tabs</q> at the top of Sidebar and select Customize Sidebar
from the menu.</li>
<li>Select an available tab from the list on the right.</li>
<li>Click Customize Tab if it is enabled. A window appears with information
and options for customizing the tab.
<p>The instructions vary depending on the source of the tab—in
addition to &brandShortName;, tab providers can be any company,
organization, or individual who uses the Internet.</p>
</li>
<li>After you follow the tab provider's instructions, close the
customization window (or follow the provider's instructions to close
it).</li>
<li>Click OK to finish.</li>
</ol>
<p>[<a href="#sidebar">Return to beginning of section</a>]</p>
<h3 id="reorganizing_sidebar_tabs">Reorganizing Sidebar Tabs</h3>
<ol>
<li>Click <q>Tabs</q> at the top of Sidebar and select Customize Sidebar from
the menu.</li>
<li>Select a tab from the list on the right.</li>
<li>Click Up and Down to change the tab's placement.</li>
<li>Repeat steps 1 and 2 to continue reorganizing as many tabs as you
like.</li>
<li>Click OK to finish.</li>
</ol>
<p>[<a href="#sidebar">Return to beginning of section</a>]</p>
<h3 id="removing_sidebar_tabs">Removing Sidebar Tabs</h3>
<ol>
<li>Click <q>Tabs</q> at the top of Sidebar and select Customize Sidebar from
the menu.</li>
<li>Select a tab from the list on the right.</li>
<li>Click Remove.</li>
<li>Continue removing as many tabs as you like.</li>
<li>Click OK to finish.</li>
</ol>
<p>[<a href="#sidebar">Return to beginning of section</a>]</p>
<h2 id="tabbed_browsing">Tabbed Browsing</h2>
<div class="contentsBox">In this section:
<ul>
<li><a href="#what_is_tabbed_browsing">What is Tabbed Browsing?</a></li>
<li><a href="#setting_up_tabbed_browsing">Setting up Tabbed Browsing</a></li>
<li><a href="#opening_tabs">Opening Tabs</a></li>
<li><a href="#moving_tabs">Moving Tabs</a></li>
<li><a href="#bookmarking_tabs">Bookmarking Tabs</a></li>
<li><a href="#closing_tabs">Closing Tabs</a></li>
</ul>
</div>
<h3 id="what_is_tabbed_browsing">What is Tabbed Browsing?</h3>
<p>Tabbed Browsing lets you open more than one web page in a single window.
Each web page has its own tab across the top of a single browser window.
Each tab appears on the Tab Bar. For example, you can visit mozilla.org,
icq.com, and cnn.com within one window instead of three windows.</p>
<table summary="Image table">
<tr>
<td>Click this to open a new tab.</td>
<td></td>
</tr>
<tr>
<td colspan="2">
<img src="images/tabbed_browsing_bar.png" alt="tab bar"/>
</td>
</tr>
<tr>
<td style="text-align: left;">Tab being viewed.</td>
<td style="text-align: right;">Click this to close the tab being
viewed.</td>
</tr>
<tr>
<td colspan="2" style="text-align: center;"><strong>Tab Bar</strong></td>
</tr>
</table>
<p>You don't need to have several windows open to visit several web pages;
thus, freeing up more space on your desktop. Instead, you can open, close,
and reload web pages conveniently in one place without having to switch to
another window.</p>
<p>[<a href="#tabbed_browsing">Return to beginning of section</a>]</p>
<h3 id="setting_up_tabbed_browsing">Setting up Tabbed Browsing</h3>
<p>There are several ways to customize Tabbed Browsing. For example, you can
change your preferences to open new browser tabs from the Location Bar. You
can set up Tabbed Browsing in other ways too, such as loading new browser
tabs in the background so the first page is kept on top while the second page
is loading. To learn more about setting up Tabbed Browsing in
&brandShortName;, see
<a href="cs_nav_prefs_navigator.xhtml#tabbed_browsing">Browser Preferences
- Tabbed Browsing</a>.</p>
<p>[<a href="#tabbed_browsing">Return to beginning of section</a>]</p>
<h3 id="opening_tabs">Opening Tabs</h3>
<p>You can open a browser tab in the following ways:</p>
<p><strong>Opening a New Blank Browser Tab</strong>:</p>
<ul>
<li><strong>From the File menu</strong>: Open the File menu, choose New, and
then Browser Tab.</li>
<li><strong>From the Tab Bar</strong>: If visible, click the <q>new
tab</q> icon
<img src="chrome://navigator/skin/icons/tab-new.gif" alt="new tab icon"/>
on the left side of the Tab Bar.</li>
<li><strong>From a pop-up menu</strong>: If the Tab Bar is visible,
right-click on it, and choose New Tab from the pop.</li>
</ul>
<p><strong>Opening a Web Page Link in a Browser Tab</strong>:</p>
<ul>
<li><strong>From a pop-up menu</strong>: Right-click<span class="mac"> or, if
you have a one-button mouse, <kbd>Ctrl</kbd>-click</span> on a web page
link and choose Open Link in New Tab.</li>
<li><strong>From the Location Bar</strong>: Type a web page location in the
Location Bar and press <kbd class="mac">Cmd</kbd><kbd class="noMac">
Ctrl</kbd>+<kbd class="mac">Return</kbd><kbd class="noMac">Enter</kbd>.
<p><strong>Note</strong>: You must set your Tabbed Browsing preferences to
open a browser tab from the Location Bar. See
<a href="cs_nav_prefs_navigator.xhtml#tabbed_browsing">Browser
Preferences - Tabbed Browsing</a> for more information.</p>
</li>
</ul>
<p><strong>Tips</strong>:</p>
<ul>
<li>To quickly open a new browser tab, press
<kbd class="mac">Cmd</kbd>
<kbd class="noMac">Ctrl</kbd>+<kbd>T</kbd>.</li>
<li>To reload one or all browser tabs, right-click<span class="mac"> or, if
you have a one-button mouse, <kbd>Ctrl</kbd>-click</span> anywhere on the
Tab Bar and select Reload Tab or Reload All Tabs, respectively.</li>
</ul>
<p>[<a href="#tabbed_browsing">Return to beginning of section</a>]</p>
<h3 id="moving_tabs">Moving Tabs</h3>
<p>Tabs are displayed in the order you open them, which may not always be what
you want. To move a tab to a different location within a &brandShortName;
window, simply drag it there using your mouse. While you are dragging the
tab, &brandShortName; displays an indicator to show where the tab will be
moved. Alternately, you can use
<a href="shortcuts-navigator.xhtml#tabbed_browsing_shortcuts">keyboard
shortcuts</a> to move tabs within a window if desired.</p>
<p><strong>Note</strong>: The keyboard shortcuts don't work when a text box has
focus.</p>
<p>[<a href="#tabbed_browsing">Return to beginning of section</a>]</p>
<h3 id="bookmarking_tabs">Bookmarking Tabs</h3>
<p>A bookmarked group of tabs is called a Groupmark. To bookmark the group of
browser tabs in the current window:</p>
<ol>
<li>Open the Bookmarks menu and choose <q>Bookmark This Group of
Tabs</q>.</li>
<li>Type a name for the bookmark group in the Name field.</li>
<li>Choose a folder in which to create your Groupmark, or click New Folder to
create a new folder for your Groupmark.</li>
<li>Click OK to add the Groupmark.</li>
</ol>
<p><strong>Tip</strong>: To learn how to use a group of tabs as your home page,
see <a href="cs_nav_prefs_navigator.xhtml#navigator">Browser Preferences -
Browser</a>.</p>
<p>[<a href="#tabbed_browsing">Return to beginning of section</a>]</p>
<h3 id="closing_tabs">Closing Tabs</h3>
<p>You can close browser tabs in several ways:</p>
<p><strong>Closing the Browser Tab Being Viewed</strong>:</p>
<ul>
<li>Open the File menu and choose Close Tab.</li>
<li>Click the <q>X</q> button on the right side of the Tab Bar.</li>
</ul>
<table summary="Image table">
<tr>
<td> Click this to open a new tab.</td>
<td></td>
</tr>
<tr>
<td colspan="2">
<img src="images/tabbed_browsing_bar.png" alt="tab bar"/>
</td>
</tr>
<tr>
<td style="text-align: left;">Tab being viewed.</td>
<td style="text-align: right;">Click this to close the tab being
viewed.</td>
</tr>
<tr>
<td colspan="2" style="text-align: center;"><strong>Tab Bar</strong></td>
</tr>
</table>
<p><strong>Tips</strong>:</p>
<ul>
<li>To close any browser tab, even if hidden, right-click on the tab and
choose Close Tab from the pop-up menu.</li>
<li>To keep only one browser tab open, while closing all other tabs,
right-click on the browser tab and choose Close Other Tabs.</li>
</ul>
<p>[<a href="#tabbed_browsing">Return to beginning of section</a>]</p>
<h2 id="changing_fonts_colors_and_themes">Changing Fonts, Colors, and
Themes</h2>
<div class="contentsBox">In this section:
<ul>
<li><a href="#changing_the_default_fonts">Changing the Default Fonts</a></li>
<li><a href="#changing_the_default_colors">Changing the Default
Colors</a></li>
<li><a href="#changing_the_theme">Changing the Theme</a></li>
</ul>
</div>
<h3 id="changing_the_default_fonts">Changing the Default Fonts</h3>
<p>Normally, web pages are displayed in the default font set by your browser
or in a font chosen by the web pages' authors.</p>
<p>To change the default fonts:</p>
<ol>
<li>Open the <span class="mac">&brandShortName;</span>
<span class="noMac">Edit</span> menu and choose Preferences.</li>
<li>Under the Appearance category, choose Fonts. (If no options are visible
in this category, double-click Appearance to expand the list.)</li>
<li>From the "Fonts for" drop-down list, choose a language group/script.
For instance, to set default fonts for West European languages/script
(Latin), choose <q>Western</q>.</li>
<li>Select whether proportional text should be serif (like Times Roman) or
sans-serif (like Arial). Then specify the font size you want for
proportional text.</li>
<li>If an appropriate font is available for your language/script, select
fonts for Serif, Sans-Serif, Cursive, Fantasy, and Monospace. You can also
specify what font size you want for monospace text.</li>
<li>Specify whether the default font should be serif or sans serif.</li>
<li>Select a fixed-width font and size. Certain types of text, such as
equations and formulas, are displayed in a fixed-width font.</li>
</ol>
<p>Many web page authors choose their own fonts and font sizes. To allow fonts
other than the ones specified in your preferences, check <q>Allow
documents to use other fonts</q>.</p>
<p>[<a href="#changing_fonts_colors_and_themes">Return to beginning of
section</a>]</p>
<h3 id="changing_the_default_colors">Changing the Default Colors</h3>
<p>Normally, the background and text colors on web pages are determined by the
default colors set by your browser or by the pages' authors.</p>
<p>To change the default colors:</p>
<ol>
<li>Open the <span class="mac">&brandShortName;</span>
<span class="noMac">Edit</span> menu and choose Preferences.</li>
<li>Under the Appearance category, choose Colors. (If no options are visible
in this category, click to expand the list.)</li>
<li>Click the colored blocks next to Text, Background, Unvisited Links, and
Visited Links. Choose a color for each from the color chart. You can also
specify that links should be underlined.</li>
</ol>
<p>Most web page authors choose their own colors. You can override the
authors' intentions by selecting <q>Use my chosen colors, ignoring
the colors specified</q>.</p>
<p>When viewing the source of a web page, you can see the HTML syntax of the
source of a web page highlighted in specific colors by selecting <q>Enable
syntax highlighting</q>.</p>
<p>[<a href="#changing_fonts_colors_and_themes">Return to beginning of
section</a>]</p>
<h3 id="changing_the_theme">Changing the Theme</h3>
<p>You can change the look and feel of &brandShortName; by using a different
theme. Changing the theme can be done either from the View menu or from the
Add-on Manager.</p>
<p>From the View menu:</p>
<ol>
<li>Open the View menu and choose Apply Theme, and then select a theme from
the menu.</li>
<li>Quit and restart &brandShortName;.</li>
</ol>
<p>From the Add-on Manager:</p>
<ol>
<li>Open the Tools menu and choose Add-on Manager.</li>
<li>Click the Themes button in the toolbar.</li>
<li>Select a theme from the list, and then click the Use Theme button.</li>
<li>Quit and restart &brandShortName;.</li>
</ol>
<p>[<a href="#changing_fonts_colors_and_themes">Return to beginning of
section</a>]</p>
<h2 id="toolbars">Toolbars</h2>
<div class="contentsBox">In this section:
<ul>
<li><a href="#navigation_toolbar">Navigation Toolbar</a></li>
<li><a href="#personal_toolbar">Personal Toolbar</a></li>
<li><a href="#status_bar">Status Bar</a></li>
<li><a href="#component_bar">Component Bar</a></li>
<li><a href="#hiding_a_toolbar">Hiding a Toolbar</a></li>
</ul>
</div>
<h3 id="navigation_toolbar">Navigation Toolbar</h3>
<p>The Navigation Toolbar, pictured here, helps you move around the Web.</p>
<table summary="Image table">
<tr>
<td colspan="4">
<img src="images/reload.gif" alt="navigation toolbar"/>
</td>
</tr>
<tr>
<td><strong>Back</strong></td>
<td><strong>Forward</strong></td>
<td><strong>Reload</strong></td>
<td><strong>Stop</strong></td>
</tr>
</table>
<p>[<a href="#toolbars">Return to beginning of section</a>]</p>
<h3 id="personal_toolbar">Personal Toolbar</h3>
<p>The Personal Toolbar is completely customizable—you decide what you
want to keep there.</p>
<table summary="Image table">
<tr>
<td><img src="images/personalbar.png" alt="Personal Toolbar"/></td>
</tr>
<tr>
<td style="text-align: center;"><strong>Personal Toolbar</strong></td>
</tr>
</table>
<p>You can easily add, delete, and rearrange items in the Personal Toolbar.</p>
<h4 id="turning_buttons_on_and_off">Turning Buttons On and Off</h4>
<ol>
<li>Open the <span class="mac">&brandShortName;</span>
<span class="noMac">Edit</span> menu and choose Preferences.</li>
<li>Click Browser.</li>
<li>Under <q>Select the buttons you want to see in the toolbars</q>,
choose the buttons that you want on your toolbar.</li>
<li>Click OK.</li>
</ol>
<h4 id="adding_personal_toolbar_bookmarks">Adding Personal Toolbar
Bookmarks</h4>
<p>You can add buttons for your favorite bookmarks, or folders containing
groups of bookmarks. To create a new bookmark to add to the Personal
Toolbar:</p>
<ol>
<li>Open a web page you want to bookmark.</li>
<li>Drag the bookmark icon
<img src="chrome://communicator/skin/bookmarks/bookmark-item.png"
alt="image of bookmark icon"/>(located to the left of URL in the
Location Bar) to a desired place on the Personal Toolbar. You can drag the
icon directly to the Personal Toolbar, or to a folder on the Personal
Toolbar. For more information, see
<a href="#adding_bookmark_folders_to_the_personal_toolbar">Adding Bookmark
Folders to the Personal Toolbar</a>.</li>
</ol>
<p><strong>Note</strong>: The bookmark icon
<img src="chrome://communicator/skin/bookmarks/bookmark-item.png" alt="image
of bookmark icon"/> may appear as another page-specific icon if you have
checked Show Website Icons in preferences. See
<a href="cs_nav_prefs_appearance.xhtml#appearance">Appearance Preferences -
Appearance</a> for more information on changing this preferences.</p>
<p>Each item in the Personal Toolbar folder appears as a toolbar button. You
may need to enlarge the browser window to see them all.</p>
<p id="adding_bookmark_folders_to_the_personal_toolbar"><strong>Adding
Bookmark Folders to the Personal Toolbar</strong></p>
<p>You can add bookmark folders to the Personal Toolbar to sort your favorite
bookmarks into categories. For example, you can have one folder on the
Personal Toolbar for hobby-related bookmarks and another folder for
work-related bookmarks. To add a new bookmark to the Personal Toolbar:</p>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>Select your designated <q>Personal Toolbar Folder</q>.</li>
<li>Click New Folder on the toolbar.</li>
<li> Type a name for your new bookmark folder. By default, the name is
<q>New Folder</q>.</li>
<li>Click OK to confirm your new bookmark folder name.</li>
</ol>
<p>The new bookmark folder will appear at the end of the Personal Toolbar.</p>
<h4>Designating a Bookmark Folder as Your Personal Toolbar Folder</h4>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>Select the bookmark folder whose items you want to appear on the
toolbar.</li>
<li>From the View menu, choose Set as Personal Toolbar Folder.</li>
</ol>
<p>The buttons in your Personal Toolbar now correspond to the bookmarks in the
folder you designated.</p>
<h4>Removing Bookmarks from the Personal Toolbar</h4>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>Click the Personal Toolbar Folder.</li>
<li>Select the bookmark or folder you want to delete.</li>
<li>Press Delete on your keyboard.</li>
<li>Close the Manage Bookmarks window.</li>
</ol>
<p><strong>Tip</strong>: To quickly remove a bookmark placed on the Personal
Toolbar (not in a folder), right-click on the bookmark and select Delete.</p>
<h4>Rearranging the Personal Toolbar</h4>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>In your Bookmarks window, click the Personal Toolbar Folder.</li>
<li>Select a bookmark or folder and drag it to a new location.</li>
<li>When you are finished rearranging items, close your Bookmarks
window.</li>
</ol>
<p><strong>Note</strong>: Standard buttons on the Personal Toolbar such as
Bookmarks, Search, Go, Print and Home cannot be rearranged, but they can
be <a href="#turning_buttons_on_and_off">turned off and on</a>.</p>
<p><strong>Tip</strong>: To move a bookmark placed on the Personal Toolbar
quickly, click and drag the bookmark to another location on the Personal
Toolbar or to a folder.</p>
<p>[<a href="#toolbars">Return to beginning of section</a>]</p>
<h3 id="status_bar">Status Bar</h3>
<p>The Status Bar is located at the bottom of any &brandShortName; window. It
includes the following:</p>
<ul>
<li>Component Bar: Allows you to switch between components. For more
information, see <a href="#component_bar">Component Bar</a>.</li>
<li>Status information: Displays information like the web-page URL and load
status information.</li>
<li>Cookie notification icon
<img src="chrome://communicator/skin/permissions/taskbar-cookie.gif"
alt="cookie notification icon"/>:
Appears when a website has used a cookie in a way that requires you to be
notified. For more information, see
<a href="using_priv_help.xhtml#cookie_notification">Cookie
Notification</a>.</li>
<li>Work Offline
<img src="chrome://communicator/skin/icons/offline.png"
alt="work offline icon"/> or Work Online
<img src="chrome://communicator/skin/icons/online.png"
alt="work online icon"/> icon: Click the icon to toggle working
offline or online. Working offline prevents &brandShortName; from
attempting to connect to the Internet, for example to load images on web
pages or automatically check email.</li>
<li>Lock icon (Example:
<img src="chrome://communicator/skin/icons/lock-insecure.png"
alt="lock icon"/>): Indicates whether the entire contents of the page
was encrypted while it was being received by your computer. For more
information, see
<a href="using_certs_help.xhtml#checking_security_for_a_web_page">Checking
Security for a Web Page</a>.</li>
</ul>
<p>[<a href="#toolbars">Return to beginning of section</a>]</p>
<h3 id="component_bar">Component Bar</h3>
<p>Use the Component Bar at the bottom left of any &brandShortName; window to
switch between tasks (such as browsing or mail).</p>
<p><img src="images/taskbar.png" alt="component bar"/></p>
<p>[<a href="#toolbars">Return to beginning of section</a>]</p>
<h3 id="hiding_a_toolbar">Hiding a Toolbar</h3>
<p>There are two ways to hide the toolbars.</p>
<p>To minimize a toolbar:</p>
<ul>
<li>Click the small triangle at the left of the toolbar. To show the toolbar,
click the triangle again. (Note: You cannot hide the Component Bar using
this method.)</li>
</ul>
<p>To completely hide a toolbar, including its triangle:</p>
<ol>
<li>Open the View menu.</li>
<li>Choose Show/Hide and uncheck the toolbars you want to hide.</li>
</ol>
<p>To reverse this action, open the View menu, choose Show, and then select
the toolbars you want to show.</p>
<p>[<a href="#toolbars">Return to beginning of section</a>]</p>
<h2 id="bookmarks">Bookmarks</h2>
<div class="contentsBox">In this section:
<ul>
<li><a href="#what_are_bookmarks">What Are Bookmarks?</a></li>
<li><a href="#using_bookmarks">Using Bookmarks</a></li>
<li><a href="#creating_new_bookmarks">Creating New Bookmarks</a></li>
<li><a href="#organizing_your_bookmarks">Organizing Your Bookmarks</a></li>
<li><a href="#changing_individual_bookmarks">Changing Individual
Bookmarks</a></li>
<li><a href="#searching_your_bookmarks">Searching Your Bookmarks</a></li>
<li><a href="#exporting_or_importing_a_bookmark_list">Exporting or
Importing a Bookmark List</a></li>
</ul>
</div>
<h3 id="what_are_bookmarks">What Are Bookmarks?</h3>
<p>Bookmarks are shortcuts to your favorite and most-visited web pages. Rather
than typing in long URLs (web addresses), you can create bookmarks that take
you directly to the pages you want to see.</p>
<p>You access your bookmarks through the Bookmarks menu, the Bookmarks tab on
Sidebar, and the Manage Bookmarks window. You can control what's listed
in the Bookmarks menu by adding bookmarks for your favorite web pages and
organizing your list of bookmarks any way you want.</p>
<h3 id="using_bookmarks">Using Bookmarks</h3>
<p>&brandShortName; comes with some bookmarks already available. To use a
bookmark:</p>
<ol>
<li>Open the Bookmarks menu.</li>
<li>Choose a bookmark from the list or from a folder in the list.</li>
</ol>
<p>[<a href="#bookmarks">Return to beginning of section</a>]</p>
<h3 id="creating_new_bookmarks">Creating New Bookmarks</h3>
<p>You can bookmark your favorite websites to make it easy to return to
them.</p>
<p>To bookmark the current page, perform one of these steps:</p>
<ul>
<li>To add a bookmark to the Bookmarks menu, open the Bookmarks menu and
choose Bookmark This Page.</li>
<li>To add a bookmark to a specific folder on the Bookmarks menu, or to
provide a specific name or URL for your bookmark:
<ol>
<li>Open the Bookmarks menu and choose File Bookmark. Choose from any of
these options:
<ul>
<li><strong>Name</strong>: Enter a name for the bookmark if you want
a different name.</li>
<li><strong>Location</strong>: Enter a URL for the bookmark if you
want a different URL.</li>
<li><strong>Keyword</strong>: Enter a keyword for the bookmark if you
want to be able to open the bookmarked page from the Location
Bar (see
<a href="nav_help.xhtml#custom_keywords">Using Custom Bookmark
Keywords</a>).</li>
<li><strong>Destination</strong>: Choose a folder in which to create
your bookmark.</li>
<li><strong>New Folder</strong>: Click this to create a new folder in
which to create your bookmark.</li>
</ul>
</li>
<li>Click OK to add the bookmark.</li>
</ol>
<p><strong>Tip</strong>: If you have multiple browser tabs open in a
window, you can select <q>Bookmark this groups of tabs</q> to add a
single bookmark that will open all of the open tabs in the current
window.</p>
</li>
<li>To add a bookmark to the Personal Toolbar, drag the bookmark icon
<img src="chrome://communicator/skin/bookmarks/bookmark-item.png"
alt="image of bookmark icon"/> next to the Location Bar to a place on
the Personal Toolbar. You can drag a bookmark to the following places:
<ul>
<li>In the Bookmarks folder on the Personal Toolbar.</li>
<li>In a bookmarks folder you've created on the Personal
Toolbar.</li>
<li>To the Personal Toolbar itself, on the right side of all bookmarks
folders.
<p>For more information about adding bookmarks to the Personal Toolbar,
see <a href="#adding_personal_toolbar_bookmarks">Adding Personal
Toolbar bookmarks</a>.</p>
</li>
</ul>
</li>
</ul>
<table summary="Image table">
<tr>
<td><img src="images/personalbar.png" alt="Personal Toolbar"/></td>
</tr>
<tr>
<td><strong>Personal Toolbar</strong></td>
</tr>
</table>
<ul>
<li>To add a bookmark to the Bookmarks tab in Sidebar, open Sidebar, select
the Bookmarks tab, and drag the bookmark icon
<img src="chrome://communicator/skin/bookmarks/bookmark-item.png"
alt="image of bookmark icon"/> next to the Location Bar to a place on
the bookmark list in the Bookmarks tab.
</li>
</ul>
<p><strong>Notes</strong>:</p>
<ul>
<li>The bookmark icon
<img src="chrome://communicator/skin/bookmarks/bookmark-item.png"
alt="image of bookmark icon"/> may appear as another page-specific
icon if you have checked Show Website Icons in preferences. See
<a href="cs_nav_prefs_appearance.xhtml#appearance">Appearance Preferences -
Appearance</a> for more information on changing this preferences.</li>
<li>After adding a bookmark using any of the methods listed above, it can be
accessed using the Sidebar Bookmarks tab, the Manage Bookmarks window, and
the Bookmarks menu.</li>
</ul>
<p>[<a href="#bookmarks">Return to beginning of section</a>]</p>
<h3 id="organizing_your_bookmarks">Organizing Your Bookmarks</h3>
<p>To organize your bookmarks, open the Bookmarks menu and choose Manage
Bookmarks. Perform any of the following tasks in your Manage Bookmarks
window.</p>
<p><strong>Tip</strong>: You can open the Manage Bookmarks window from the
Bookmarks tab in Sidebar. Click on Manage at the top of the Bookmarks
tab.</p>
<p>To view bookmarks inside of folders:</p>
<ul>
<li>Double-click a folder to view its contents.</li>
</ul>
<p>To move a bookmark or a folder to another location in the list:</p>
<ul>
<li>Drag the bookmark or folder that you want to move to the new location. To
put a bookmark in a folder, drag it to the folder.</li>
</ul>
<p>To create a new folder or separator:</p>
<ul>
<li>Click New Folder or New Separator at the top of the Bookmarks window. The
new folder or separator appears below the current selection.</li>
</ul>
<p>To remove a bookmark or a folder from the list:</p>
<ol>
<li>Click to highlight the bookmark or folder that you want to remove.</li>
<li>Press the Delete key on your keyboard, or click Delete in the Bookmarks
window.</li>
</ol>
<p>To sort your bookmarks in the Manage Bookmarks window:</p>
<ul>
<li>Select the folder you want to sort.</li>
<li>To sort bookmarks by Name, open the Edit menu and select Sort Folder by
Name.</li>
<li>To sort bookmarks in other ways, open the Edit menu and select Sort
Folder. In the dialog, choose how you want the list sorted.
<p><strong>Tip</strong>: To add more columns, open the View menu, open
<q>Show columns</q>, and select a column header in the list.</p></li>
</ul>
<h4>Designating a New Bookmark Folder</h4>
<p>When you create a new bookmark, &brandShortName; normally adds it to the
bottom of your bookmarks list. If you prefer to file your bookmarks in a
folder, you can designate a new bookmarks folder.</p>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>In your Bookmarks window, select a folder to hold new bookmarks.</li>
<li>Open the View menu and choose Set as New Bookmark Folder.</li>
</ol>
<p> [<a href="#bookmarks">Return to beginning of section</a>]</p>
<h3 id="changing_individual_bookmarks">Changing Individual Bookmarks</h3>
<p>You can change the information for any individual bookmark.</p>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>In your Bookmarks window, click a bookmark.</li>
<li>Click Properties.</li>
<li>In the bookmark Properties dialog box window, click the Info tab.</li>
</ol>
<p>You can rename the bookmark (the name appears in your bookmark list),
add descriptive information, or set a
<a href="nav_help.xhtml#custom_keywords">keyword</a>.</p>
<p>You can also set &brandShortName; to check bookmarked websites for
changes.</p>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>In your Bookmarks window, click a bookmark.</li>
<li>Click Properties.</li>
<li>Use the pull down lists and the textfield under <q>Check this location
for updates</q> to specify how often you want &brandShortName; to check the
bookmarked page for changes.</li>
<li>To be notified when the bookmarked page changes, choose from the options
in the <q>Notification</q> section.</li>
</ol>
<p> [<a href="#bookmarks">Return to beginning of section</a>]</p>
<h3 id="searching_your_bookmarks">Searching Your Bookmarks</h3>
<p>To search the bookmarks list:</p>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>In your Bookmarks window, open the Tools menu and choose Search
Bookmarks. You see the Find Bookmarks dialog box.</li>
<li>In the drop-down lists, choose options to define your search, and then
click Find. Bookmarks that match your search criteria are displayed. Choose
from the following Search options:
<ul>
<li>Choose "contains," "starts with," or "ends with" if you know only
part of the word or phrase for which you're searching.</li>
<li>Choose "is" if you know exactly what you're searching for.</li>
<li>Choose "is not" or "doesn't contain" to exclude pages.</li>
<li>Click the fill-in field and type all or part of name or URL
(web address) for the bookmarks or history listings that you want to
find or exclude.</li>
<li>Select <q>Save query in bookmarks</q> to save this search for
later use.</li>
</ul>
</li>
<li>Double-click a bookmark in the list to go to that page.</li>
</ol>
<p><strong>Tip</strong>: If the list is hard to read, try expanding the search
results window.</p>
<p>[<a href="#bookmarks">Return to beginning of section</a>]</p>
<h3 id="exporting_or_importing_a_bookmark_list">Exporting or Importing a
Bookmark List</h3>
<p>Your bookmarks are stored in a file named bookmarks.html. You can export a
copy of this file and save it in a folder of your choosing. You can then edit
it and treat it as you would any HTML file.</p>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>In your Bookmarks window, open the Tools menu, and choose Export.</li>
<li>In the <q>Export Bookmarks File</q> dialog box, choose a folder.
Your bookmarks.html file will be copied into the folder you designate.</li>
<li>Click Save.</li>
</ol>
<p>Your &brandShortName; bookmarks are not altered by this procedure.</p>
<p>You can also import bookmarks from other sources. For example, you can
import bookmarks from earlier &brandShortName; versions, other browsers, or
from bookmarks files that your friends send you.</p>
<p>Before you start, make sure that the bookmarks file you want to import is an
HTML file.</p>
<ol>
<li>Open the Bookmarks menu and choose Manage Bookmarks.</li>
<li>In your Bookmarks window, open the Tools menu and choose Import.</li>
<li>In the dialog that appears, choose whether you want to import bookmarks
from earlier versions of &brandShortName;, or from a bookmarks file on your
computer.</li>
<li>Click Continue.</li>
<li>If you have chosen to import bookmarks from an earlier version of
&brandShortName;, select the profile you want to import bookmarks from,
then click Continue. If you have chosen to import bookmarks from a
file, navigate to and select the bookmarks file you want to import, then
click Open.</li>
</ol>
<p>The imported bookmarks are treated as a group of new bookmarks and added to
the bottom of your bookmarks list. If you have designated a new bookmark
folder, the imported bookmarks are added to that folder.</p>
<p><strong>Note</strong>: Importing a bookmarks file imports the bookmarks and
folders from that file. It does not create two bookmarks files.</p>
<p>[<a href="#bookmarks">Return to beginning of section</a>]</p>
<h2 id="specifying_how_mozilla_starts_up">Specifying How &brandShortName;
Starts Up</h2>
<div class="contentsBox">In this section:
<ul>
<li><a href="#specifying_a_starting_page">Specifying a Starting Page</a></li>
<li><a href="#session_restore">Session Restore</a></li>
<li><a href="#changing_your_home_page">Changing Your Home Page</a></li>
<li><a href="#specifying_which_components_open_at_launch">Specifying Which
Components Open at Launch</a></li>
</ul>
</div>
<h3 id="specifying_a_starting_page">Specifying a Starting Page</h3>
<p>You can specify the page that loads when the browser starts:</p>
<ol>
<li>Open the <span class="mac">&brandShortName;</span>
<span class="noMac">Edit</span> menu and choose Preferences.</li>
<li>Under "Display on Browser Startup" choose whether you want a
blank page, your home page, or the last web page visited to open
automatically when you launch your browser. Alternatively you can
tell &brandShortName; to restore the previous session, i.e. the
windows and tabs you had open when you last exited &brandShortName;.
<p><strong>Note</strong>: If you selected Home Page, type the URL in the
Location Bar.</p></li>
</ol>
<p>[<a href="#specifying_how_mozilla_starts_up">Return to beginning of
section</a>]</p>
<h3 id="session_restore">Session Restore</h3>
<p>&brandShortName; periodically saves your browsing session (open windows
and tabs, including form data) to disk. When you start &brandShortName; with
Session Restore enabled, the windows and tabs from your previous session
will be restored. This is especially useful if your previous browsing session
ended unexpectedly (e.g. your computer crashed or a website you visited forced
&brandShortName; to terminate). &brandShortName; will automatically restore
the previous session if "Restore Previous Session" under "Display on Browser
Startup" has been selected. If you chose to not be warned when you close a
browser window with multiple tabs open (see <a href="#tabbed_browsing">Tabbed
Browsing</a> preference panel), &brandShortName; will open a page from
where you can choose which windows/tabs from the previous session you want to
restore. The same will happen if &brandShortName; crashes repeatedly.</p>
<p>[<a href="#specifying_how_mozilla_starts_up">Return to beginning of
section</a>]</p>
<h3 id="changing_your_home_page">Changing Your Home Page</h3>
<p>Your home page is the page that opens when you click the Home button in the
Personal Toolbar. Depending on how your preferences are set, it may also be
the page that opens automatically when you launch &brandShortName;.</p>
<p>To specify your home page:</p>
<ol>
<li>Open the <span class="mac">&brandShortName;</span>
<span class="noMac">Edit</span> menu and choose Preferences.</li>
<li>Click the Browser category.</li>
<li>In the Home page section, perform one of the following:
<ul>
<li>Type your home page's URL (web address) in the Location
field.</li>
<li>Click Use Current Page to make the page currently displayed in the
browser window your home page.</li>
<li>Click Choose File to select a file from your computer's hard
drive.</li>
</ul>
</li>
</ol>
<p><strong>Tip</strong>: To specify your home page quickly, drag the bookmark
icon <img src="chrome://communicator/skin/bookmarks/bookmark-item.png"
alt="image of bookmark icon"/> from the Location Bar to the Home Page
button on the Personal Toolbar.</p>
<p>[<a href="#specifying_how_mozilla_starts_up">Return to beginning of
section</a>]</p>
<h3 id="specifying_which_components_open_at_launch">Specifying Which Components
Open at Launch</h3>
<p>You can choose components (such as Mail & Newsgroups and Composer) to
launch when you start &brandShortName;:</p>
<ol>
<li>Open the <span class="mac">&brandShortName;</span>
<span class="noMac">Edit</span> menu and choose Preferences.</li>
<li>Click the Appearance category.</li>
<li>Select the components you want opened automatically each time you start
&brandShortName;.</li>
</ol>
<p>[<a href="#specifying_how_mozilla_starts_up">Return to beginning of
section</a>]</p>
<p>©right.string;</p>
</body>
</html>
|