appernetic / hugo-nederburg-theme

Nederburg is a fast and secure hugo theme and is a port of the Tracks WP theme
Other
107 stars 89 forks source link

Problem with new taxonomies and css overlaping divs #23

Closed ImAlexisSaez closed 6 years ago

ImAlexisSaez commented 6 years ago

Hi,

Source repository: https://github.com/ImAlexisSaez/infinitoscontrastes Live version: https://imalexissaez.github.io/

I created a new taxonomy, projects, and modified the template "single.html" to see the three taxonomies of a post (categories, tags and projects). For that, I defined a new css class, entry-projects, and modified a little bit the css file.

However, if I uncomment the first line in this block of code

/*.entry-meta-bottom.float .entry-projects,*/
  .entry-meta-bottom.float .entry-tags,
  .entry-meta-bottom.float .entry-categories {
    position: absolute;
    width: 16.66%;
    left: 0;
    top: 4.5em;
    text-align: right;
    padding-left: 5.55%;
  }

the div of the project overlaps the div of the categories (in desktop resolutions). I don't know why doesn't add a style="top ---px;" to the div of the project. In mobile resolutions works as intended.

Thank you.