I’m trying to create, what I can only describe as a banner, within a dashboard. I want three different pieces of information to be displayed across the ‘banner’ (left, center, and right) on the same line. I’ve placed these items within UDRow/UDColumn but it’s pushing the center and right items to the next line.
Any idea what I’m doing wrong? I feel like the syntax makes sense…
New-UDPaper -Id 'test' -Content {
New-UDRow -Columns {
New-UDColumn -SmallSize 4 -Content {
New-UDImage -Id 'logo1' -Path $service.LogoURL
}
New-UDColumn -SmallSize 4 -Content {
New-UDTypography -Id 'serviceName' -Text $service.ServiceName -Variant h3 -Align center
}
New-UDColumn -SmallSize 4 -Content {
New-UDChip -Label $service.Category
New-UDTypography -Id 'productCost' -Text $product.price -Variant h6 -Align right
}
}
} -Style @{ "margin" = "0px" }
Here is what I get:
Here is what I want:
Product: PowerShell Universal
Version: 4.0.6