Hello Ciaran,
how can i change the color of the line under the logo? Please take a look at the attachment:
Thank you for your support.
Best regards, Frank
- Turbomay
- Commercial Templates
- Monday, 19 April 2021
- Subscribe via email
Hi Frank
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
(Edit to taste)
Ciaran
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
(Edit to taste)
.header_bottom {
border-color: #000;
}
Ciaran
- more than a month ago
- Commercial Templates
- # 1
Sorry for hijacking this thread but I've also a question concerning the LAYLA template
I've already tried some suggestions (found in the forum) but none worked. On the desktop version I want to move the logo from the left to the right side. On the mobile version, it should be centered.
Regards,
Manfred
I've already tried some suggestions (found in the forum) but none worked. On the desktop version I want to move the logo from the left to the right side. On the mobile version, it should be centered.
Regards,
Manfred
- more than a month ago
- Commercial Templates
- # 3
Thank you
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
Ciaran
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
.logo {
display: flex;
justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
.logo {
justify-content: center;
}
}
Ciaran
- more than a month ago
- Commercial Templates
- # 6
Hi Ciaran,
Thank you very much!!
I have another short question. Is it possible to add a background image for the free space beside of the homepage area. The template width is currently 1290px and we want to fill up the free space.
Manfred
Thank you very much!!
I have another short question. Is it possible to add a background image for the free space beside of the homepage area. The template width is currently 1290px and we want to fill up the free space.
Manfred
- more than a month ago
- Commercial Templates
- # 7
Hi Manfred
Would you a URL to an example of the area you wish to apply a background image to?
Ciaran
Would you a URL to an example of the area you wish to apply a background image to?
Ciaran
- more than a month ago
- Commercial Templates
- # 8
Hi Ciaran,
it's the same URL as for the logo-changes. If you have a screen resolution higher than 1290px, you see a white area left and right of the website. We would like to add the background picture to this empty space.
Manfred
it's the same URL as for the logo-changes. If you have a screen resolution higher than 1290px, you see a white area left and right of the website. We would like to add the background picture to this empty space.
Manfred
- more than a month ago
- Commercial Templates
- # 9
Hi Manfred
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
Replace # with the URL to your image.
Ciaran
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
Replace # with the URL to your image.
body {
background-image: url('#');
background-attachment: fixed;
background-size: cover;
}
body > * {
max-width: 1290px;
margin: 0 auto;
}
.body_bg {
display: none;
}
Ciaran
- more than a month ago
- Commercial Templates
- # 10
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »