• Resolved memdesigns

    (@memdesigns)


    I’m using a child theme at https://dev.burlpolon.com/, and have two questions:

    1) This should be simple, but I cannot find the css anywhere that will change the color of the site title.

    2) I did make the width of the logo section larger but it then pushed the menu bar down and still want to keep the menu on the same line. Is this a padding or margin issue around either the logo or menu bar?

    TIA

Viewing 1 replies (of 1 total)
  • 1) the color of the site title is the color of the general links;
    create a new style to change just the link color of the site title;
    example to be added into style.css of the child theme:

    a#logo { color: green; }
    a#logo:hover { color: red; }

    2) you seem to have hacked directly into the code of the template (instead of using custom CSS) to make the logo wider; do the same to reduce the width of the menu.

    example:
    <div class="col-md-9 col-sm-9 menu_main" style="width: 40%; float:right; color:#511b03;">

Viewing 1 replies (of 1 total)
  • The topic ‘Site title color and menu position’ is closed to new replies.