Archived topic
Headline in different places of container
3 replies · Started by Bart on December 1, 2020
So I have a container in which I upload the cover, I wanted to add some writing but I would like this to be attached to the right bottom corner. How to do it? Adding empty containers until it will be in the proper position? Wont this mess the mobile look?
Hi,
We should be able to do that with custom CSS. Do you have any reference site you want to replicate?
Can you put more details on how you want it to appear on desktop and mobile? Mock images would be of great help to have an idea on the best approach.
Wont this mess the mobile look?
This shouldn't be an issue as we can always use @media rules to specify different styles for different viewports.
that means i would need css into every window i create... thought might be easier way
that means i would need css into every window i create… thought might be easier way
We can help you out in writing the CSS if given a clear picture of what you're trying to achieve.
@media rule is pretty simple.
example:
/* for mobile devices or screens not wider than 768px */
@media (max-width:768px){
h1{ color: red; }
}
/* for tablets or screens not wider than 1024px and not smaller than 769px */
@media (min-width:769px) and (max-width: 1024px){
h1{ color: blue; }
}
/* for screens not smaller than 1025px */
@media (min-width:1025px){
h1{ color: green; }
}