Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #79037
    Debbie
    Participant

    Right now the slider text is not displayed on smaller screens, but I’m only using a small bit of text and would like for it to be displayed on all screen sizes. How can I do this?

    miboxdallas.yourstagingwebsite.com

    If that’s gone, then I’ve made it live at miboxdallas.com

    #79073
    Sakin
    Keymaster

    @Debbie: I check in your live site and slider text is displaying fine.

    #79121
    Debbie
    Participant

    The title is displaying fine, but not the content text. I should have been more clear. However, I just figured it out. 🙂

    In responsive.css, you have:

    @media screen and (max-width: 767px) {	
    [..]
    	#main-slider .entry-container .entry-content {
    		display: none;
    	}

    I had tried putting “display: block;” with my slider text font, but hadn’t noticed that it only had “#main-slider .entry-content” and not “#main-slider .entry-container .entry-content”. In other words, I had tried:

    @media screen and (max-width: 768px) {
        #main-slider .entry-content a {
            font-size: 16px;
            display: block;
        }
    }

    But that didn’t work. However, the following does work:

    @media screen and (max-width: 767px) {	
        #main-slider .entry-container .entry-content {
            display: block;
        }
    }

    Now I need to mess with the font sizes a little more so that it looks good on mobile. 🙂 Thanks for you help though!

    #79123
    Sakin
    Keymaster

    @Debbie: I check in your custom css and you already have css for font size as well. Great work

    #79139
    Debbie
    Participant

    Thanks! I’m very happy with the Adventurous theme!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Show slider text even on small displays’ is closed to new replies.