0

I'd like to left-align post titles for a Dynamic View template in Blogger. I've tried adding custom CSS through the Template Designer screen, and also adding custom CSS through the Edit HTML button on the Template screen.

Here's a CSS rule I've tried:

.title .entry-title {
text-align:left !important;
}

So far, nothing works. I'm able to change alignment for non-Dynamic View templates, but not for Dynamic Views.

Thanks for your help.

herohuyongtao
  • 49,413
  • 29
  • 133
  • 174

1 Answers1

0

This one worked for me:

.article .article-header .title {
  text-align: left;
}
Kay
  • 2,702
  • 6
  • 32
  • 48