Change Profile Icon Header

Hi to everyone !

Where can I change the Profil Icon in header ? Ref. Screenshot ?
Also, make text transformations ?

Have a nice day,
Julien
Capture d’écran 2022-10-03 à 13.48.55

Hi,
It’s possible to change the icon either via CSS tweaks or if you override this template part via a child theme Customizing Templates I HivePress Developer Docs - YouTube If you mean changing username with another text, then overriding the template part is the only option.

1 Like

Thank you :slight_smile:

Is it the same with the hero pattern ? Same applied to header single pages
Capture d’écran 2022-10-06 à 20.56.09

While digging in the ftp folders I thought I saw that they were in the form of a link… ?

I Found :

But even changing “dots.svg” By another background pattern in the good location, there is no change of the bg.
Is there another place where I have to change the background pattern ?

Please try this CSS snippet to remove the background with dots

.header-hero__images:before{
	background: none !important;
}

.header-hero{
	background-image: none !important;
}
1 Like

Thank you Yevhen,

Do you know if I can replace this dots background by a custom one ?

This depends on the background, if you mean full-size background please try this CSS rule:

background-size:cover;

But this will also require inverting colors of the menu items and buttons. Replacing dots with another patters will also possible require adjusting positions via CSS, but you can set a new background URL with this CSS rule:

background-image:url(customurlhere);

Hope this helps.

1 Like

There is no change with my added css :

Capture d’écran 2022-10-11 à 22.11.41

Nevertheless :

.header-hero__images:before{
	background: none !important;
}
.header-hero{
	background-image: none !important;
}

Works

/////////////

And this :

.header-hero__images:before{
background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fefcd7' fill-opacity='1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}
.header-hero{ 
background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fefcd7' fill-opacity='1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}

Remove the dots pattern

///////////////////////

I created a new background pattern (dotsv2) in assets/images/backgrounds/ files location server side. Then I replace dots.svg by the v2.

There is no change too.

//////////////////////
Thank you ihor

Sorry for the inconvenience, but customization is beyond our support scope - it includes fixing bugs and guidance about the available features Support Policy | HivePress

If customizations are required for your site, please try customizing it using the collection of code snippets Search · user:hivepress · GitHub and other developer resources, or consider hiring someone for custom work https://fvrr.co/32e7LvY

1 Like

Thank you Yevhen

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.