• The theme Sakura has a custom header. I was able to add a photo and text to that by editing the section called

    custom-header.php

    But… how can I set the paragraph to 1.5 spaces instead of 1.0? I tried modifying the css stylesheet by adding the line-height: 1.5em, as a friend suggested, but it made no difference.

    Am I using the wrong code? Or trying to change the wrong thing? This is what I used:

    #BottomHeaderWrapp p {
    color: #968D89;
    font-size: 1.0em;
    padding:5px;
    line-height: 1.5em;
    }
    Thanks,
    Shar

Viewing 1 replies (of 1 total)
  • Sharazade,

    Try adding ‘block’ to that as well.

    #BottomHeaderWrapp p {
       color: #968D89;
       font-size: 1.0em;
       padding: 5px;
       display: block;
       line-height: 1.5em;
       }
Viewing 1 replies (of 1 total)

The topic ‘How to get 1.5 spacing on custom header in Sakura’ is closed to new replies.