Jump to content
WebFlake
  • 0

How to add html index page?


formenos

Question

7 answers to this question

Recommended Posts

  • 0
14 hours ago, formenos said:

I just want to create an area like in the picture and fill it with text.

You can use the custom sidebar block from IPS or you can go in your template, search for sidebar and add your custom codes after this line :

 {advertisement="sidebars"}

 

Link to comment
Share on other sites

  • 0

In the templates search box search this:

<div id="ipsLayout_sidebar" class="ipsLayout_sidebarright " data-controller="core.front.widgets.sidebar">

Open the found template and below this line add:

<div id="testtext">Text</div>

 

After that go into CSS and open custom.css, add the code above and edit it as you like:

 

.testtext{
	font-size: 40px; 
    padding: 140px; /* This will add padding to top, left, bottom, right */
    border: 1px red solid; 
    justify-content: center; /* Pack items around the center */
    align-items: center;
    color: red; /* This is the color of the text */
    font-weight: bold; 
    display: flex; 
	}

 

If you have any questions you can quote my post.

 

 

Edited by #crowley
Link to comment
Share on other sites

  • 0
2 hours ago, #crowley said:

Şablon arama kutusunda şunu arayın:


Bulunan şablonu açın ve bu satırın altına şunu ekleyin:


 

Bundan sonra CSS'ye gidin ve custom.css'yi açın, yukarıdaki kodu ekleyin ve istediğiniz gibi düzenleyin:

 


 

Herhangi bir sorunuz varsa, yazımdan alıntı yapabilirsiniz.

 

 

<div id = "ipsLayout_sidebar" class = "ipsLayout_sidebarright" data-controller = "core.front.widgets.sidebar">

i couldn't find it

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...