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

#46
Free Themes / Re: Redsy
May 19, 2015, 05:34:17 PM
Index.css (Themes/Redsy/css)
Search:
@media (max-width: 991px) {
.poster h4, .poster ul
{
display: none;
}
.buttonlist li span
{
display: none;
}
}

Replace with:
@media (max-width: 991px) {
.buttonlist li span
{
display: none;
}
}
#47
Free Themes / Re: Reseller
May 16, 2015, 01:00:28 PM
2 question
Display.template.php
Search:
<li class="replies"><img src="',$settings['images_url'] ,'/messages.png" /> '. $context['real_num_replies'] .' '. $txt['replies'] .'</li>
<li class="views"><img src="',$settings['images_url'] ,'/views.png" /> ', $context['num_views'], ' '. $txt['views'] .'</li>

Replace (with img):
<li class="replies"><img src="',$settings['images_url'] ,'/messages.png" /> '. $context['real_num_replies'] .' '. $txt['replies'] .'&nbsp;&#38;</li>
<li class="views"><img src="',$settings['images_url'] ,'/views.png" /> ', $context['num_views'], ' '. $txt['views'] .'</li>

Replace (without img):
<li class="replies">'. $context['real_num_replies'] .' '. $txt['replies'] .'&nbsp;&#38;</li>
<li class="views">', $context['num_views'], ' '. $txt['views'] .'</li>


3 question
Reseller.css
Search:
.display-info
{
text-align: center;
overflow: hidden;
}
.display-info h1
{
font-size: 36px;
}

Replace with:
.display-info
{
text-align: center;
overflow: hidden;
}
.display-info h1
{
font-size: 36px;
background: #E1E1E1;
border-radius: 5px;
border: 1px solid #CCC;
padding: 15px;
}


4 question
Reseller.css
Use this code, add to the end:
.nextlinks, .nextlinks_bottom{
margin-bottom: 15px;
}
.nextlinks_bottom{
clear: both !important;
}
.nextlinks a, .nextlinks_bottom a
{
background: #FFF;
border: 1px solid #e1e1e1;
padding: 8px 15px;
font-weight: bold;
border-radius: 5px;
transition: all .1s;
}
.nextlinks a:hover, .nextlinks_bottom a:hover
{
background: #e1e1e1;
text-decoration: none;
}
.nextlinks a:first-of-type, .nextlinks_bottom a:first-of-type
{
float: left;
}


PD: Yes, you can.

