Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter lizzyxh

    (@lizzyxh)

    To anyone who reads this – I figured out my issue – The images link wouldn’t work because the photo and the text are stacked on top of each other and the hypertext linking only works for the thing on the top of the stack- i figured out a way around this using z-index and adding an additional completely opaque image on top of both to act as the link. ?? Have a nice day.

    Have you considered adding an

    @media screen and (max-width: 300px) {
        body {
                        font-size: 1.5vh;
    /* ^You could set the ^ font size to change in relation to the screens size (the measurements of the size change are 'vh' ( visual devices height) */
    /* Your code here*/
                }
    }

    to the css editor ( which you can get access to through the jetpack plugin )?

    I’m kind of new so this might not be what you’re talking about, but altering your code so it will fit the screen of the device that is accessing the site is the first thing I would do.

    It sounds like your text that is disappearing might have an overflow property that is ‘overflow:hidden’ and thus anything that goes outside of the box size set will just disappear as opposed to rendering outside the elements box.

    anyway I hope that helps.

    Thread Starter lizzyxh

    (@lizzyxh)

    No sorry, not the twenty fifteen theme. I just ended up creating a child theme and worked it out that way. Thank you though.

Viewing 3 replies - 1 through 3 (of 3 total)