About OHAYO

OHAYO Automotive Battery - Trusted since 1998, over 25 years of serving Brunei Darussalam market in the Automotive Passenger and Commercial Vehicles. OHAYO continue to offer absolute value, pursuing warranted quality in meeting today's modern demanding passenger vehicles at very competitive price point.OHAYO carry various automotive battery type from Conventional Dry-Charged (DC), to today popular choice Maintenance-Free Calcium as well as Idle Start-Stop ISS EFB Technology.

Where to buy?

OHAYO Automotive Battery is humbled to have over 40 outlets, across nationwide in Brunei Darussalam - at all districts and all major locations.Please refer to the list below for available OHAYO outlet, of your prefer area.

Reach Us

Drop us an email, for any feedback.

Tutorial

You open the template, and scroll down to first Section where thereโ€™s an Embed element labelled bg-image1.Copy all the code there, and paste it into an Embed element in your own Carrd site. This Embed element has to be inside the Section that you wish to have a different background image for.Once you paste the code over, find this part of the code:background-image: url(โ€œhttps://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80โ€);Then replace the https link in that code with a direct link to your own image. You can upload your background image in Imgur or ImgBB and get the direct link. A direct link to your image usually ends with a .jpg or .png (for example, on ImgBB it looks like this https://i.ibb.co/NW8WhZP/ai-zen-circle.png)

For Carrd sites where the Background Image plugin somehow doesn't work:

If the background image plugin somehow doesn't work on your Carrd site, then try this solution:Copy and paste this code instead of the original:<style>
#bg-image1 {
z-index: -999;
bottom: -20rem;
left: -20rem;
position: fixed;
width: 110vw;
height: 110vh;
background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-color: #FFFFFF;
padding: 0;
margin: 0;
}
</style>
<div id="bg-image1"></div>
Then replace the https link in that code with a direct link to your own image. You can upload your background image in Imgur or ImgBB and get the direct link. A direct link to your image usually ends with a .jpg or .png (for example, on ImgBB it looks like this https://i.ibb.co/NW8WhZP/ai-zen-circle.png)Adjust the bottom and top values to center your background image properly.Adjust the width and height values accordingly to ensure your background image covers the whole screen.