0
Welcome Guest! Login
0 items Join Now

Control of responsive display Corvus template

    • Tim Haas's Avatar
    • Tim Haas
    • Rocketeer
    • Posts: 53
    • Thanks: 0

    Control of responsive display Corvus template

    Posted 8 years 11 months ago
    • I need to control a few things that are displaying poorly in the mobile version of my website using the Corvus template.
      Other templates I have used from other places have had a separate CSS file for responsive design elements.

      How can I either remove or scale the two corner background images located in the upper left and lower right?

      Thanks, I am sure I will catch on to how your template works with a little encouragement.
    • cdavis411's Avatar
    • cdavis411
    • Preeminent Rocketeer
    • Posts: 17787
    • Thanks: 882

    Re: Control of responsive display Corvus template

    Posted 8 years 11 months ago
    • you can change or urn those images of in the style tab o the template manager. "Top Background" and "Bottom Background"
    • Tim Haas's Avatar
    • Tim Haas
    • Rocketeer
    • Posts: 53
    • Thanks: 0

    Re: Control of responsive display Corvus template

    Posted 8 years 11 months ago
    • You mis-understand. I don't want to turn it off completely. I would only like to turn it off for the image for the telephone size responive display.

      How do I make changes to the CSS for the specific display sizes.

      Thanks
    • cdavis411's Avatar
    • cdavis411
    • Preeminent Rocketeer
    • Posts: 17787
    • Thanks: 882

    Re: Control of responsive display Corvus template

    Posted 8 years 11 months ago
    • use media queries to add css rule that affect the responsive breakpoints
      /* Smartphones */
      @media (max-width: 480px) {
      .top-type-preset1 #rt-page-surround {background: transparent;}
      .bottom-type-preset1 #rt-page-surround-bottom {background: transparent;}
      }
      
      /* Smartphones to Tablets */
      @media (min-width: 481px) and (max-width: 767px) {
      }
      
      /* Tablets */
      @media (min-width: 768px) and (max-width: 959px) {
      }
      
      /* Desktop */
      @media (min-width: 960px) and (max-width: 1199px) {
      }
      
      /* Large Display */
      @media (min-width: 1200px) {
      }
    • Tim Haas's Avatar
    • Tim Haas
    • Rocketeer
    • Posts: 53
    • Thanks: 0

    Re: Control of responsive display Corvus template

    Posted 8 years 11 months ago
    • Thanks
    • cdavis411's Avatar
    • cdavis411
    • Preeminent Rocketeer
    • Posts: 17787
    • Thanks: 882

    Re: Control of responsive display Corvus template

    Posted 8 years 11 months ago
    • Glad to be of service. See you around the board

Time to create page: 0.048 seconds