PHP
Re: PHP
If I only want to change logo and not favicon, is it then enough to replace the file logo.png and xh-logo_bg.png (or kan this be removed?)?
There are many files in the favicon folder to replace?
Update: unfortunately, this is beyond my abilities, so I would appreciate information on how to remove the logo from the template.
There are many files in the favicon folder to replace?
Update: unfortunately, this is beyond my abilities, so I would appreciate information on how to remove the logo from the template.
Last edited by jop on Sat Oct 19, 2024 9:11 am, edited 1 time in total.
Re: PHP
Sorry, I didn't look carefully.
It's best to give the ul a class=“listUnordered”.
and change in stylesheet.css ~line 846 to
It's best to give the ul a class=“listUnordered”.
Code: Select all
<<ul class="listUnordered">
<li>test</li>
<li>test</li>
<li>test</li>
</ul>
Code: Select all
ul.listUnordered, ul.xh_search_results {
list-style: none inside;
margin: 0 0 .75em 0;
}
Re: PHP
Clear the browser cache and reload the page using CTRL+F5 (preferably several times?).
But I guess that's not the problem. For a better understanding of what you want, here is an example of an unordered list.
This is the original appearance in fhs-simple-2019.
Should it look like this?
You do not have the required permissions to view the files attached to this post.
Re: PHP
Like the original, but my problem is that bullets are offset to the left of the text above (without bullet). Ideally, it should be like when using a numbered list (numbers offset to the right or just below the text above without numbers).
Shown below:
Shown below:
You do not have the required permissions to view the files attached to this post.
Last edited by jop on Sat Oct 19, 2024 10:58 am, edited 1 time in total.
Re: PHP
Example
Code: Select all
<ul class="yourclass">
<li>test</li>
<li>test</li>
<li>test</li>
</ul>
Code: Select all
ul.yourclass {
margin: 0 0 0 1em;
}
ul.yourclass li {
list-style: inside;
}
You do not have the required permissions to view the files attached to this post.