Redsy

Started by Daniel, April 03, 2015, 05:19:26 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Daniel

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.

chr!x

Great theme. Thanks a lot, a lot, a lot...  :D

Little bug found : twitter & facebook URL & checkbox inverted inside index.php?action=admin;area=theme;sa=settings;th=3;

Best regards.

kodbg

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?

LuisNara

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?

Daniel

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.

mudassarsz

Hi Daniel!
i really love your themes, they are best themes out in SMF community.
currently we are in process of setting up my new SMF forum, and we are confused between Redsy and Wrap theme.
Redsy is best at Responsiveness and compatibility with Mods, but there are some issues/dislikes in its Post Layout like Post Profile Panel, post options, pagination and post separators.
on the other hand Warp is best in Looks & layout features, but it has some coding issues specially in responsiveness, pagination & with mods.

if the post layout & post profile styles of Wrap can be added to Redsy it would be the ultimate best theme

Diego_Lopez

Cual es la medida del logo que se podría poner mediante una url?

Daniel

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.

pharaoh

Looks great theme
I like it

shinamec

Redsy seems to be the best SMF theme around!  But the border placed around the avatars when you post is a little extreme for me.  How would I go about reducing the border and/or removing it altogether?

Thanks ahead of time!
Last Edit: April 30, 2015, 12:39:10 PM by shinamec

Daniel

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

shinamec

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!
Last Edit: April 30, 2015, 05:29:45 PM by shinamec

Daniel

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 ?

shinamec

Yes exactly!  Sorry I am failing to explain.

Daniel

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