Skip to main content
All CollectionsTracking PagesCustomize the tracking page
Customize your Track123 Page via CSS (For traditional style)
Customize your Track123 Page via CSS (For traditional style)
Updated over 10 months ago

This article can help you understand how to customize your Tracking page via CSS.

Please add the CSS codes in the track123 > tracking page > customize > CSS

Note: If you don't know how to do this, you can always contact us to help you. πŸ˜„

Center your tracking form title

.track123_track_form_title {text-align: center !important;}

Change title font size

.track123_track_form_title {font-size: 25px;} 

Customize the track button

.track123_form_button {
background: #334fb4;
border: 1px solid #334fb4;
color: #FFFFFF;
border-radius: 2px;
padding: 10px 22px;
}

Customize the track button (hover state)

.track123_form_button:hover {
background-color: #b67721;
color: #ffffff;
border-radius: 2px;
}

or

.track123_form_button:after {
border-radius: 2px;
}

Customize tracking form background color and text color

.track123_form_wrapper{
background-color: #583C16;
color: #ffffff;
}

Customize input fields

.track123_form_field{
color:#000000
}

Customize the input box border

.field:after {  border: 0.1rem solid #f44336;  box-shadow: none;}
.track123_form_input { padding: 10px !important;}

Customize the text color and font family of tracking detailed info

 .track123_track_content{
color: #000000;
font-family: 'Playfair Display';
}

Add some padding to the top of the tracking page

.track_form {  padding-top: 100px;}

Change the color of the icons above the progress bar

.track123_icon svg circle, path {   fill: #9e9e9e !important; stroke: #333333 !important}

Bold and change the size the text on the tracking page

1 Order number

.track123_result_title { font-size: 14px; font-weight: 600; }

2. Status

.track123_order_status { font-size: 14px; font-weight: 600; }

3. Order statuses in the process bar

.track123_order_step_line_status_name { font-size: 14px; font-weight: 600; }

4. Time in the process bar

.track123_order_step_line_time { font-size: 14px; font-weight: 600; }

5. Shipping Details title

.track123_order_detail_title { font-size: 14px; font-weight: 600; }

6. The time in the Shipping Details

.track123_track_date { font-size: 14px; font-weight: 600; }

7. The text in the Shipping Details

.track123_track_desc { font-size: 14px; font-weight: 600; }

8. Package info

.track123_order_package_title { font-size: 14px; font-weight: 600; }

9. address

.track123_order_detail_sub_title{ font-size: 14px; font-weight: 600; }

Did this answer your question?