Skip to content

Commit

Permalink
Merge pull request #1145 from geopossachs/issues/1050
Browse files Browse the repository at this point in the history
#1050 set fixed css style for navbar brand image
  • Loading branch information
TheCoder4eu authored Aug 8, 2020
2 parents 9094cb6 + 00d9518 commit dc4d665
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public void encodeBegin(FacesContext context, UIComponent component) throws IOEx
rw.startElement("img", navBar);
rw.writeAttribute("alt", altText, "alt");
rw.writeAttribute("src", brandImg, "src");
writeAttribute(rw, "style", navBar.getBrandImgStyle());
writeAttribute(rw, "style", "vertical-align: top; " + navBar.getBrandImgStyle());
writeAttribute(rw, "class", navBar.getBrandImgStyleClass());
rw.endElement("img");
}
Expand Down

0 comments on commit dc4d665

Please sign in to comment.