Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1323902

    Hi,
    I have the following issues:
    1) in screen 1280 x 1024 and lower there is a withe space just after the main image, could you please remove it?
    2) in Firefox some pages (https://federazionedelmare.it/restyling/la-federazione-e-la-sua-missione/) have the image on the top cut on the right side
    3) In pages I can’t let the title to be shown
    4) I would like to give to the footer the following color: #005C99 or even do not display it at all in smartphones, could you please give me the right css
    (I’ve found just one linked to the top bar)

    Thanks a lot,
    Giulia

    #1324217

    Hey julia_usn,
    Thank you for your patience, for your first question I added this css to your WordPress ▸ Customize ▸ Additional CSS field and it seems to be working.

    @media only screen and (min-height: 1279px) and (max-height: 1367px) {
    @media only screen and (min-width: 1023px) and (max-width: 1025px) { 
    	#top #av_section_1.av-minimum-height-55 > div > .container {
    		height: 546px;
    	}
      }
    }
    

    For your second question your background image size would need to be adjusted like this:

    #top #av_section_1.av-minimum-height-20 {
    	background-size: cover;
    }

    I added this for you.
    For the third question, if you don’t want the title to be shown you can disable it in the layout sidebar of the page with “Impostazione Titolo Barra” option.
    For the last question your footer already seems to be that color but you can hide it on mobile with this css:

    @media only screen and (max-width: 767px) { 
    	#footer {
    		display: none;
    	}
    }

    I did not add this.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.