Medial appointment page

5 replies·opened Dec 26, 2020
S
sguvenDec 26, 2020

Hi,

On the appointment page of the medical template, there is an image covering the appointment form. The location of the image was given as demos/medical/images/appointment/bg.jpg'. While this is not shown on the desktop version, it is shown in the mobile version. How can I make it not visible in the mobile version?

S
sguvenDec 26, 2020

I don't think this is the answer to my question.

Would you please go to the link and let me know how I get rid of the background image completely?

S
SemiColonWebSTAFFDec 26, 2020

Hello,

The Solution provided above was according to: "How can I make it not visible in the mobile version?"

If you would like to remove it completely, you can simply delete the Background Codes and replace the entire line of code with this:

<div class="section mb-0">

Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

S
sguvenDec 26, 2020

Here's the line:
<div class="section mb-0 parallax" style="background: url(''demos/medical/images/appointment/bg.jpg'') top center no-repeat / cover;" data-bottom-top="background-position:0px 0px;" data-top-bottom="background-position:0px 200px;">

How can I make the image visible in desktop version?

S
SemiColonWebSTAFFDec 26, 2020

Hello,

Apologies for the misunderstanding! Consider using this Code:

<div class="section mb-0 parallax section-appointment" style="background-image: url('demos/medical/images/appointment/bg.jpg'); background-repeat: no-repeat; background-position: top center;" data-bottom-top="background-position:0px 0px;" data-top-bottom="background-position:0px 200px;">

To hide the Background on Mobile Devices, use the following CSS Code:

@media (max-width: 991.98px) {
	.section-appointment {
		background-image: none !important;
	}
}

This should definitely work fine. Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard