Page 1 of 1

Transparency, addressbar .php, modifications to a block

Posted: 9. November 2010 19:10
by Genopath
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

Re: Transparency, addressbar .php, modifications to a block

Posted: 10. November 2010 12:27
by Genopath
bump!

Re: Transparency, addressbar .php, modifications to a block

Posted: 10. November 2010 23:09
by Genopath
bump!

Re: Transparency, addressbar .php, modifications to a block

Posted: 12. November 2010 02:43
by Genopath
anyone?

Re: Transparency, addressbar .php, modifications to a block

Posted: 14. November 2010 01:07
by Genopath
anyone?

Re: Transparency, addressbar .php, modifications to a block

Posted: 15. November 2010 22:25
by anywhere91
Good morning / evening

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;
} 
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

Code: Select all

RedirectPermanent /sona http://finalascension.org/sona.php
Pour la transparence voir la balise opacity de la manière suivante dans un css

Code: Select all

.identifiant{
  opacity:0.5;
}
D'autres pistes :

Ou background: none
Ou background-color:transparent.

Cordialement[/i]

*Edit Erreur in code html

Re: Transparency, addressbar .php, modifications to a block

Posted: 17. November 2010 16:31
by Genopath
thank you/merci