Hi,
dbc.row and dbc.col is not working below is the code. Pls help
PLOTLY_LOGO = “https://images.plot.ly/logo/new-branding/plotly-logomark.png”
external_stylesheets = [dbc.themes.BOOTSTRAP]
app = dash.Dash(external_stylesheets=external_stylesheets)
navbar = dbc.Navbar(
[
html.A(
Use row and col to control vertical alignment of logo / brand
dbc.Row(
[
dbc.Col(html.Img(src=PLOTLY_LOGO, height=“50px”)),
dbc.Col(dbc.NavbarBrand(“Navbar”, className=“ml-2”)),
],
align=“center”,
no_gutters=True,
),
href=“https://plot.ly”,
),
],
color=“dark”,
dark=True,
)
The Navbar should be next to logo isn’t? please help…