skip to Main Content

Html – Banner is not displaying at the top and css is not working

I have html like following, in my Django project <!DOCTYPE html> {% load static %} <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Index Page</title> <link rel="icon" type="image/png" sizes="16x16" href="{% static 'favicon.png' %}"> <link rel="stylesheet" href="{% static 'style.css' %}">…

VIEW QUESTION

Html – How to fix my SCSS so it's applying the text color?

might be best explain with an example this is the HTML snippet of my breadcrumb. This comes with its own breadcrumbs.scss. <div class="container"> <div class="cmp-container"> <div class="my-grid"> <div class="breadcrumb container"> <nav class="cmp-breadcrumb"> <ol class="cmp-breadcrumb__list"> <li class="cmp-breadcrumb__item"> <a href="/content/page2.html" class="cmp-breadcrumb__item-link"> <span…

VIEW QUESTION
Back To Top
Search