# How to make top title in group layout plot?

**URL:** https://discourse.julialang.org/t/how-to-make-top-title-in-group-layout-plot/50046
**Category:** New to Julia
**Tags:** plots, layout-plots
**Created:** [November 12, 2020, 1:02pm UTC](https://discourse.julialang.org/t/how-to-make-top-title-in-group-layout-plot/50046 "2020-11-12T13:02:47Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![ElectronicTeaCup](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/electronicteacup/32/12647_2.png) [@ElectronicTeaCup](https://discourse.julialang.org/u/ElectronicTeaCup)
#### Post date: [November 12, 2020, 3:28pm UTC](https://discourse.julialang.org/t/how-to-make-top-title-in-group-layout-plot/50046/3 "2020-11-12T15:28:25Z")

</div>

A hacky way of doing it was in this [thread](https://discourse.julialang.org/t/super-title-in-plots-and-subplots/29865/3)

```plaintext
title = plot(title = "Plot title", grid = false, showaxis = false, bottom_margin = -25Plots.px)
p1 = scatter(rand(5, 1), title = "Subplot 1")
p2 = scatter(rand(5, 1), title = "Subplot 2")
plot(title, p1, p2, layout = @layout([A{0.01h}; [B C]]))

```

![image](https://global.discourse-cdn.com/julialang/original/3X/8/a/8a8021d03d360086436b585cf02a50a0c29f8a4c.png)

---

_[View the full topic](https://discourse.julialang.org/t/how-to-make-top-title-in-group-layout-plot/50046)._