Greetings!
#48
Free Themes / Re: Reseller
May 12, 2015, 08:44:23 PM
1 question
Index.template.php (Themes/Reseller)
Search:
<script type="text/javascript">
$(document).ready(function(){
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>

Replace with:
<script type="text/javascript">
$(document).ready(function(){
$(".dropdown").hover(           
function() {
$(".dropdown-menu", this).stop( true, true ).fadeIn("fast");
$(this).toggleClass("open");   
},
function() {
$(".dropdown-menu", this).stop( true, true ).fadeOut("fast");
$(this).toggleClass("open");             
});
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>

Search:
<nav class="navbar navbar-default navbar-static-top" role="navigation">
Replace with:
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
Search:
<a ', $button['sub_buttons'] ? 'class="dropdown-toggle" ' : '', 'href="', $button['sub_buttons'] ? '#' : $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '', $button['sub_buttons'] ? ' data-toggle="dropdown"' : '', '>

Replace with:
<a ', $button['sub_buttons'] ? 'class="dropdown-toggle" ' : '', 'href="', $button['sub_buttons'] ? '#' : $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '>


Reseller.css (Themes/css)
Search:
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}

Replace with:
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
margin-top: 50px;
}


2 question

Reseller.css (Themes/Reseller/css)
Search:
.display-info ul.info li
{
float: left;
font-size: 1.5em;
margin-left: 5px;
}
.display-info ul.info li.replies
{
color: #5bc0de;
}
.display-info ul.info li.replies img, .display-info ul.info li.views img
{
width: 64px;
}
.display-info ul.info li.views
{
color: #f0ad4e;
}

Replace with:
.display-info ul.info li
{
float: left;
font-size: 1.5em;
margin-left: 5px;
color: #000;
}
.display-info ul.info li.replies img, .display-info ul.info li.views img
{
width: 64px;
}

If you want change the size of the text. Change font-size: 1.5em; for what you want, the same with the color: color: #000;. For the img, you can change the width: width: 64px;, if you want hide the img, use this: display: none; after width: 64px;

3 question
Reseller.css (Themes/Reseller/css)
Search:
.display-info
{
text-align: center;
overflow: hidden;
}

Replace with:
.display-info
{
text-align: center;
overflow: hidden;
background: #E1E1E1;
border-radius: 5px;
border: 1px solid #CCC;
padding: 15px;
}


4 question
Reseller.css (Themes/Reseller/css)
Add to the end:
.nextlinks{
margin-bottom: 15px;
}
.nextlinks a
{
background: #FFF;
border: 1px solid #e1e1e1;
padding: 8px 15px;
font-weight: bold;
border-radius: 5px;
transition: all .1s;
}
.nextlinks a:hover
{
background: #e1e1e1;
text-decoration: none;
}
.nextlinks a:first-of-type
{
float: left;
}


5 question
Reseller.css (Themes/Reseller/css)
Search:
header ul.reset li, header ul.reset li a
{
color: #FFF;
font-family: "Segoe UI";
font-size: 12px;
}

Replace with:
header ul.reset li, header ul.reset li a
{
color: #000;
font-family: "Segoe UI";
font-size: 12px;
}
#49
Free Themes / Re: Reseller
May 07, 2015, 12:05:12 PM
Quote from: fortitude on May 06, 2015, 04:37:01 PM
this theme used to have such good support, and now nothing  ???
I've been waiting for days for answer but I've only found out how to make it fixed, and that was not exactly as I wanted  ???
Sorry, but I've been busy lately, with classes and with some outstanding things I could not answer. I'll try to let the solutions on the weekend.
#50
Free Themes / Re: Redsy
April 30, 2015, 09:18:21 PM
Display.template.php (Themes/Redsy)
Search:
// Show avatars, images, etc.?
if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
{
echo '
<a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
<img src="', $message['member']['avatar']['href'], '" class="img-thumbnail img-circle" alt="*" />
</a>';
}
else
{
echo'
<a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
<img src="',$settings['images_url'] ,'/noavatar.png" class="img-thumbnail img-circle" alt="*" />
</a>';
}


Replace with:
// Show avatars, images, etc.?
if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
{
echo '
<a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
<img src="', $message['member']['avatar']['href'], '" style="margin-bottom: 5px;" alt="*" />
</a>';
}
else
{
echo'
<a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
<img src="',$settings['images_url'] ,'/noavatar.png" style="margin-bottom: 5px;" alt="*" />
</a>';
}

#51
Free Themes / Re: Redsy
April 30, 2015, 05:43:55 PM
Quote from: shinamec on April 30, 2015, 05:27:56 PM
Thank you for the quick response, but apparently I didn't know what I was asking for though that fix answers a separate question.  Right now the default is that it changes the avatar into a circle instead of leaving it a square/rectangle.  I'm trying to remove that so it just stays square or maybe just reduce how far into the avatar it cuts into.

Thank you for your quick response!
You mean something like this: http://prntscr.com/703bha ?
#52
Free Themes / Re: Redsy
April 30, 2015, 05:13:43 PM
Display.template.php (Themes/Redsy)
Search:
// Show avatars, images, etc.?
if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
{
echo '
<a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
<img src="', $message['member']['avatar']['href'], '" class="img-thumbnail img-circle" alt="*" />
</a>';
}
else
{
echo'
<a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
<img src="',$settings['images_url'] ,'/noavatar.png" class="img-thumbnail img-circle" alt="*" />
</a>';
}


Replace with:
// Show avatars, images, etc.?
if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
{
echo '
<a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
<img src="', $message['member']['avatar']['href'], '" class="img-circle" alt="*" />
</a>';
}
else
{
echo'
<a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
<img src="',$settings['images_url'] ,'/noavatar.png" class="img-circle" alt="*" />
</a>';
}
#53
Free Themes / Re: Redsy
April 25, 2015, 01:18:59 PM
Quote from: Diego_Lopez on April 25, 2015, 12:16:17 PM
Cual es la medida del logo que se podría poner mediante una url?
De altura máximo 50px, y de ancho el que quieras.
#54
Free Themes / Re: Connect
April 24, 2015, 11:31:58 AM
I tried to register in your website, but the email confirmation never comes.
#55
Free Themes / Re: Redsy
April 15, 2015, 01:35:13 PM
Quote from: kodbg on April 14, 2015, 05:48:08 AM
Hi Daniel, Great theme, thank you!
I use it in one of my forums - http://forum.alekdimitrov.com/
The fonts in Chrome are great, but in Firefox and IE are a bit small.
Can you find any solution for this?
http://www.simplemachines.org/community/index.php?topic=535335.msg3805422#new


Quote from: LuisNara on April 15, 2015, 01:43:41 AM
Hi, i have a problem, i am using the shoubox mod, but i cant see it with this theme.

How can i see it again?
Maybe you have to install it again.
#56
Free Themes / Re: Redsy
April 10, 2015, 09:10:27 AM
Quote from: Paracelsus on April 10, 2015, 07:36:59 AM
Hi, great theme once more Daniel!

There's a little bug you might want to solve: when the top menu is collapsed (not visible) and you resize the window to a small width or open the forum on a mobile phone it's not possible to open the menu by clicking the symbol with three bars. It just doesn't work. If you have it uncollapsed while in wide-mode  then it works. I guess it should work in both situations. You can check it with Firefox or Chrome responsive element tools.

That is already solved in the downloads but not in the demo site.
#57
Premium Themes / Re: Metro - Premium [SMF 2.0]
April 08, 2015, 10:51:18 PM
Quote from: magicolotto on April 08, 2015, 01:45:50 AM
Hi I bought your thema, but when I insert several news these are not displayed.
Admin > Configuration > Current theme and activate "Show news fader on board index"
#58
Free Themes / Re: Redsy
April 04, 2015, 07:19:31 PM
Index.css (Themes/Redsy/css)
Buscar:
@media (max-width: 991px) {
.poster h4, .poster ul
{
display: none;
}
.buttonlist li span
{
display: none;
}
}

Reemplazar por:
@media (max-width: 991px) {
.buttonlist li span
{
display: none;
}
}
#59
Free Themes / Re: Redsy
April 04, 2015, 11:38:38 AM
Quote from: ForumMix on April 04, 2015, 11:29:43 AM
Was no wiser. What I want is that the image must have the same margins both vertically and horizontally.
Oh sorry, I think I'm asleep yet. Try with this:
Index.css
Add to the end:
.post img{margin-bottom: 3px;}
#60
Free Themes / Re: Redsy
April 04, 2015, 10:31:14 AM
You have to use the BBC as follows:
[img width=100][/img]
For example:

[img width=32]http://i.imgur.com/rzOuhPh.jpg[/img]