Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Boardlink: http://finalascension.org
Description and Message
I have 3 questions that I haven't been able to figure out:
http://finalascension.org/sona.php
So I want to make a small informative section in my site while still having the right portal block.
What I did was just copied the portal.php file and removed the left blocks section. Now instead of the Latest news block I want to have my own personalized block with information. Kind of like the custom block but only appearing here instead of latest news. What is the easiest way to do this?
2nd question is what can I do so that when a user types:
http://finalascension.org/sona
it redirects him to
http://finalascension.org/sona.php
My last question is how can I add some transparency to the blocks? Like on the gray background in my site's blocks.
Thanks in advance
Transparency, addressbar .php, modifications to a block
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
- Translator
- Posts: 62
- Joined: 21. May 2009 11:02
- phpBB.com User: Anywhere91
- Location: 48°638127N 2°771616E or not far
- Contact:
Re: Transparency, addressbar .php, modifications to a block
Good morning / evening
I think of two possibilities to your applications
For point 2 see the URL rewritting
Example in the file. Htacces
*
For transparency see the tag as follows opacity in css
Other tracks:
Or background: none
Or background-color: transparent.
Regards
original text in French
Bonjour / Soir
Je pense à deux possibilitées sur tes demandes
Pour le point 2 voir l'URL rewritting
Exemple dans le fichier .htacces
Pour la transparence voir la balise opacity de la manière suivante dans un css
D'autres pistes :
Ou background: none
Ou background-color:transparent.
Cordialement[/i]
*Edit Erreur in code html
I think of two possibilities to your applications
For point 2 see the URL rewritting
Example in the file. Htacces
Code: Select all
RedirectPermanent /sona http://finalascension.org/sona.php
For transparency see the tag as follows opacity in css
Code: Select all
. Identifier {
opacity: 0.5;
}
Or background: none
Or background-color: transparent.
Regards
original text in French
Bonjour / Soir
Je pense à deux possibilitées sur tes demandes
Pour le point 2 voir l'URL rewritting
Exemple dans le fichier .htacces
Code: Select all
RedirectPermanent /sona http://finalascension.org/sona.php
Code: Select all
.identifiant{
opacity:0.5;
}
Ou background: none
Ou background-color:transparent.
Cordialement[/i]
*Edit Erreur in code html
Last edited by anywhere91 on 17. November 2010 23:34, edited 1 time in total.
Re: Transparency, addressbar .php, modifications to a block
thank you/merci