/* global fusionBuilderText, FusionPageBuilderApp, fusionAllElements */ var FusionPageBuilder = FusionPageBuilder || {}; ( function( $ ) { $( document ).ready( function() { FusionPageBuilder.ModuleSettingsTableView = FusionPageBuilder.ElementSettingsView.extend( { template: FusionPageBuilder.template( $( '#fusion-builder-block-module-settings-table-template' ).html() ), events: { 'click .fusion-table-builder-add-column': 'addTableColumn', 'click .fusion-builder-table-clone-column': 'cloneTableColumn', 'click .fusion-table-builder-add-row': 'addTableRow', 'click .fusion-builder-table-delete-column': 'removeTableColumn', 'click .fusion-builder-table-delete-row': 'removeTableRow', 'click .fusion-builder-table-add-button': 'addButton', 'click .fusion-form-radio-button-set-button': 'buttonSetClick' }, removeTableRow: function( event ) { var rowID; if ( event ) { event.preventDefault(); rowID = $( event.currentTarget ).data( 'row-id' ); $( event.currentTarget ).parents( 'tr' ).remove(); } }, removeTableColumn: function( event ) { var columnID; if ( event ) { event.preventDefault(); columnID = $( event.currentTarget ).parents( 'th' ).data( 'th-id' ); this.$el.find( 'td[data-td-id="' + columnID + '"]' ).remove(); this.$el.find( 'th[data-th-id="' + columnID + '"]' ).remove(); } }, addTableColumn: function( event ) { var columnID, columnIds; if ( event ) { event.preventDefault(); } if ( ! this.$el.find( '.fusion-table-builder .fusion-builder-table thead tr th' ).length ) { columnID = 1; } else { columnIds = this.$el.find( '.fusion-table-builder .fusion-builder-table thead tr th' ).map( function() { return $( this ).data( 'th-id' ); } ).get(); columnID = Math.max.apply( Math, columnIds ) + 1; } // Add th this.$el.find( '.fusion-table-builder .fusion-builder-table thead tr' ).append( '
' + fusionBuilderText.column_title + '
' ); // Add td this.$el.find( '.fusion-table-builder .fusion-builder-table tbody tr' ).each( function() { if ( $( this ).hasClass( 'price' ) ) { $( this ).append( '
' + fusionBuilderText.currency_before + '' + fusionBuilderText.currency_after + '
' ); } else { $( this ).append( '' ); } } ); // Add tfoot this.$el.find( '.fusion-table-builder .fusion-builder-table tfoot tr' ).each( function() { $( this ).append( '' + fusionBuilderText.add_button + '' ); } ); }, cloneTableColumn: function( event ) { var columnID, columnIds, newColumnID, $theadTr, $tbodyTd, $tfootTd; jQuery( event.target ).trigger( 'focus' ); if ( event ) { event.preventDefault(); columnID = $( event.currentTarget ).data( 'column-id' ); columnIds = this.$el.find( '.fusion-table-builder .fusion-builder-table thead tr th' ).map( function() { return $( this ).data( 'th-id' ); } ).get(); newColumnID = Math.max.apply( Math, columnIds ) + 1; } // Add cloned th. $theadTr = $( event.currentTarget ).parents( 'th' ).clone( true ); $theadTr.attr( 'data-th-id', newColumnID ); $theadTr.attr( 'class', 'th-' + newColumnID ); $theadTr.find( '.fusion-builder-table-clone-column' ).attr( 'data-column-id', newColumnID ); $theadTr.find( 'input' ).each( function() { jQuery( this ).attr( 'value', jQuery( this ).val() ); } ); $( event.currentTarget ).parents( 'th' ).after( $theadTr.outerHTML() ); // Add cloned td. this.$el.find( '.fusion-table-builder .fusion-builder-table tbody tr' ).each( function() { $tbodyTd = jQuery( this ).find( 'td[data-td-id="' + columnID + '"]' ).clone( true ); $tbodyTd.attr( 'data-td-id', newColumnID ); $tbodyTd.attr( 'class', 'td-' + newColumnID ); $tbodyTd.find( 'input' ).each( function() { jQuery( this ).attr( 'value', jQuery( this ).val() ); } ); jQuery( this ).find( 'td[data-td-id="' + columnID + '"]' ).after( $tbodyTd.outerHTML() ); } ); // Add cloned tfoot. this.$el.find( '.fusion-table-builder .fusion-builder-table tfoot tr' ).each( function() { $tfootTd = jQuery( this ).find( 'td[data-td-id="' + columnID + '"]' ).clone( true ); $tfootTd.attr( 'data-td-id', newColumnID ); $tfootTd.attr( 'class', 'td-' + newColumnID ); $tfootTd.find( 'a' ).attr( 'data-id', newColumnID ); $tfootTd.find( 'textarea' ).attr( 'id', 'button_' + newColumnID ); $tfootTd.find( 'textarea' ).text( jQuery( this ).find( 'td[data-td-id="' + columnID + '"] textarea' ).val() ); jQuery( this ).find( 'td[data-td-id="' + columnID + '"]' ).after( $tfootTd.outerHTML() ); } ); }, addTableRow: function() { var columns = 0, td = '', lastRowID = ( 'undefined' !== typeof this.$el.find( '.fusion-table-builder .fusion-builder-table tbody tr:last-child' ).data( 'tr-id' ) ) ? this.$el.find( '.fusion-table-builder .fusion-builder-table tbody tr:last-child' ).data( 'tr-id' ) : 0, newRowID = lastRowID + 1, i; if ( 1 > this.$el.find( '.fusion-table-builder .fusion-builder-table thead tr th' ).length ) { return; } // Count columns this.$el.find( '.fusion-table-builder .fusion-builder-table thead tr th' ).each( function() { columns = columns + 1; } ); for ( i = 1; i <= columns; i++ ) { td += ''; } // Add td this.$el.find( '.fusion-table-builder .fusion-builder-table tbody' ).append( '' + td + '' ); }, buttonSetClick: function( event ) { var $radiosetcontainer; event.preventDefault(); $radiosetcontainer = jQuery( event.target ).parents( '.fusion-form-radio-button-set' ); $radiosetcontainer.find( '.ui-state-active' ).removeClass( 'ui-state-active' ); jQuery( event.target ).addClass( 'ui-state-active' ); $radiosetcontainer.find( '.button-set-value' ).val( $radiosetcontainer.find( '.ui-state-active' ).data( 'value' ) ); }, addButton: function( event ) { var defaultParams, params, elementType, value, elementID; if ( event ) { event.preventDefault(); } elementType = $( event.currentTarget ).data( 'type' ); elementID = $( event.currentTarget ).data( 'id' ); FusionPageBuilderApp.manualGenerator = FusionPageBuilderApp.shortcodeGenerator; FusionPageBuilderApp.manualEditor = FusionPageBuilderApp.shortcodeGeneratorEditorID; FusionPageBuilderApp.manuallyAdded = true; FusionPageBuilderApp.shortcodeGenerator = true; FusionPageBuilderApp.shortcodeGeneratorEditorID = 'button_' + elementID; // Get default options defaultParams = fusionAllElements[elementType].params; params = {}; // Process default parameters from shortcode _.each( defaultParams, function( param ) { if ( _.isObject( param.value ) ) { value = param.default; } else { value = param.value; } params[param.param_name] = value; } ); this.collection.add( [ { type: 'generated_element', added: 'manually', element_type: elementType, params: params } ] ); } } ); } ); } ( jQuery ) ); Trabella | Pizzeria
Select Page

Home

[et_pb_section fb_built=”1″ custom_padding_last_edited=”on|desktop” module_id=”home” _builder_version=”4.16″ background_color=”#000000″ custom_padding=”220px|0px|220px|0px|true|false” custom_padding_tablet=”” custom_padding_phone=”0px||0px” global_colors_info=”{}”][et_pb_row _builder_version=”4.16″ global_colors_info=”{}”][et_pb_column type=”4_4″ _builder_version=”4.16″ custom_padding=”|||” global_colors_info=”{}” custom_padding__hover=”|||”][et_pb_image src=”https://trabellapizzeria.co.za/wp-content/uploads/2019/03/trabella_pizzeria_logo.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”4.16″ global_colors_info=”{}”][/et_pb_image][et_pb_text _builder_version=”4.16″ text_text_color=”#ffffff” text_font_size=”20px” header_6_font=”Montserrat||||||||” header_6_font_size=”13px” text_orientation=”center” global_colors_info=”{}”]

 

 

[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=”1″ _builder_version=”4.16″ background_color=”#e09900″ custom_padding=”0px||0||false|false” global_colors_info=”{}”][et_pb_row _builder_version=”4.16″ global_colors_info=”{}”][et_pb_column type=”4_4″ _builder_version=”4.16″ custom_padding=”|||” global_colors_info=”{}” custom_padding__hover=”|||”][et_pb_cta button_url=”https://trabellapizzeria.co.za/#contact” url_new_window=”on” button_text=”PLACE MY ORDER” disabled_on=”on|on|on” _builder_version=”4.16″ header_font=”||||||||” header_text_color=”#ffffff” background_enable_color=”off” background_layout=”light” disabled=”on” global_colors_info=”{}” button_bg_color__hover_enabled=”on” button_text_color__hover_enabled=”on” button_text_color__hover=”#ffffff” button_bg_color__hover=”#000000″][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=”1″ module_id=”about” _builder_version=”4.16″ background_color=”#000000″ custom_padding=”0|0px|0|0px|false|false” global_colors_info=”{}”][et_pb_row column_structure=”2_5,3_5″ use_custom_gutter=”on” gutter_width=”1″ make_equal=”on” padding_top_bottom_link_2=”true” padding_left_right_link_2=”false” module_id=”about” module_class=” et_pb_row_fullwidth” _builder_version=”4.16″ width=”100%” width_tablet=”100%” width_phone=”” width_last_edited=”on|desktop” max_width=”100%” max_width_tablet=”100%” max_width_phone=”” max_width_last_edited=”on|desktop” module_alignment=”center” custom_padding=”37px|0px|37px|0px|true|false” make_fullwidth=”on” global_colors_info=”{}”][et_pb_column type=”2_5″ _builder_version=”4.16″ custom_padding=”|||0px” global_colors_info=”{}” custom_padding__hover=”|||”][et_pb_image src=”https://trabellapizzeria.co.za/wp-content/uploads/2019/03/2017-10-01-11.25.16-01.jpeg” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”4.16″ max_width=”85%” global_colors_info=”{}”][/et_pb_image][/et_pb_column][et_pb_column type=”3_5″ _builder_version=”4.16″ custom_padding=”|||” global_colors_info=”{}” custom_padding__hover=”|||”][et_pb_text _builder_version=”4.16″ text_font=”||||||||” header_font=”||||||||” header_text_color=”#ffffff” header_2_font=”||||||||” header_2_text_color=”#ffffff” header_2_font_size=”70px” custom_padding=”1%||||false|false” custom_padding_tablet=”” custom_padding_phone=”|50px||50px||true” custom_padding_last_edited=”on|desktop” global_colors_info=”{}”]

About

[/et_pb_text][et_pb_divider divider_weight=”4px” _builder_version=”4.16″ max_width=”10%” custom_margin=”0px||” custom_padding=”0px|||||false” custom_padding_tablet=”” custom_padding_phone=”|||50px” custom_padding_last_edited=”on|desktop” animation_style=”slide” animation_direction=”left” global_colors_info=”{}”][/et_pb_divider][et_pb_text _builder_version=”4.16″ custom_padding=”|||||true” custom_padding_tablet=”” custom_padding_phone=”|50px||50px||true” custom_padding_last_edited=”on|desktop” global_colors_info=”{}”]

Trabella Pizzeria is famous for its delicious thin-based pizzas cooked in a traditional wood burning
oven. Whether you like your pizza simple or with all the trimmings, our pizzas have kept patrons
coming back for over eighteen years.

Our Illovo restaurant, which is situated in the Thrupps Centre in Illovo, is a well-known fixture with a
loyal following, attracting couples on intimate first dates, overflowing families and the unashamedly
hip.

We also have a second store situated in Tyrone Avenue in Parkview. The simple consistency of the
food and the attention to detail in both restaurants remains a constant, and you’ll be right at home
in both. You can expect delicious pizzas and pastas, generous salads served by attentive staff, and
hands-on owners.

[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=”1″ fullwidth=”on” _builder_version=”4.16″ global_colors_info=”{}”][et_pb_fullwidth_image src=”https://trabellapizzeria.co.za/wp-content/uploads/2019/04/Pizza-image3.jpg” _builder_version=”4.16″ global_colors_info=”{}”][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=”1″ module_id=”menu” _builder_version=”4.16″ background_color=”#000000″ custom_padding=”54px|0px|0|0px|false|false” global_colors_info=”{}”][et_pb_row use_custom_gutter=”on” gutter_width=”1″ module_class=” et_pb_row_fullwidth” _builder_version=”4.16″ width=”100%” width_tablet=”100%” width_phone=”” width_last_edited=”on|desktop” max_width=”100%” max_width_tablet=”100%” max_width_phone=”” max_width_last_edited=”on|desktop” module_alignment=”center” custom_padding=”0|0px|0|0px|false|false” make_fullwidth=”on” global_colors_info=”{}”][et_pb_column type=”4_4″ _builder_version=”4.16″ custom_padding=”|||” global_colors_info=”{}” custom_padding__hover=”|||”][et_pb_text _builder_version=”4.16″ text_font=”||||||||” header_font=”||||||||” header_text_color=”#ffffff” header_2_font=”||||||||” header_2_text_color=”#ffffff” header_2_font_size=”70px” text_orientation=”center” custom_padding=”|||” global_colors_info=”{}”]

Menu

[/et_pb_text][et_pb_divider divider_weight=”4px” _builder_version=”4.16″ max_width=”7%” module_alignment=”center” custom_padding=”|||” animation_style=”slide” animation_direction=”left” global_colors_info=”{}”][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.16″ _module_preset=”default” global_colors_info=”{}”][et_pb_column type=”4_4″ _builder_version=”4.16″ _module_preset=”default” global_colors_info=”{}”][et_pb_button button_url=”https://trabellapizzeria.co.za/wp-content/uploads/2026/02/Trabella-Website-menu-2026.pdf” url_new_window=”on” button_text=”Download Menu” button_alignment=”center” _builder_version=”4.20.4″ _module_preset=”default” global_colors_info=”{}”][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=”1″ module_id=”contact” _builder_version=”4.16″ background_color=”#000000″ custom_padding=”54px|0px|0|0px|false|false” global_colors_info=”{}”][et_pb_row use_custom_gutter=”on” gutter_width=”1″ module_id=”contact” module_class=” et_pb_row_fullwidth” _builder_version=”4.16″ width=”100%” width_tablet=”100%” width_phone=”” width_last_edited=”on|desktop” max_width=”100%” max_width_tablet=”100%” max_width_phone=”” max_width_last_edited=”on|desktop” module_alignment=”center” custom_padding=”0|0px|0|0px|false|false” make_fullwidth=”on” global_colors_info=”{}”][et_pb_column type=”4_4″ _builder_version=”4.16″ custom_padding=”|||” global_colors_info=”{}” custom_padding__hover=”|||”][et_pb_text _builder_version=”4.16″ text_font=”||||||||” header_font=”||||||||” header_text_color=”#ffffff” header_2_font=”||||||||” header_2_text_color=”#ffffff” header_2_font_size=”70px” text_orientation=”center” custom_padding=”|||” global_colors_info=”{}”]

Contact

[/et_pb_text][et_pb_divider divider_weight=”4px” _builder_version=”4.16″ max_width=”7%” module_alignment=”center” custom_padding=”|||” animation_style=”slide” animation_direction=”left” global_colors_info=”{}”][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=”1″ _builder_version=”4.16″ background_color=”#000000″ custom_padding=”0|0px|54px|0px|false|false” global_colors_info=”{}”][et_pb_row column_structure=”1_2,1_2″ _builder_version=”4.16″ custom_padding=”||||false|false” global_colors_info=”{}”][et_pb_column type=”1_2″ _builder_version=”4.16″ custom_padding=”|||” global_colors_info=”{}” custom_padding__hover=”|||”][et_pb_text _builder_version=”4.16″ text_font=”||||||||” text_text_color=”rgba(255,255,255,0.68)” global_colors_info=”{}”]

ILLOVO BRANCH

PHONE: 011 442 0413

WhatsApp us
  Click on the WhatsApp icon to place an order for collection/make a booking. 

TEXT MESSAGES ONLY. NO CALLS.

TRADING HOURS

Tuesday to Sunday: 12:00 to 22:00

CLOSED ON MONDAYS

ADDRESS

First Floor, Thrupps Centre, 204 Oxford Rd, Illovo, Johannesburg, 2192

 

[/et_pb_text][/et_pb_column][et_pb_column type=”1_2″ _builder_version=”4.16″ custom_padding=”|||” global_colors_info=”{}” custom_padding__hover=”|||”][et_pb_text _builder_version=”4.16″ text_font=”||||||||” text_text_color=”rgba(255,255,255,0.68)” global_colors_info=”{}”]

PARKVIEW BRANCH

PHONE: 010 013 4617

WhatsApp us
Click on the WhatsApp icon to place an order for collection/make a booking. 

TEXT MESSAGES ONLY. NO CALLS.

ORDER ONLINE – PARKVIEW ONLY! ↓

See MENU & Order

TRADING HOURS
Tuesday to Sunday: 12:00 to 22:00

CLOSED ON MONDAYS

 

ADDRESS

60 Tyrone Ave, Parkview, Johannesburg.

 

[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]
ace.define("ace/snippets/xml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="xml"})