LIFE DEMO:http://demo.weebpal.com/drupal8/zircon/
SELECTED ISSUE:
-
"Menu" hyperlink appearing above the menu bar: Solve by: Remove text "Menu" from page.tpl.php under tlp directory
-
Menu problem on Zircon mobile theme: Solve by: Changed the min-height of menu line height and menu does not show in mbile
-
Anchor tag is not easily identified: Solve by: patch
Path recomanded:
diff --git a/assets/css/style.css b/assets/css/style.css index f85de73..3693bec 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -2295,6 +2295,12 @@ ul.links.inline .node-readmore a:focus { box-shadow: inherit; } +/* style anchor tag inside paragraph to identify it as a link */ +/* line 590, ../sass/partials/_page.scss */ +p a { + color: #0000FF; +} + @media (max-width: 1199px) { /* line 5, ../sass/partials/_responsive.scss */ #slideshow_container { diff --git a/assets/sass/partials/_page.scss b/assets/sass/partials/_page.scss index a81a2da..0987524 100644 --- a/assets/sass/partials/_page.scss +++ b/assets/sass/partials/_page.scss @@ -584,4 +584,10 @@ ul.links.inline { .block-simplenews-subscription-block form .field--name-mail input{ width: 100%; @include box-shadow(inherit); -} \ No newline at end of file +} +/* style anchor tag inside paragraph to identify it as a link */ +p { + a { + color:#0000FF + } +}
All issue link: https://www.drupal.org/node/2038431