[Resolved] Headline in different places of container

Home Forums Support [Resolved] Headline in different places of container

Home Forums Support Headline in different places of container

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1562730
    Bart

    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?

    #1562892
    Elvin
    Staff
    Customer Support

    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.

    #1562922
    Bart

    that means i would need css into every window i create… thought might be easier way

    #1562959
    Elvin
    Staff
    Customer Support

    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; }
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.