Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Daniel

#16
Previews / Re: [Uncompleted] Reburm
July 07, 2016, 11:16:34 AM
Quote from: b33z on July 07, 2016, 01:53:40 AM
Beautiful! I am not one for red themes usually, prefer more blacks and blues and maybe greens, but this one is gorgeous! Love it!

Love to see a color picker included with this one!

HTML5?
Responsive?
I think that's only the design, namely, PSD file.



Nice theme near!  ;D
#17
Premium Themes / Re: SourceForum - SMF 2.0
May 11, 2016, 07:10:18 PM
Quote from: Nightmaster on May 11, 2016, 06:19:56 PM
Hey there,

Just wanted to check, categories background divs can have background images, it's one of the feature of the theme, right? I can set up images for each category separately, right?

Regards.
Yes, it is.
Regards!
#18
Si lo puedes modificar, todo lo que quieras. Pero sin editar el copyright y puedes agregar tu copyright al de nosotros.
#19
Pre-sale Questions / Re: Lisencing
March 22, 2016, 11:11:07 PM
Yes, you can use in all your forums.
Regards!
#20


Theme by Daniiel. Designed by Raphisio





  • HTML5 & Bootstrap v3.3.5
  • FontAwesome v4.4.0
  • Responsive theme
  • Colorpicker Theme multicolor changer
  • Custom copyright
  • Social networks icons
  • Remove buttons (actions) from the main menu
  • Group buttons (actions) inside a button named "Community" and choose which buttons you want to leave outside.
  • Enable avatar on board mod
  • Enable avatar on recent posts
  • Enable avatar on topics list
  • Set your own logo url
  • Set your own header image url
  • Footer links
  • Add your own text for "About us"




#21
Free Themes / Re: Exodus
December 29, 2015, 02:41:38 PM
Es solo CSS. Haz lo siguiente:
Index.css
Buscar:
#button_logout,#button_login,#button_register, #button_profile, #button_help
{
display: none;
}

Reemplazar por:
#button_logout,#button_login,#button_register, #button_profile
{
display: none;
}
#22
Free Themes / Re: Exodus
December 29, 2015, 02:40:02 PM
Ok, primero tienes que seguir la ultima instruccion que di aqui: http://www.simplemachines.org/community/index.php?topic=538969.msg3838492#msg3838492
Luego, haz lo siguiente:
Index.css
Añade al final:
div.news
{
float: left;
width: 60%;
text-align: left;
}
@media (max-width: 991px) {
div.user,div.news
{
width: 100%;
}
}


Index.template.php
Buscar:
if($context['user']['is_logged'])
{
echo'
<div class="user">


Reemplazar por (tienes 2 estilos cuales puedes utilizar):
Estilo 1:
if($context['user']['is_logged'])
{
// Show a random news item? (or you could pick one from news_lines...)
if (!empty($settings['enable_news']))
echo '
<div class="news">
<div class="alert alert-exodus">
<h2>', $txt['news'], '</h2>
<p>', $context['random_news_line'], '</p>
</div>
</div>';

echo'
<div class="user">


Estilo 2:
if($context['user']['is_logged'])
{
// Show a random news item? (or you could pick one from news_lines...)
if (!empty($settings['enable_news']))
echo '
<div class="news">
<h2>', $txt['news'], '</h2>
<p>', $context['random_news_line'], '</p>
</div>';

echo'
<div class="user">



Saludos!
#23
Free Themes / Re: Redsy
December 19, 2015, 07:24:31 PM
Bootstrap.css (Themes/Redsy/css)
Buscar:
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);

Reemplazar por:
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
#24
Free Themes / Re: Exodus
November 27, 2015, 11:36:39 PM
Index.css (Themes/Exodus/css)
Buscar:
#logo img
{
position: absolute;
right: 0;
left: 0;
margin: 0 auto;
max-height: 60px;
}

Solo edita 60px por el tamaño que deseas.
#25
Free Themes / Re: Exodus
November 27, 2015, 10:46:38 AM
Please, ask for support in the appropriate board.  // Por favor, pedir soporte en los foros correspondientes.
#26
Free Themes / Re: Redsy
November 17, 2015, 11:50:13 AM
#27
Premium Themes / Re: SourceForum
November 06, 2015, 06:02:09 PM
Quote from: zilre on November 06, 2015, 05:49:21 PM
Amigo... compre el theme y quiero instalar el pak Adk Personal Icon forums y me marca un error me ayudas por favor??
Utiliza el foro correspondiente para pedir soporte, http://smftricks.com/index.php?board=35.0
#28
Free Themes / Re: Greeny
October 31, 2015, 12:02:11 AM
You just have to upload your favicon.ico to the root of your forum, for example:
mywebsite.com/favicon.icon or see it here http://smftricks.com/favicon.ico
That doesn't depends of the theme.
#29
Premium Themes / [SMF 2.0] Agate
August 20, 2015, 05:26:51 PM


Theme by Daniiel. Designed by Raphisio





  • HTML5 & Bootstrap v3.3.4
  • FontAwesome v4.3.0
  • Responsive theme
  • Custom copyright
  • Social icons
  • Avatar on boards, topics and recent post




Demo: http://demo.smftricks.com/
http://smftricks.com/index.php?action=store;sa=view&id=18
#30
Free Themes / Re: Exodus
August 14, 2015, 05:25:46 PM
Display.template.php
Search:
if (!$message['member']['is_guest'])
Replace with:
if (!empty($message['member']['is_guest']))