• Hi guys,

    on my mobile phone the header of my homepage http://zawischa.com doesn’t look as i want it to look.

    on the top left my name is written in 2 rows although it should be written in one row (on the desktop version it appears normal).

    on the top right there is a symbol of a blue box and stripes. how can i change that? e.g. i would like to place a different symbol there (maybe a jpg-file possible)

    hope you can help me

Viewing 3 replies - 1 through 3 (of 3 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:

    1. Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
    2. use its “CSS Code” section of the dashboard to hold your CSS modifications:
    3. (put this code in)

      .site-branding {
          max-width: 70%;
      }
      
      .main-navigation.toggled .nav-menu {
          position: relative;
      }
    4. Save

    Alternatively use your Child Theme style.css file to hold your CSS modifications

    on the top right there is a symbol of a blue box and stripes.

    It is controlled in CSS via the ‘content’ property, here is the original CSS:

    .menu-toggle:before {
        background-color: #0570a8;
        content: "\f419";
        display: inline-block;
        float: right;
        font-size: 24px;
        padding: 15px;
        vertical-align: middle;
    }

    So to change the symbol you need to add this Custom CSS:

    .menu-toggle:before {
        content: "[new-symbol-code]";
    }
    Thread Starter mzawischa

    (@mzawischa)

    hi
    thank you very much for your answer…
    sorry i didn’t read it earlier.
    can you help me how to change the colour of the 3 stripes itself to black and change the thickness of the stripes.
    in the original CSS i just can change the whole size and the background
    thank you so much

    Thread Starter mzawischa

    (@mzawischa)

    sorry… i managed to change it.
    thanx again…
    another question: now, when i click on the symbol the possible menus are not listed in a proper way (text to big).
    how can i change that.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘pictorico header mobile appearance’ is closed to new replies.