CSS SCSS Snippet: Customize a Horizontal Menu (Layout 9)

Since QAN 6.4 version, you have more options to customize the menus and layouts of your Apps.

You only have to go the "Colors" section and activate "Advanced Customization CSS SCSS".

From now on, with a little bit of CSS Knowledge, you can modifiy all the layout elements. For example if you want to have the icon and title of a horizontal menu (layout 9), you have to copy and paste the next snippet:

.layout {
    ul.items li {
        height: 50px !important;
        img {
            float: left !important;
            margin-left: 4px;
        }
        p {
            line-height: 28px !important;
            height: 28px !important;
            text-align: left !important;
            text-indent: 8px;
        }
    }
}

css scss horizontal menu quieroapps
 
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Cómo renovar el certificado "Apple Push Services Certicate"

El certificado "Apple Push Services Certicate" es aquel certificado que hace que una aplicación...

How to create a file uploader page (Dropbox, Google Drive, Onedrive)

There are many ways to insert a file uploader in your App.The best way is to insert an uploader...

Cómo indicar el motivo de uso de ubicación del usuario

Para aquellas aplicaciones que se van a publicar en App Store es necesario indicar el motivo por...

Como abrir una app instalada en nuestro móvil desde nuestra app

Para crear un enlace y abrir una app instalada: - Añade una "Página" (módulo). - Añade un...

Como abrir un enlace fuera de la App (enlace externo)

Para crear un enlace y que se abra fuera de nuestra app: - Añade una "Página" (módulo). - Añade...