XF 2.1 Please help me !..

Baby Community

Well-known member
I am editing my default theme. I did something. I just want.

uı.1.webp



The welcome message I marked here. But instead of the blue color, the photo below appears.

bg-01.webp




If you write to me as code. I know where to add the page_container in the default_child theme I created.
 
Appearance >> Style Properties >> Welcome Section

Here you can modify as per your requirement.

I am editing my default theme. I did something. I just want.

View attachment 226694



The welcome message I marked here. But instead of the blue color, the photo below appears.

View attachment 226696




If you write to me as code. I know where to add the page_container in the default_child theme I created.

create a notice under ACP >> Communication

code for the image when you upload image at root directory of your web

<div class="image">
<img src="/YourImage.png">
</div>

then you can also add style properties to div container

.image {
your properties
}
 
no welcome section in default theme features.. I clone the default theme. i work there I did not set up ui.x theme. no welcome option in default theme features
create a notice under ACP >> Communication >> Notice

code for the image when you upload image at root directory of your web

<div class="image">
<img src="/YourImage.png">
</div>

then you can also add style properties to div container

.image {
your properties
}
 
Top Bottom