Sorry for using an issue. Can't seem to get this and I'm not sure it is my lack of understanding.

Per the attached screen capture, I am trying to tweak the css for the highlighed element. I have a subtheme and am using the css/style.css file to apply my override.

I tried several formats but none seem to stick. I tried putting an 'id' on the item in the twig too.

My latest attempt is

/**
 * Place your custom styles here.
 */

/* #henriques_branding { */
#navbar-header {
  display: inline;
}
#slogan-text .navbar-text {
  margin-top: 60px;
  font-size: 1.5em;
  color: #000;
}

Any help would be really appreciated.

Thanks
Joe

CommentFileSizeAuthor
Screen Shot 2015-12-14 at 1.29.26 PM.png413.68 KBHeneryH
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jjflynn22 created an issue. See original summary.

HeneryH’s picture

Issue summary: View changes
markhalliwell’s picture

Status: Active » Postponed (maintainer needs more info)

Are you sure the library for your sub-theme (e.g. css/styles.css) is actually loading on the page)?

HeneryH’s picture

I suppose that should mean something to me :)

This is the header for all or most of the pages on the site. Is there an edit I should make somewhere to insure the library is loaded?

markhalliwell’s picture

Hm, well... it sounds like you never enabled the sub-theme's library.

Did you rename all the THEMENAME files and text in your sub-theme's files?

Basically you should have the following two files:

THEMENAME.info.yml

libraries:
  - 'THEMENAME/global-styling'

THEMENAME.libraries.yml

global-styling:
  css:
    theme:
      css/style.css: {}
markhalliwell’s picture

Status: Postponed (maintainer needs more info) » Closed (works as designed)