Prestige theme home page search - make visible on mobile/add icon

I have the prestige theme and wantto make the search button on the homepage visible on mobile, as well as convert “search” to a magnifying/search icon for mobile users.

When using the website on desktop the search appears at the top-right of the screen like so:

But when on mobile, the search completely disappears and is only available in the navigation menu

search gone - mobile.png

I would like the icon to appear right next to the shopping cart icon above.

I have already found the search form in the code directory at line 305:

  • {{ 'header.navigation.search' | t }}
  • How do I go about doing this?

    Hello @mso872 ,

    Check here the demo of Prestige theme https://themes.shopify.com/themes/prestige/styles/couture/preview?mobile=true you will find in mobile version search icons is available left to cart icon.
    And to change their position you have to alter their html but there is no such issue in this theme as you mentioned.

    But still you find there is then I suggest reach to theme support or check theme documentation.

    Thanks

    1 Like

    I have received no response to my support request to the theme owners in 13 days and still having this issue

    1 Like

    @mso872

    Sorry you are facing this issue, it would be my pleasure to help you.

    Welcome to the Shopify community! :blush:
    Thanks for your good question.

    Please share your site URL,
    I will check out the issue and provide you a solution here.

    1 Like

    https://www.thepomegranateboutique.com/

    1 Like

    @mso872

    yes its possible but i can’t see more spacing may be logo font need to smaller is this fine?

    1 Like

    I don’t think it’s the logo font; we are not using a logo in the header, only the store name. I have tried shortening the store name to only three letters, yet the search icon still does not appear.

    1 Like

    @mso872

    sorry i can’t see can you please short name and let me know

    1 Like

    I have changed the store name to “Pom Boutique” https://www.thepomegranateboutique.com/

    1 Like

    can you please share header code so i will check and update

    1 Like
    {%- assign use_transparent_header = false -%}
    
    {%- if template == 'index' and section.settings.enable_transparent_header -%}
      {%- assign use_transparent_header = true -%}
    {%- endif -%}
    
    {%- if template.name == 'collection' and section.settings.enable_transparent_header_collection and collection.image and collection.all_products_count > 0 and collection.template_suffix != 'no-image' -%}
      {%- assign use_transparent_header = true -%}
    {%- endif -%}
    
    {%- if section.settings.navigation_style != 'sidebar' -%}
      {%- assign use_sidebar_menu = false -%}
    {%- else -%}
      {%- assign use_sidebar_menu = true -%}
    {%- endif -%}
    
    {%- if settings.currency_conversion_enabled -%}
      {%- capture currency_conversion_select -%}
        
    
          
    
            
    
            {%- include 'icon' with 'select-arrow' -%}
          
    
        
    
      {%- endcapture -%}
    {%- endif -%}
    
    {%- comment -%}
    --------------------------------------------------------------------------------------------------------------------
    HEADER CONTENT
    --------------------------------------------------------------------------------------------------------------------
    {%- endcomment -%}
    
    {%- capture section_settings -%}
    {
      "navigationStyle": {{ section.settings.navigation_style | json }},
      "hasTransparentHeader": {% if use_transparent_header %}true{% else %}false{% endif %},
      "isSticky": {% if section.settings.use_sticky_header %}true{% else %}false{% endif %}
    }
    {%- endcapture -%}
    
    {% schema %}
    {
      "name": "Header",
      "class": "shopify-section--header",
      "settings": [
        {
          "type": "checkbox",
          "id": "use_sticky_header",
          "label": "Use sticky header",
          "default": true
        },
        {
          "type": "image_picker",
          "id": "logo",
          "label": "Logo image",
          "info": "200 x 60px png recommended"
        },
        {
          "type": "range",
          "id": "logo_max_width",
          "min": 50,
          "max": 350,
          "step": 5,
          "unit": "px",
          "label": "Logo image width",
          "default": 140
        },
        {
          "type": "range",
          "id": "mobile_logo_max_width",
          "min": 50,
          "max": 200,
          "step": 5,
          "unit": "px",
          "label": "Mobile logo image width",
          "default": 90
        },
        {
          "type": "header",
          "content": "Navigation"
        },
        {
          "type": "link_list",
          "id": "navigation_menu",
          "label": "Menu",
          "default": "main-menu"
        },
        {
          "type": "select",
          "id": "navigation_style",
          "label": "Navigation style",
          "info": "Setting will default to center style if screen width cannot fit all the links.",
          "options": [
            {
              "value": "sidebar",
              "label": "Sidebar"
            },
            {
              "value": "inline",
              "label": "Inline"
            },
            {
              "value": "center",
              "label": "Center"
            }
          ],
          "default": "inline"
        },
        {
          "type": "header",
          "content": "Transparent header"
        },
        {
          "type": "checkbox",
          "id": "enable_transparent_header",
          "label": "Enable on homepage",
          "default": false
        },
        {
          "type": "checkbox",
          "id": "enable_transparent_header_collection",
          "label": "Enable on collection pages",
          "info": "Only if the collection has an image.",
          "default": false
        },
        {
          "type": "checkbox",
          "id": "show_transparent_header_border",
          "label": "Show separation border",
          "default": true
        },
        {
          "type": "color",
          "id": "transparent_text_color",
          "label": "Text/icon color",
          "default": "#ffffff"
        },
        {
          "type": "image_picker",
          "id": "transparent_logo",
          "label": "Logo image",
          "info": "200 x 60px png recommended"
        }
      ],
      "blocks": [
        {
          "type": "mega_menu",
          "name": "Mega menu",
          "settings": [
            {
              "type": "text",
              "id": "navigation_mega_menu",
              "label": "Menu item",
              "info": "Enter menu item to apply a mega menu dropdown. [Learn more](http://support.maestrooo.com/article/149-navigation-enabling-and-configuring-mega-menu)."
            },
            {
              "type": "header",
              "content": "Image push 1"
            },
            {
              "type": "image_picker",
              "id": "push_1_image",
              "label": "Image",
              "info": "740 x 460 px jpg recommended"
            },
            {
              "type": "text",
              "id": "push_1_heading",
              "label": "Heading",
              "default": "Example heading"
            },
            {
              "type": "text",
              "id": "push_1_subheading",
              "label": "Sub-heading",
              "default": "Example sub-heading"
            },
            {
              "type": "url",
              "id": "push_1_url",
              "label": "Link"
            },
            {
              "type": "header",
              "content": "Image push 2"
            },
            {
              "type": "image_picker",
              "id": "push_2_image",
              "label": "Image",
              "info": "740 x 460 px jpg recommended"
            },
            {
              "type": "text",
              "id": "push_2_heading",
              "label": "Heading",
              "default": "Example heading"
            },
            {
              "type": "text",
              "id": "push_2_subheading",
              "label": "Sub-heading",
              "default": "Example sub-heading"
            },
            {
              "type": "url",
              "id": "push_2_url",
              "label": "Link"
            }
          ]
        }
      ]
    }
    {% endschema %}
    
    {%- assign use_transparent_header = false -%}
    
    {%- if template == 'index' and section.settings.enable_transparent_header -%}
      {%- assign use_transparent_header = true -%}
    {%- endif -%}
    
    {%- if template.name == 'collection' and section.settings.enable_transparent_header_collection and collection.image and collection.all_products_count > 0 and collection.template_suffix != 'no-image' -%}
      {%- assign use_transparent_header = true -%}
    {%- endif -%}
    
    {%- if section.settings.navigation_style != 'sidebar' -%}
      {%- assign use_sidebar_menu = false -%}
    {%- else -%}
      {%- assign use_sidebar_menu = true -%}
    {%- endif -%}
    
    {%- if settings.currency_conversion_enabled -%}
      {%- capture currency_conversion_select -%}
        
    
          
    
            
    
            {%- include 'icon' with 'select-arrow' -%}
          
    
        
    
      {%- endcapture -%}
    {%- endif -%}
    
    {%- comment -%}
    --------------------------------------------------------------------------------------------------------------------
    HEADER CONTENT
    --------------------------------------------------------------------------------------------------------------------
    {%- endcomment -%}
    
    {%- capture section_settings -%}
    {
      "navigationStyle": {{ section.settings.navigation_style | json }},
      "hasTransparentHeader": {% if use_transparent_header %}true{% else %}false{% endif %},
      "isSticky": {% if section.settings.use_sticky_header %}true{% else %}false{% endif %}
    }
    {%- endcapture -%}
    
    {% schema %}
    {
      "name": "Header",
      "class": "shopify-section--header",
      "settings": [
        {
          "type": "checkbox",
          "id": "use_sticky_header",
          "label": "Use sticky header",
          "default": true
        },
        {
          "type": "image_picker",
          "id": "logo",
          "label": "Logo image",
          "info": "200 x 60px png recommended"
        },
        {
          "type": "range",
          "id": "logo_max_width",
          "min": 50,
          "max": 350,
          "step": 5,
          "unit": "px",
          "label": "Logo image width",
          "default": 140
        },
        {
          "type": "range",
          "id": "mobile_logo_max_width",
          "min": 50,
          "max": 200,
          "step": 5,
          "unit": "px",
          "label": "Mobile logo image width",
          "default": 90
        },
        {
          "type": "header",
          "content": "Navigation"
        },
        {
          "type": "link_list",
          "id": "navigation_menu",
          "label": "Menu",
          "default": "main-menu"
        },
        {
          "type": "select",
          "id": "navigation_style",
          "label": "Navigation style",
          "info": "Setting will default to center style if screen width cannot fit all the links.",
          "options": [
            {
              "value": "sidebar",
              "label": "Sidebar"
            },
            {
              "value": "inline",
              "label": "Inline"
            },
            {
              "value": "center",
              "label": "Center"
            }
          ],
          "default": "inline"
        },
        {
          "type": "header",
          "content": "Transparent header"
        },
        {
          "type": "checkbox",
          "id": "enable_transparent_header",
          "label": "Enable on homepage",
          "default": false
        },
        {
          "type": "checkbox",
          "id": "enable_transparent_header_collection",
          "label": "Enable on collection pages",
          "info": "Only if the collection has an image.",
          "default": false
        },
        {
          "type": "checkbox",
          "id": "show_transparent_header_border",
          "label": "Show separation border",
          "default": true
        },
        {
          "type": "color",
          "id": "transparent_text_color",
          "label": "Text/icon color",
          "default": "#ffffff"
        },
        {
          "type": "image_picker",
          "id": "transparent_logo",
          "label": "Logo image",
          "info": "200 x 60px png recommended"
        }
      ],
      "blocks": [
        {
          "type": "mega_menu",
          "name": "Mega menu",
          "settings": [
            {
              "type": "text",
              "id": "navigation_mega_menu",
              "label": "Menu item",
              "info": "Enter menu item to apply a mega menu dropdown. [Learn more](http://support.maestrooo.com/article/149-navigation-enabling-and-configuring-mega-menu)."
            },
            {
              "type": "header",
              "content": "Image push 1"
            },
            {
              "type": "image_picker",
              "id": "push_1_image",
              "label": "Image",
              "info": "740 x 460 px jpg recommended"
            },
            {
              "type": "text",
              "id": "push_1_heading",
              "label": "Heading",
              "default": "Example heading"
            },
            {
              "type": "text",
              "id": "push_1_subheading",
              "label": "Sub-heading",
              "default": "Example sub-heading"
            },
            {
              "type": "url",
              "id": "push_1_url",
              "label": "Link"
            },
            {
              "type": "header",
              "content": "Image push 2"
            },
            {
              "type": "image_picker",
              "id": "push_2_image",
              "label": "Image",
              "info": "740 x 460 px jpg recommended"
            },
            {
              "type": "text",
              "id": "push_2_heading",
              "label": "Heading",
              "default": "Example heading"
            },
            {
              "type": "text",
              "id": "push_2_subheading",
              "label": "Sub-heading",
              "default": "Example sub-heading"
            },
            {
              "type": "url",
              "id": "push_2_url",
              "label": "Link"
            }
          ]
        }
      ]
    }
    {% endschema %}
    
    1 Like

    @mso872

    thanks but this code was create by confution

    if possible to add me staff account so i will easy to manage code

    1 Like

    Ketan, I appreciate all your help thus far. We have decided to upgrade to a new theme that is more responsive and has features since our theme is fairly dated now at about 4-5 years old. You can cancel my request.

    1 Like

    @mso872

    yes, sure

    thanks for your update

    Hi there,

    I would like the customer icon in the header appear on the mobile version of my app. Using the prestige theme. And currently only seeing cart and search. Ideally, would like to see search on the left, and account + cart on the right on the mobile version. Can you help?

    Website: www.tribucollection.be