Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Theme Site Themes => Topic started by: Diego Andrés on April 05, 2015, 07:44:21 PM

Title: Redsy
Post by: Diego Andrés on April 05, 2015, 07:44:21 PM
Link to the theme (https://custom.simplemachines.org/index.php?theme=2833)
(https://custom.simplemachines.org/index.php?action=download;theme=2833;attach=241268;image;thumb)

(https://smftricks.com/logos/logo.png) (https://smftricks.com/)
Free & Premium Responsive Themes for SMF

(https://i.imgur.com/CZ3crRt.png)

(https://img.shields.io/badge/License-MIT-a05a3f?style=flat-square) (https://img.shields.io/badge/SMF-2.0-996ee1?style=flat-square) (https://img.shields.io/badge/Responsive-Yes-6e97e1?style=flat-square)

Redsy
Developed by Daniiel (https://www.simplemachines.org/community/index.php?action=profile;u=269838)

Features

Languages
(https://www.simplemachines.org/site_images/lang/english.gif) (https://www.simplemachines.org/site_images/lang/spanish.gif)


Demo Online (http://demo.smftricks.com/index.php?theme=57)
GitHub (https://github.com/SMFTricks/Redsy)
Title: Re: Redsy
Post by: mdlv123 on April 06, 2015, 05:00:12 AM
hey there, this theme looks amazing!

how can I change the default font for all of the theme...?
In Hebrew it looks really bad, the default is DAVID i think instead of ARIAL.

Thank you!
Title: Re: Redsy
Post by: Shambles on April 06, 2015, 05:12:33 AM
That does indeed look tempting - well done on a splendid theme.

Using your "demo" credentials I tried to create a post to see how that looked, but it seems your boards are all read only.
Title: Re: Redsy
Post by: jlt1 on April 06, 2015, 06:25:20 AM
Like the theme but is there any support for sub menus using "menu editor lite" plugin? Didn't see any when I installed it.
Title: Re: Redsy
Post by: Diego Andrés on April 06, 2015, 10:58:49 AM
Quote from: Shambles on April 06, 2015, 05:12:33 AM
That does indeed look tempting - well done on a splendid theme.

Using your "demo" credentials I tried to create a post to see how that looked, but it seems your boards are all read only.

I'll take a look to the board permissions
Title: Re: Redsy
Post by: OCJ on April 07, 2015, 05:00:37 AM
I like this. Its probably the only responsive theme so far that works properly with custom menu (mods). Also long menu text.

Everything looks good except when collapsed and opening the menus, the sub-menu items are not easy to read as text and background colours/contrast are similar.
I will probably use this. I have one question though, is it easy to change the overall red colour in css? It seems like there are no images for it so Im guessing its just hex code in the css. For our outdoor club another colour would be better.


Thanks, Its a good theme, and Ive tested a lot.
Title: Re: Redsy
Post by: Daniiel on April 07, 2015, 08:50:26 AM
Quote from: mdlv123 on April 06, 2015, 05:00:12 AM
hey there, this theme looks amazing!

how can I change the default font for all of the theme...?
In Hebrew it looks really bad, the default is DAVID i think instead of ARIAL.

Thank you!
Bootstrap.css (Themes/Redsy/css)
Search:
body {
  font-family: 'Open Sans';
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #EEE;
}

Replace with:
body {
  font-family: "Verdana", "Arial", "Helvetica", sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #EEE;
}



Quote from: jlt1 on April 06, 2015, 06:25:20 AM
Like the theme but is there any support for sub menus using "menu editor lite" plugin? Didn't see any when I installed it.
Actually I have not tried, but I think it should work. Later I made a look.


Quote from: igirisjin on April 07, 2015, 05:00:37 AM
I like this. Its probably the only responsive theme so far that works properly with custom menu (mods). Also long menu text.

Everything looks good except when collapsed and opening the menus, the sub-menu items are not easy to read as text and background colours/contrast are similar.
I will probably use this. I have one question though, is it easy to change the overall red colour in css? It seems like there are no images for it so Im guessing its just hex code in the css. For our outdoor club another colour would be better.


Thanks, Its a good theme, and Ive tested a lot.
Yes, it's just hex code. It's just find each #e25d5d in index.css and bootstrap.css; and replace it with the color you want.
Title: Re: Redsy
Post by: OCJ on April 07, 2015, 11:39:34 AM
Thanks for quick reply.
My site is back up fully modded and working ok with the theme. Just wish Simple Portal would collapse the side columns... one day.


BTW


QuoteLike the theme but is there any support for sub menus using "menu editor lite" plugin? Didn't see any when I installed it.

I am using menu editor lite and it works great with this theme. That is what surprised me. Just the text/background contrast. Mouse over is bright though.

Title: Re: Redsy
Post by: Daniiel on April 07, 2015, 02:00:24 PM
Quote from: igirisjin on April 07, 2015, 11:39:34 AM
Thanks for quick reply.
My site is back up fully modded and working ok with the theme. Just wish Simple Portal would collapse the side columns... one day.


BTW


QuoteLike the theme but is there any support for sub menus using "menu editor lite" plugin? Didn't see any when I installed it.

I am using menu editor lite and it works great with this theme. That is what surprised me. Just the text/background contrast. Mouse over is bright though.
Index.css (Themes/Redsy/css)
Add to the end:
@media (max-width:767px) {
.dropdown-menu > li > a, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus
{
color: #FFF;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus
{
background: #13161c;
}
}
Title: Re: Redsy
Post by: Deaks on April 07, 2015, 07:12:10 PM
may want to get rid of the hard coded text and that 1mb image you are not using :P
Title: Re: Redsy
Post by: OCJ on April 08, 2015, 06:35:49 AM
Quote
@media (max-width:767px) {
   .dropdown-menu > li > a, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus
   {
      color: #FFF;
   }
   .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus
   {
      background: #13161c;
   }
}

That work fine - all text is white with good contrast. There is a white box though if mouse over just the top menu item but Im happy with it so no worries.
Title: Re: Redsy
Post by: OCJ on April 08, 2015, 10:12:08 AM
I hate bothering you with this but I spent hours and still unable to find using firebug and inspect element. Also searching hex colours and rbg in the css files. Usually I can locate these details, but not this time.

I changed the template to green but the poster's name on the left (link to profile) in the message view is green. I cant find where to change this.
I can change the background (#008A2E) but no luck finding where the text colour is declared.


Screenshot attached.

Andy

Title: Re: Redsy
Post by: sunilimon on April 08, 2015, 11:06:12 AM
Hello! congratulations for this amazing theme. Yesterday I installed it on my system but still only available for admins because I'm doing some colour changes. When I go inside a post, firebug gives me 2 errors: msg104119/undefined Failed to load resource: first, the server responded with a status of 404 (Not Found) and second: Themes/default/scripts/jquery.caret.map 404 (Not Found).
Title: Re: Redsy
Post by: Daniiel on April 11, 2015, 05:17:17 PM
Quote from: igirisjin on April 08, 2015, 10:12:08 AM
I hate bothering you with this but I spent hours and still unable to find using firebug and inspect element. Also searching hex colours and rbg in the css files. Usually I can locate these details, but not this time.

I changed the template to green but the poster's name on the left (link to profile) in the message view is green. I cant find where to change this.
I can change the background (#008A2E) but no luck finding where the text colour is declared.


Screenshot attached.

Andy

You may use a modification to color the user names by rank, but you can do this:
Indesx.css
.poster h4, .poster h4 a
{
color: #FFF;
}

Replace with:
.poster h4, .poster h4 a
{
color: #FFF !important;
}



Quote from: sunilimon on April 08, 2015, 11:06:12 AM
Hello! congratulations for this amazing theme. Yesterday I installed it on my system but still only available for admins because I'm doing some colour changes. When I go inside a post, firebug gives me 2 errors: msg104119/undefined Failed to load resource: first, the server responded with a status of 404 (Not Found) and second: Themes/default/scripts/jquery.caret.map 404 (Not Found).
I was watching the errors, the first I fixed but the second one does not appear to me.
#1 Error: Index.template.php
Search:

aSwapImages: [
{
sId: \'upshrink\',
}
],

Replace with:
aSwapImages: [
{
sId: \'upshrink\',
srcExpanded: \'\',
srcCollapsed: \'\',
}
],
Title: Re: Redsy
Post by: sunilimon on April 13, 2015, 03:59:05 AM
Works fine!!

I've seen another error. When I navigate into mobile devices, the options inside "actions" menu dissapears. Also it happens on aeva media gallery, but I think it's the same css issue, because both are a list. Could you check that?

Thank you very much for your support :)
Title: Re: Redsy
Post by: OCJ on April 13, 2015, 08:43:22 AM
Thanks for the help with name colours. A mod to change them  is an easy answer - dont have to worry about edits later if files changed.

Back.... I just realized, it was the colorizer name mod for member groups I had set previously to the same colour as the theme background - my fault!  :P
I guess I can do the background a bit differently or change that group colour.
Title: Re: Redsy
Post by: qstatic on April 15, 2015, 07:36:30 AM
Hi, I´m having an issue with Internet Explorer 11, when viewing Posts is shows an horozontal and vertical scrall bar.

(http://s17.postimg.org/4dbxrs8y7/scrollbar.jpg)

How can i fix this issue?
Title: Re: Redsy
Post by: The Domain Shop on April 16, 2015, 05:31:46 PM
Nice theme :)
Title: [Theme: Redsy] How to add login form to Nav Bar.
Post by: sukafia on April 18, 2015, 09:28:22 AM
This theme is just great, got a really cool look. for me its the best SMF theme however I'll like to have a login form in my header; That's the default SMF login form with register option as I won't want one to have to click on login before seeing the login form. I'll like my users to be able to login from the homepage just as on this forum I want the form displayed either beside the search field or main menu. Pleas help. Thanks

<a href="http://ibomforum.com">My site link</a>
Title: Re: Redsy
Post by: OCJ on April 23, 2015, 10:55:54 AM
For qstatic, I dont know the exact details but you can edit the css file maybe and include style changes to stop the scroll bar - something like 'overflow:hidden;'.
Exactly where the edit is needed Im not sure ... but you could look at it with html inspector plugins and experiment.

I'm using this theme now and very satisfied  :)

Clean, simple/ minimal and very easy to change the colour style. That would be a nice idea actually - If an admin option to set the hex code that would save directly and change the colour scheme.

Before I mostly used Bloc themes but this is the best one I've had from the SMF theme repository. Thanks so much for this!


Title: Re: Redsy
Post by: Portugal on April 24, 2015, 12:35:05 PM
Thats a really nive theme, i will go to use them for sure. Until now im making some testes with him, and i found two possibile errors, well the first one its the "new messages" on the footer of the layout, in two forums (test forums) this wont work, any idea to solve this?
The another one maybe isnt a error but a fault, its about the new members registred on the forum, does not have any kind of warning on forum to new registrations and at same dont have any kind of warning for new "reports" (topic report).

And i will go to test with more mods, and if i need help i will go to let here my experience.

Once again, i let here my thanks to the team whos created that wonder theme. Thank you guys.

Regards
Title: Re: Redsy
Post by: onkarkumar31 on April 29, 2015, 09:26:31 AM
Thank you  Daniiel for this awesome theme  :) . I was wondering for the background change from Red to gray and I got the solution from an earlier post . Your theme is perfectly made and suits best to  my spiritual forum .

It would be great if you could let me change rest of the Red color to something else . Like you can see currently in search , reply button ,  Info Center and author name  on my site .

forum.spiritualsys dot com

Kindly let me know where to make changes .

Thanks and Regards ,

Onkar
Title: Re: Redsy
Post by: crop on April 30, 2015, 12:09:52 AM
Nice Theme Very Very great
Title: Re: Redsy
Post by: safrist on April 30, 2015, 05:42:09 AM
Sir,,,,, i want to edit the title text to banner logo ....

can you help me ???

Title: Re: Redsy
Post by: peterwaalker on May 03, 2015, 11:10:30 PM
How can I change the background color from light ash to blue?
I don't know where precisely I can find it in CSS.
Title: Re: Redsy
Post by: onkarkumar31 on May 14, 2015, 08:06:22 AM
This theme is great but I am not able to use it due to below bugs :

1. Login or Register is not available in Internet Explorer ( tested with I.E 8 ). It is not able to execute some .js files .

2. Mod - Add Facebook Like, Tweet, and Google +1 doesn't work . ( Buttons are not shown )

My forum link - forum.spiritualsys.com

Title: Re: Redsy
Post by: 420Connect.co.uk on May 18, 2015, 05:52:32 AM
Hey Daniiel,

Very nice theme you've got here that I am probably going to begin using soon once I play around with it a bit more.
I have a few queries so far I'm hoping you'll be able to solve!

I'm also looking to recolour the red parts of the theme like others have before me but I can't seem to find the relevant image/hexcode to change the colour of the submit/save buttons..  I notice other people I've seen using this theme also appear to haven't been able to find the part that controls the colouring!

Secondly (I'm not sure whether to ask yourself or in SP support but we'll see! - when using Simple Portal, I think it would look much nicer if there was a small space in between the columns and the main block.

Could you help with adding a gap between them?

(http://s14.postimg.org/464io7t7l/themestuff.png)


Also, where the symbols are used (font awesome?) sometimes they all appear as a basic square, but a refresh seems to fix the issue - Could I make that line more important some how?


.. I know the menu bar resizes for mobile devices, but I can't seem to find the profile button when using the mobile version?


& Lastly, again - on the mobile version - I've noticed the members list page (possibly more, still to fully have a look around!) overspills and forces the user to zoom out to see the page content.. (only the body of the page) would it be possible to fix this to fit the screen properly?

..apologies in advance, I'll probably have a million and one questions about this theme! :P

Many thanks!
Title: Re: Redsy
Post by: 420Connect.co.uk on May 18, 2015, 09:14:00 AM
Just another quick one before you reply!  O:)

On "mobile-mode" I think you maybe forgot to add in a symbol or 2 on the members page again.

The circled area, I presume should have a search icon and user icon on the other tab?

(http://i.snag.gy/1hxiN.jpg)
Title: Re: Redsy
Post by: 420Connect.co.uk on May 18, 2015, 12:52:40 PM
Sorry SMF for the triple posting!  :-[

.. Just to update, I've now solved the spacing issue with help of ♦ Ninja ZX-10RR ♦ at SP support! :)
Title: Re: Redsy
Post by: dominik523 on May 19, 2015, 03:15:04 AM
I have one question. When I go on my mobile phone and try your theme, I can't see on any post names of the users which posted a reply. Can I turn on that somewhere or I'll have to go though the code?
Thanks in advance!
Title: Recent Posts doesn't show
Post by: ThaiJSP on May 20, 2015, 03:59:07 AM
Dear Alls,

I had use this theme for my webboard but it doesn't show Recent Posts. like pictures that i attached.

Thank you.
Prach Konphet
Title: Re: Redsy
Post by: margarett on May 21, 2015, 10:12:55 AM
Quote from: ThaiJSP on May 20, 2015, 03:59:07 AM
I had use this theme for my webboard but it doesn't show Recent Posts. like pictures that i attached.
I seriously suck at theming but I found the same problem. I fixed it with

BoardIndex.template.php, find:
<div class="hslice tab-pane" id="recent_posts_content recent" role="tabpanel">
Replace with:
<div class="hslice tab-pane" id="recent" role="tabpanel">
(recent_posts_content seems not to be used anywhere else in the theme's files, so I removed it and it works)
Title: Re: Redsy
Post by: Portugal on May 25, 2015, 06:41:58 PM
Hi,


After instal that wonder theme, i still want to adapt it to my reality, so if anyone can help me to change the header color, see please the image attached.
Title: Re: Redsy
Post by: margarett on May 25, 2015, 06:47:26 PM
You should *really* learn to use Firebug. With it, you can easily see the classes and whatever properties apply. Then it's dead easy to change stuff. Especially when a theme has no images in the layout, as this is the case ;)
Title: Re: Redsy
Post by: Burke ♞ Knight on May 26, 2015, 10:48:17 AM
Besides the above mentioned issues, I noticed the way the Profile menu is set up, when look on mobile, it vanishes, which would not be bad, if the menu that is used on mobile, would have a profile button. ;)

Also, top lvl links in menu open when drop downs do, making it hard to select a drop down choice. (Same issue that had me redo my menu top level links to # )
Title: Re: Redsy
Post by: Burke ♞ Knight on May 26, 2015, 12:28:17 PM
Quote from: dominik523 on May 19, 2015, 03:15:04 AM
I have one question. When I go on my mobile phone and try your theme, I can't see on any post names of the users which posted a reply. Can I turn on that somewhere or I'll have to go though the code?
Thanks in advance!

This, I'd like to know, too. What's the point of not showing the poster name and group with the post.
If get post and replies, you have NO idea who the heck posted them.
Title: Re: Redsy
Post by: Daniiel on May 26, 2015, 05:41:31 PM
Quote from: Burke ♞ Knight on May 26, 2015, 12:28:17 PM
Quote from: dominik523 on May 19, 2015, 03:15:04 AM
I have one question. When I go on my mobile phone and try your theme, I can't see on any post names of the users which posted a reply. Can I turn on that somewhere or I'll have to go though the code?
Thanks in advance!

This, I'd like to know, too. What's the point of not showing the poster name and group with the post.
If get post and replies, you have NO idea who the heck posted them.

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;
}
}
Title: Re: Redsy
Post by: Burke ♞ Knight on May 26, 2015, 09:18:20 PM
Hehehe... I had found that 2 hours ago, and then did a bit more, so it shows the main group. :)
Thank you, and I love the theme! :)

Now to try to make the menu stay fixed when on big screen, like can do the very top bar. :)
Title: Re: Redsy
Post by: margarett on May 28, 2015, 07:24:10 AM
How about not hiding the profile drop down and the quick search? Quick search is more or less optional, but the profile drop down should really stay
Title: Re: Redsy
Post by: Burke ♞ Knight on May 28, 2015, 07:26:45 AM
Indeed. I am lucky I use Menu Editor Lite, so could add the Profile menu back to the main menu, since mobiles can't access it without having to find their name in post, or IC and tap that just to get to their profile.

If have to hide it, what about making it so it becomes a button, next to the menu button?
Title: Re: Redsy
Post by: alianos on May 28, 2015, 08:27:39 AM
Very good work indeed!


A couple of feedback notes

•At "theme settings->Show statistics on board index", actually hides the statistics.
•When shown the above statistics, don't show properly
•The twitter and facebook icons are reversed

index.template.php

if(!empty($settings['facebook_check']))
echo'
<li>
<a href="', !empty($settings['facebook_text']) ? $settings['facebook_text'] : 'http://www.facebook.com ' ,'" title="', $txt['rs_facebook'], '"><i class="fa fa-twitter fa-2x"></i></a>
</li>';
if(!empty($settings['twitter_check']))
echo'
<li>
<a href="', !empty($settings['twitter_text']) ? $settings['twitter_text'] : 'http://www.twitter.com' ,'" title="', $txt['rs_twitter'], '"><i class="fa fa-facebook fa-2x"></i></a>
</li>';


A couple of other settings are also buggy, or they don't seem to be doing anything.

Finally, this theme option "Hide post group titles for grouped members", does not appear to be doing anything, because it looks like there is no way to show post-based groups in the first place. In truth (unless I cannot find out how) not even the main member-group is shown, and you have to rely on star images to know where everyone belongs. If you plan on updating the theme, it'd be nice to have the functionality back!

In any case, a job well done :)
Title: Re: Redsy
Post by: Burke ♞ Knight on May 28, 2015, 09:05:25 AM
I have yet to see some of those issue on mine.
True, membergroup display is a bit wonky, especially is in mobile mode, where even stars do not show.
However, the fun things about themes: Going in, and changing some stuff, to the way you want them.

Facebook/Twitter issue, I never noticed that, because I don't use them.... However, I'd like to know if GitHub could be added, and how to do so on the image aspect.
Title: Re: Redsy
Post by: alianos on May 28, 2015, 03:05:04 PM
I am getting the following js error "Uncaught TypeError: Cannot set property 'innerHTML' of null". Is anyone else having the same issue, or has any ideas why it might be happening?

http://www.hampshire.landscapewatch.com/forum/index.php?topic=4.0

Thanks in advance
Title: Re: Redsy
Post by: iain sherriff on June 10, 2015, 07:28:31 AM
I thought I had finalised my theme and mods to it :o

Not so sure now I have seen this  ;D    Great theme  8)
Title: Re: Redsy
Post by: Kiorinko on June 10, 2015, 12:26:17 PM
Looks great! I wanna try it
Title: Re: Redsy
Post by: miketheman on June 13, 2015, 10:50:53 AM
We're using the theme - it's quite nice, thanks.

Found a minor big that was causing the fonts to not load correctly, since we're using SSL.

in css/bootstrap.css:


- @import url(http:////fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
+ @import url(//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);


This allows the browser to select which protocol to use.
Title: Re: Redsy
Post by: darkpath on June 14, 2015, 06:28:05 PM
HI.
I would like in INFO CENTER the default tab when you load the page to be RECENT POSTS.
How can I do it?
Thank you.
Title: Re: Redsy
Post by: Portugal on June 16, 2015, 06:23:35 PM
Hi,

I was trying this theme since a few weeks....and i love.:) now ive to request again if its possibile to have  a message about members that are waiting approval? its really important to me.


thanks in advance
Title: Re: Redsy
Post by: Portugal on June 16, 2015, 06:25:29 PM
Here is the solution for that isue: http://www.simplemachines.org/community/index.php?topic=535335.msg3813573#msg3813573


Quote from: darkpath on June 14, 2015, 06:28:05 PM
HI.
I would like in INFO CENTER the default tab when you load the page to be RECENT POSTS.
How can I do it?
Thank you.
Title: Re: Redsy
Post by: darkpath on June 17, 2015, 04:51:26 AM
Thanks for your reply.
Unfortunately this is not a fix for my problem.I used this trick before to get enabled recent posts.I'm trying to find a solution for recents posts tab in info center to be active when you load index page.
Title: Re: Redsy
Post by: margarett on June 17, 2015, 05:26:30 AM
In BoardIndex.template.php, you just need to move the
class="active"

from the li "users" to li "recent".

Just remember that you can't disable recent posts after this, or else you will have no active tabs (because the current active tab can't be disabled and always has content)
Title: Re: Redsy
Post by: telatabi on June 18, 2015, 05:55:24 AM
it is very good theme. i am using in my site.

i am using in Turkish but some sentences and words are in English. How can i translate in FTP? Where is the Turkish language files?
Title: Re: Redsy
Post by: Daniiel on June 19, 2015, 04:56:33 PM
Quote from: telatabi on June 18, 2015, 05:55:24 AM
it is very good theme. i am using in my site.

i am using in Turkish but some sentences and words are in English. How can i translate in FTP? Where is the Turkish language files?
The language files are in the following path: Themes/Redsy/languages
Copy ThemeStrings.english.php and change the name for ThemeStrings.turkish.php or ThemeStrings.turkish-utf8.php. Then edit the file and change the sentences.



Report any bug here: https://github.com/SMFTricks/Redsy
Title: Re: Redsy
Post by: margarett on June 19, 2015, 05:57:30 PM
@Daniiel, what about this:
Quote from: margarett on May 28, 2015, 07:24:10 AM
How about not hiding the profile drop down and the quick search? Quick search is more or less optional, but the profile drop down should really stay
?

;)
Title: Re: Redsy
Post by: Tom.B on June 19, 2015, 07:17:28 PM
Hi, could someone point out where I can edit the mini profile for Redsy? I want to change the colours here:

(http://i.imgur.com/eAGm3CZ.png)

And I also want to rid of the speech bubble triangle here, so that it's just a rectangle box containing the post:

(http://i.imgur.com/3MO5Fja.png)

Thanks very much in advance!

Tom.B
Title: Re: Redsy
Post by: Daniiel on June 19, 2015, 10:22:53 PM
Quote from: margarett on June 19, 2015, 05:57:30 PM
@Daniiel, what about this:
Quote from: margarett on May 28, 2015, 07:24:10 AM
How about not hiding the profile drop down and the quick search? Quick search is more or less optional, but the profile drop down should really stay
?

;)
That's something I'm working. Soon I will bring changes to make.


Quote from: Tom.B on June 19, 2015, 07:17:28 PM
Hi, could someone point out where I can edit the mini profile for Redsy? I want to change the colours here:

(http://i.imgur.com/eAGm3CZ.png)

And I also want to rid of the speech bubble triangle here, so that it's just a rectangle box containing the post:

(http://i.imgur.com/3MO5Fja.png)

Thanks very much in advance!

Tom.B
Index.css
1. Search:
.poster h4
{
margin: 0;
font-size: 12px;
width: auto;
padding: 4px;
border-radius: 4px 4px 0 0;
background: #e25d5d;
text-align: center;
}

And change #e25d5d

2. Search and delete:
@media (min-width: 992px) {
.body_content
{
margin-left: 35px;
}
.body_content span.arrow-left
{
width: 0;
height: 0;
border-style: solid;
border-width: 25px 35px 25px 0;
border-color: transparent #ffffff transparent transparent;
position: absolute;
left: 16px;
}
}
Title: Re: Redsy
Post by: Tom.B on June 20, 2015, 04:55:25 AM
Thank you very much, Daniiel!

I'm now looking for a way to display the member group the user belongs to in between the post count and username boxes. So for example:

(http://i.imgur.com/l6oBtjH.png)

Thanks in advance. :)
Title: Re: Redsy
Post by: Tom.B on June 20, 2015, 08:29:43 AM
Sorry for the double post, but I'm also looking to see where the code for this is:

(http://i.imgur.com/okevmat.png)

(the grey box). If someone could point it out, I would be most grateful! :)
Title: Re: Redsy
Post by: Portugal on June 22, 2015, 04:26:28 AM
@Tom.B

I think its this you need to change to your forum display the groups.

http://www.simplemachines.org/community/index.php?topic=525855.msg3808891#msg3808891


Quote from: Tom.B on June 20, 2015, 04:55:25 AM
Thank you very much, Daniiel!

I'm now looking for a way to display the member group the user belongs to in between the post count and username boxes. So for example:

(http://i.imgur.com/l6oBtjH.png)

Thanks in advance. :)
Title: Re: Redsy
Post by: Tom.B on June 23, 2015, 11:35:27 AM
Quote from: Portugal on June 22, 2015, 04:26:28 AM
@Tom.B

I think its this you need to change to your forum display the groups.

http://www.simplemachines.org/community/index.php?topic=525855.msg3808891#msg3808891


Quote from: Tom.B on June 20, 2015, 04:55:25 AM
Thank you very much, Daniiel!

I'm now looking for a way to display the member group the user belongs to in between the post count and username boxes. So for example:

(http://i.imgur.com/l6oBtjH.png)

Thanks in advance. :)

Thank you! :D
Title: Re: Redsy
Post by: Daniiel on June 23, 2015, 06:04:09 PM
Quote from: Tom.B on June 20, 2015, 08:29:43 AM
Sorry for the double post, but I'm also looking to see where the code for this is:

(http://i.imgur.com/okevmat.png)

(the grey box). If someone could point it out, I would be most grateful! :)

Index.template.php
<header id="header">
<div class="container">';
pages_titlesdesc();
theme_linktree();
echo'
</div>
</header>';
Title: Re: Redsy
Post by: Portugal on June 25, 2015, 10:33:31 AM
Hi,

Again help needed, now i need to remove from public profile (on posts) the "MSN, ICQ, AIM", thats no way to remove from the "Theme options" anymore.
Any help, i apreciate.


Thanks in advance.
Title: Re: Redsy
Post by: Herman's Mixen on June 25, 2015, 11:00:42 AM
admin --> basic features --> turn on "Custom profile fields"

then go to "Custom profile fields" and disable the fields you don't need ;)
Title: Re: Redsy
Post by: spikeweb on June 25, 2015, 11:49:06 AM
Daniiel,

Thanks so much for this theme which is really nice and efficient.

I have tested for a couple of weeks and just implemented on my forum together with 1.x to 2.x update. This isi it : http://forum.nikonpassion.com/

I noticed that the basic theme is validated by Google as Mobile Friendly.
But as I added Google Ads, it is not anymore (Google fighting against ... Google ...).
If you have any input on how to be Mobile Friendly in thtat situation, thanks in advance.

Same request as previous member for the profile link in smartphone screen views, would be fait to have.

Do you provide any paying customization services for the theme in case I need further modifications ?
Title: Re: Redsy
Post by: helyea on June 25, 2015, 09:06:38 PM
How can i modify the header color?

(http://i.imgur.com/3C0Dyhp.png)
Title: Re: Redsy
Post by: Herman's Mixen on June 25, 2015, 10:41:11 PM
bootstap.css
.navbar-default

change


background-color: #xxxx;


coz we are friendly community i suggest you close your forum adult +18 for guests :P
don't know spanish but that's what i understand...
Title: Re: Redsy
Post by: Portugal on June 26, 2015, 05:23:59 AM
Hi,

Thanks for your help. That way i know and i realise that, but what i looking for was on the profile settings (on theme) to remove that,  but keep the fields actives on profile edition...:)
For now its solved..:)

Quote from: Herman's Mixen on June 25, 2015, 11:00:42 AM
admin --> basic features --> turn on "Custom profile fields"

then go to "Custom profile fields" and disable the fields you don't need ;)
Title: Re: Redsy
Post by: Herman's Mixen on June 26, 2015, 06:09:22 AM
your welcome :D
Title: Re: Redsy
Post by: spikeweb on June 29, 2015, 07:31:35 AM
Has anyone any idea on how to display the profil area in mobile mode (using a smartphone) ?
I need at least to offer the recent messages and answer to my messages links

THX
Title: Re: Redsy
Post by: 420Connect.co.uk on July 02, 2015, 12:31:56 PM
I've been quiet recently whilst focusing on other things but I've been keeping an eye on this thread!

I think all of my previous issues are now solved but I'm wonder how easy, or difficult this change would be:
(also sort of surprised no-one else has asked...)

How can I make it so:

When you click the main menu button (the menu is displayed)
When you scroll down, the menu also moves with you.. (currently the fixed option only allows the banner (not menu) to become 'fixed')
.. so If I was to scroll down the page and hit the menu button.. it does show.
.. currently I need to scroll to the top to be able to see / use it..





I've a few other things I'd like to do with the menu too that hopefully wouldn't be a huge job..

1) Navigating to sub menu items, I find a bit of a nuisance as "hovering" on a phone/tablet is obviously different to "hovering" with your mouse..
Could anyone help in making this a "click to display/open" type menu, instead?

2) I'd also like to have "3rd level sub menu" items, initially hidden, rather than being constantly on show in a bulleted list..




Edit: whilst I remember!

.. The memberslist page is "too big" when viewed in a mobile/tablet, forcing the user to have to zoom out to be able to see everything..
I'm guessing it's as the page is designed with a table but wondered if this could also be told to resize like the rest?

Hopefully someone with the knowledge can share any ideas for the above!

As always,  many thanks in advance for any help provided!
Title: Re: Redsy
Post by: Portugal on July 02, 2015, 02:50:06 PM
Hi all,


My question is about to that theme dont show the number of views on the topic, its possibile add this information to the topics? (I think i alreay read about it, i made a big search and didnt find).

Thanks in advance
Title: Re: Redsy
Post by: 420Connect.co.uk on July 05, 2015, 04:34:56 PM
'ello again!

Could anyone also help in changing the overall gray background to a picture (repeated background)?

Many thanks!

& I have somewhat solved my menu issue by hashing(#) the links for the main buttons that had drop downs..

(and I also found on github, your members list fix - thank you! O:))
Title: Re: Redsy
Post by: Niko_Bellic on July 05, 2015, 06:59:57 PM
index.css

Find
/* Set a fontsize that will look the same in all browsers. */
body
{
margin: 0 auto;
padding: 0;
}


Replace it with something like:
/* Set a fontsize that will look the same in all browsers. */
body
{
background: #000000 url(FULL URL TO IMAGE) repeat;
margin: 0 auto;
padding: 0;
}


Replace the #000000 with color to match your image.
Title: Re: Redsy
Post by: helyea on July 06, 2015, 10:52:07 AM
Hi how can i fix this? It has gotten up

(http://i.imgur.com/JbTBp3R.png)
Title: Re: Redsy
Post by: 420Connect.co.uk on July 06, 2015, 01:31:12 PM
Quote from: NikoBellic on July 05, 2015, 06:59:57 PM
index.css

Find
/* Set a fontsize that will look the same in all browsers. */
body
{
margin: 0 auto;
padding: 0;
}


Replace it with something like:
/* Set a fontsize that will look the same in all browsers. */
body
{
background: #000000 url(FULL URL TO IMAGE) repeat;
margin: 0 auto;
padding: 0;
}


Replace the #000000 with color to match your image.

Thanks Niko, that worked perfectly! ;)





I've a few other little things I'd like to change..

I've already done the edit to make the avatar include their name etc. when they post, (on mobile version) but I'd like to have only their avatar & name displayed above their post, to keep track of who said what easier..

Would you know how to only show the avatar and posters name when in 'mobile-mode' of a post they've made.. ?

Also when on the mobile version, could anyone point me in the right direction for what parts I should be changing to edit the colour of the text in the 'actions' drop-down from someones post..

(http://i.snag.gy/0aWJz.jpg)

Title: Re: Redsy
Post by: Niko_Bellic on July 06, 2015, 01:32:29 PM
Quote from: helyea on July 06, 2015, 10:52:07 AM
Hi how can i fix this? It has gotten up

(http://i.imgur.com/JbTBp3R.png)


Fix what? Just posting an image, does not tell us what is wrong, nor what you want it to look like. :P
Title: Re: Redsy
Post by: 420Connect.co.uk on July 06, 2015, 01:34:01 PM
Quote from: NikoBellic on July 06, 2015, 01:32:29 PM
Quote from: helyea on July 06, 2015, 10:52:07 AM
Hi how can i fix this? It has gotten up

(http://i.imgur.com/JbTBp3R.png)


Fix what? Just posting an image, does not tell us what is wrong, nor what you want it to look like. :P

I think he's adjusted the height of the bar or somehow raised the links?
Title: Re: Redsy
Post by: PentX on July 07, 2015, 02:11:08 AM
1:
(http://i.imgur.com/mnE4ftx.png)
Where do I find the hex for this in the code?
2:
(http://i.imgur.com/rWAMBJx.png)
Where do I find the hexes for the pieces that are outlined on this image in the code?
3:
(http://i.imgur.com/EYD8wTQ.png)
Same as 2, where do I find the hexes

I don't mind if some are repeated images. I would just like to know where they are so I can change the colors.
-------------------
Quote from: Niko_Bellic on July 06, 2015, 01:32:29 PM
Quote from: helyea on July 06, 2015, 10:52:07 AM
Hi how can i fix this? It has gotten up

(http://i.imgur.com/JbTBp3R.png)


Fix what? Just posting an image, does not tell us what is wrong, nor what you want it to look like. :P
The buttons aren't aligned with the black header, you can see it because the text is overlapping on the two contrasting colors.
Title: Re: Redsy
Post by: PentX on July 07, 2015, 03:14:09 AM
Not meaning to bump the topic but in addition to those hexes  I was wondering where I could find the hex of the gray text on this image
(http://i.imgur.com/exiimGU.png)
Title: Re: Redsy
Post by: 420Connect.co.uk on July 07, 2015, 09:25:36 AM
Quote from: PentX on July 07, 2015, 03:14:09 AM
Not meaning to bump the topic but in addition to those hexes  I was wondering where I could find the hex of the gray text on this image
(http://i.imgur.com/exiimGU.png)

They're controlled by the colour set at the very top of index.css for links.

Be careful though as it controls more than just them specific links.. I've also had to find a colour that worked everywhere else..

Just to add I've also solved my last requests..
No doubt I'll be back with something else soon though
Title: Re: Redsy
Post by: PentX on July 08, 2015, 02:06:41 AM
Thanks for telling me. If only I knew how to fix the other ones though. xD
Title: Re: Redsy
Post by: 420Connect.co.uk on July 08, 2015, 11:22:07 AM
Quote from: PentX on July 08, 2015, 02:06:41 AM
Thanks for telling me. If only I knew how to fix the other ones though. xD

You're welcome buddy :)

- The specific parts you're wanting to change (I imagine like the other one I mentioned) will likely change the colour of MORE than just the section you're looking to change..

You can start to find the relevant sections with a simple colour picker tool though..

You can get one here: http://colorcop.net/ (Sorry if I shouldn't link to this)
- Once you've got it running, you can hover over any colour and it will tell the the hex code for it.

- Then just search for the hex code in the themes files :)

I know it's not really the answer you were looking for but I hope that helps you a little :)
Title: Re: Redsy
Post by: margarett on July 08, 2015, 11:51:46 AM
If i might just add...

You should really get s grip at Firebug or other browser's "developer tools". You can change CSS on the fly, with integrated color picker and all. When you are happy with the changes you made, just perform the corresponding edit to the css file (the tool will even tell you the line number!) and it becomes definitive ;)
Title: Re: Redsy
Post by: 420Connect.co.uk on July 11, 2015, 02:38:36 PM
Just to say after playing around with this theme I'm really happy with how well it has adapted to my needs and existing site structure!  :D
I've already seen an increase in activity & members since launching it on the live site! - So a big thank you for this one! :)

One of my last little niggles I'd love to get fixed though:

When I am half way down the page and click the menu button,
I want to make it so the menu appears as if it has dropped down from the existing fixed header..

Currently if I am half way down the page and click the menu button,
I need to scroll back to the very top of the page to see and use the menu.. 



Much appreciated if anyone has the time to look into / knows how to achieve this and could share their knowledge!


Many thanks!
Title: Re: Redsy
Post by: saurabh1938 on July 18, 2015, 07:21:28 AM
Hi All,

In my forum  g o t r i p p e r z dot com, topic view count and comment count is not visible near topic title.
Please help to bring it back. Attach is the screenshot for reference.

Regards,
Saurabh
Title: Re: Redsy
Post by: Anjuna on July 20, 2015, 05:40:51 AM
Hi,

This is a wonderful responsive theme, but for some  reason I'm having trouble with profile pictures. The picture does not show up in the navbar/in posts, like this...

(https://imgur.com/bFhF78z)
(https://imgur.com/hV0K2qg)
(If you're having trouble seeing the images, they are https://imgur.com/hV0K2qg and https://imgur.com/bFhF78z)


I am sure this is theme specific, because I was not facing this problem while using the core theme.
Am I the only one experiencing this problem? And how do I fix it?
Title: Re: Redsy
Post by: iain sherriff on July 30, 2015, 01:47:24 PM
Quote from: Portugal on June 16, 2015, 06:23:35 PM
Hi,

I was trying this theme since a few weeks....and i love.:) now ive to request again if its possibile to have  a message about members that are waiting approval? its really important to me.


thanks in advance

Has anyone a way to display this ?
Title: Re: Redsy
Post by: iain sherriff on August 01, 2015, 06:02:45 AM
Hi I am getting some errors...........
Quote
Apply Filter: Only show the error messages of this URL
http://dsdglobalsupport.com/index.php?topic=494.0
Apply Filter: Only show the errors with the same message
8: Undefined index: subject
Apply Filter: Only show the errors from this file
File: /home3/f1162343/public_html/dsdglobalsupport.com/Themes/Redsy1/index.template.php
Line: 541

Quote
Apply Filter: Only show the error messages of this URL
http://dsdglobalsupport.com/index.php?topic=542.msg3625
Apply Filter: Only show the errors with the same message
8: Undefined index: subject
Apply Filter: Only show the errors from this file
File: /home3/f1162343/public_html/dsdglobalsupport.com/Themes/Redsy1/index.template.php
Line: 541

Quote
Apply Filter: Only show the error messages of this URL
http://dsdglobalsupport.com/index.php?topic=1102.0
Apply Filter: Only show the errors with the same message
8: Undefined index: subject
Apply Filter: Only show the errors from this file
File: /home3/f1162343/public_html/dsdglobalsupport.com/Themes/Redsy1/index.template.php
Line: 541

................some are Guests some are members
Attachment shows Line 541

Any suggestions what is wrong ?
:)
Title: Re: Redsy
Post by: Daniiel on August 01, 2015, 05:34:59 PM
Quote from: iain sherriff on August 01, 2015, 06:02:45 AM
Hi I am getting some errors...........
Quote
Apply Filter: Only show the error messages of this URL
http://dsdglobalsupport.com/index.php?topic=494.0
Apply Filter: Only show the errors with the same message
8: Undefined index: subject
Apply Filter: Only show the errors from this file
File: /home3/f1162343/public_html/dsdglobalsupport.com/Themes/Redsy1/index.template.php
Line: 541

Quote
Apply Filter: Only show the error messages of this URL
http://dsdglobalsupport.com/index.php?topic=542.msg3625
Apply Filter: Only show the errors with the same message
8: Undefined index: subject
Apply Filter: Only show the errors from this file
File: /home3/f1162343/public_html/dsdglobalsupport.com/Themes/Redsy1/index.template.php
Line: 541

Quote
Apply Filter: Only show the error messages of this URL
http://dsdglobalsupport.com/index.php?topic=1102.0
Apply Filter: Only show the errors with the same message
8: Undefined index: subject
Apply Filter: Only show the errors from this file
File: /home3/f1162343/public_html/dsdglobalsupport.com/Themes/Redsy1/index.template.php
Line: 541

................some are Guests some are members
Attachment shows Line 541

Any suggestions what is wrong ?
:)
Try with this:
index.template.php
Search:
function pages_titlesdesc()
{
global $txt, $context, $scripturl, $settings, $modSettings, $options, $sourcedir, $topic, $topicinfo, $board_info, $board, $category;

if(!empty($topic))
{
echo '
<h2>', $context['subject'], '</h2>';
}
elseif(!empty($board))
{
echo '
<h2>',$board_info['name'],'</h2>';
}
else
{
echo '
<h2>',$context['page_title'],'</h2>';
}
}

Replace for:
function pages_titlesdesc()
{
global  $context;

echo '
<h2>',$context['page_title'],'</h2>';

}
Title: Re: Redsy
Post by: iain sherriff on August 02, 2015, 04:39:57 AM
Thanks Daniiel  :)

I'll report back.

This theme is really special, I have altered the colours to suit but the overall platform gives a wonderful forum  8)
Title: Re: Redsy
Post by: iain sherriff on August 03, 2015, 04:36:26 AM
100% gone

thanks  :)
Title: Re: Redsy
Post by: 420Connect.co.uk on August 05, 2015, 11:29:07 AM
I'm wondering if anyone could help in adding a 'scroll-to-bottom' icon like the one included in the theme..

I currently have the one built into the theme, as well as the mod that displays them, but having all of them together doesn't look very good, but I wish to keep the scroll-to-bottom part..

(http://i.snag.gy/BsKlV.jpg)

So I'd like to add one that sits near the top, (or possibly above the other one) that lets you scroll to the bottom and is styled the same etc..

Thank you for any help given!
Title: Re: Redsy
Post by: ByHazerfen on August 06, 2015, 11:39:36 AM
Mobile logout button close? help.
Title: Re: Redsy
Post by: 420Connect.co.uk on August 06, 2015, 02:16:50 PM
Quote from: ByHazerfen on August 06, 2015, 11:39:36 AM
Mobile logout button close? help.

In your Themes/Redsy/css/index.css

add this at the bottom of the page:

@media (max-width: 767px) {
#button_logout, #button_profile
{
display: visible;
}
}


This will restore the logout and profile buttons when in mobile mode.  ;)
(and just remove ", #button_profile" if you wish to keep that hidden)
Title: Re: Redsy
Post by: ByHazerfen on August 06, 2015, 05:09:31 PM
Quote from: 420Connect.co.uk on August 06, 2015, 02:16:50 PM

In your Themes/Redsy/css/index.css

add this at the bottom of the page:

@media (max-width: 767px) {
#button_logout, #button_profile
{
display: visible;
}
}


This will restore the logout and profile buttons when in mobile mode.  ;)
(and just remove ", #button_profile" if you wish to keep that hidden)

Thank you, good.  ;D
Title: Re: Redsy
Post by: 420Connect.co.uk on August 08, 2015, 03:46:52 AM
You're welcome!  ;)

& to update on my own question, I've came up with a work-around and just replaced the ones provided by the mod with ones I prefer and disabled the theme's scroll button..

(http://i.snag.gy/PUGY8.jpg)

O:)
Title: Re: Redsy
Post by: helyea on August 12, 2015, 05:41:54 PM
(http://img.prntscr.com/img?url=http://i.imgur.com/kx4SUmb.png)

How can i fix this bar? :(
Title: Re: Redsy
Post by: Daniiel on August 14, 2015, 08:21:28 PM
Quote from: helyea on August 12, 2015, 05:41:54 PM
(http://img.prntscr.com/img?url=http://i.imgur.com/kx4SUmb.png)

How can i fix this bar? :(
Index.template.php
Search:
<body', !empty($settings['redsy_navbar']) ? ' style="padding-top: 30px;"' :  '' ,'>';
Replace with:
<body', !empty($settings['redsy_navbar']) ? ' style="padding-top: 50px;"' :  '' ,'>';
Title: Re: Redsy
Post by: helyea on August 15, 2015, 09:10:45 PM
Quote from: Daniiel on August 14, 2015, 08:21:28 PM
Quote from: helyea on August 12, 2015, 05:41:54 PM
(http://img.prntscr.com/img?url=http://i.imgur.com/kx4SUmb.png)

How can i fix this bar? :(
Index.template.php
Search:
<body', !empty($settings['redsy_navbar']) ? ' style="padding-top: 30px;"' :  '' ,'>';
Replace with:
<body', !empty($settings['redsy_navbar']) ? ' style="padding-top: 50px;"' :  '' ,'>';

Fixed, thank you so much :D
Title: Re: Redsy
Post by: Edworld on August 16, 2015, 05:23:19 PM
The Facebook and Twitter icons in the Social Icons at the bottom of the forum seems to be inverted

Go to edit the template and then search for:

<ul class="social">
         <li>&nbsp;</li>';
         if(!empty($settings['facebook_check']))
         echo'
         <li>
            <a href="', !empty($settings['facebook_text']) ? $settings['facebook_text'] : 'http://www.facebook.com ' ,'" title="', $txt['rs_facebook'], '"><i class="fa fa-twitter fa-2x"></i></a>
         </li>';
         if(!empty($settings['twitter_check']))
         echo'         
         <li>
            <a href="', !empty($settings['twitter_text']) ? $settings['twitter_text'] : 'http://www.twitter.com' ,'" title="', $txt['rs_twitter'], '"><i class="fa fa-facebook fa-2x"></i></a>
         </li>';
         if(!empty($settings['youtube_check']))
         echo'
         <li>
            <a href="', !empty($settings['youtube_text']) ? $settings['youtube_text'] : 'http://www.youtube.com' ,'" title="', $txt['rs_youtube'], '"><i class="fa fa-youtube fa-2x"></i></a>
         </li>';
         if(!empty($settings['rss_check']))
         echo'
         <li>
            <a href="', !empty($settings['rss_text']) ? $settings['rss_text'] : $scripturl .'?action=.xml;type=rss' ,'" title="', $txt['rs_rss'], '"><i class="fa fa-rss fa-2x"></i></a>
         </li>';
         echo'
      </ul>


Replace with this

<ul class="social">
         <li>&nbsp;</li>';
         if(!empty($settings['facebook_check']))
         echo'
         <li>
            <a href="', !empty($settings['facebook_text']) ? $settings['facebook_text'] : 'http://www.facebook.com ' ,'" title="', $txt['rs_facebook'], '"><i class="fa fa-facebook fa-2x"></i></a>
         </li>';
         if(!empty($settings['twitter_check']))
         echo'         
         <li>
            <a href="', !empty($settings['twitter_text']) ? $settings['twitter_text'] : 'http://www.twitter.com' ,'" title="', $txt['rs_twitter'], '"><i class="fa fa-twitter fa-2x"></i></a>
         </li>';
         if(!empty($settings['youtube_check']))
         echo'
         <li>
            <a href="', !empty($settings['youtube_text']) ? $settings['youtube_text'] : 'http://www.youtube.com' ,'" title="', $txt['rs_youtube'], '"><i class="fa fa-youtube fa-2x"></i></a>
         </li>';
         if(!empty($settings['rss_check']))
         echo'
         <li>
            <a href="', !empty($settings['rss_text']) ? $settings['rss_text'] : $scripturl .'?action=.xml;type=rss' ,'" title="', $txt['rs_rss'], '"><i class="fa fa-rss fa-2x"></i></a>
         </li>';
         echo'
      </ul>


Hope it helps and Daniel update his template. Greetings from Venezuela!
Title: Re: Redsy
Post by: fxj on August 28, 2015, 11:33:14 AM
Yes Twitter and FB bottom icons are inverted

How to change the color of background (brand-danger)? I see that there are some integrated and the default is #D9534F
getbootstrap.com/customize/?id=dfe8c23f60c3b4da3578
Title: Re: Redsy
Post by: Adrek on August 28, 2015, 03:44:18 PM
There is one hardcoded string in Display.template.php:
<button type="button" class="btn btn-primary dropdown-toggle btn-sm" data-toggle="dropdown">Actions <span class="caret"></span></button>
Title: Re: Redsy
Post by: Jingaling on September 19, 2015, 01:13:42 PM
Hi,

i'm using this theme on my site, but I'm having issues with the @mentions mod and getting the alert to work. By "alert" I mean the [1] that appears next to "mentions" in the menu (much the same way as when you receive a PM).

Because of the custom menu, the "mentions" option doesn't appear. I've managed to add this to the "my messages" menu by adding the following code to subs.php:


'mentions' => array(
     'title' => $txt['mentions'] . (!empty($user_settings['unread_mentions']) ? ' [' . $user_settings['unread_mentions'] . ']' : ''),
     'href' => $scripturl . '?action=profile;area=mentions',
     'show' => true,
     'is_last' => true,
     ),


However, it doesn't go bold and show the [1] when someone gets a mention. Does anyone know what I need to do in order to make this work please? Here's a link to the mod in question:
http://custom.simplemachines.org/mods/index.php?mod=3860 (http://custom.simplemachines.org/mods/index.php?mod=3860)

Thanks,

Kev
Title: Re: Redsy
Post by: Portugal on September 19, 2015, 02:32:07 PM
Any solution for that? Ive try it and doesnt worked for me..:(

Quote from: 420Connect.co.uk on August 06, 2015, 02:16:50 PM
Quote from: ByHazerfen on August 06, 2015, 11:39:36 AM
Mobile logout button close? help.

In your Themes/Redsy/css/index.css

add this at the bottom of the page:

@media (max-width: 767px) {
#button_logout, #button_profile
{
display: visible;
}
}


This will restore the logout and profile buttons when in mobile mode.  ;)
(and just remove ", #button_profile" if you wish to keep that hidden)
Title: Re: Redsy
Post by: justinguru on September 23, 2015, 08:07:52 AM
Please award badges are not showing in user profile in posts ... hoe do i enable it please
Title: Re: Redsy
Post by: Rene88 on September 26, 2015, 12:25:06 PM
How can i make the top nav bar higher? (where the logo is in. its to smal for my logo.
please help.

Title: Re: Redsy
Post by: rebus on September 28, 2015, 07:14:13 PM
Great theme! I would like to put the "Quote" link (which is now in a submenu) outside of that menu, may you suggest a way to do it?
Title: Re: Redsy
Post by: dogdayfear on October 05, 2015, 03:32:39 PM
Hi!

I noticed that captcha images under 'Anti-spam' configuration in the admin options are not generated with this theme.

Can anybody confirm this and point any solution?

Thanks in advance.
Title: Re: Redsy
Post by: Gluz on October 06, 2015, 01:44:55 AM
I don't have this Theme, but have some problem like this, and it was solved by running file_check.php and fix all the files as the tool suggest.

http://wiki.simplemachines.org/smf/File_check.php_-_What_is_it_and_what_does_it_do

Title: Re: Redsy
Post by: noobest on October 06, 2015, 02:58:50 PM
Quote from: dogdayfear on October 05, 2015, 03:32:39 PM
Hi!

I noticed that captcha images under 'Anti-spam' configuration in the admin options are not generated with this theme.

Can anybody confirm this and point any solution?

Thanks in advance.

Hey! I had the same problem, here is the solution :)

Go to Redsy's language folder and edit with Notepad++ (free program) every file named "ThemeStrings.xxxx", do:

- For every file be sure the code ends at "?>", delete EVERY space/line after.
- utf8 files must be saved as "Encode with UTF-8 without BOM", you will see this option in the "Encoding" menu, at the top.

And then ... magic!

Title: Re: Redsy
Post by: 420Connect.co.uk on October 08, 2015, 06:09:05 AM
@Daniiel or anyone with a good knowledge of .css & @media stuff!

I've played around with the theme quite a bit, but think some of my tinkering has b*ggered other parts of it..
I'm looking for someone to have a good look through the code and help put things right, but unfortunately I don't have the knowledge and will likely only make things worse..

Offering to pay for help..

.. related post:
Quote from: 420Connect.co.uk on October 08, 2015, 06:04:38 AM
Hey,

I've just had another look into this and although the @mention mod appears to cause issues.
I think the real problem is some of my tinkering to do with the theme .css ..whilst I thought I had implemented some ideas, although it seemed okay, I think I've brought up issues elsewhere..

Hopefully someone who understands themes can help me put things right!

I've had a look with 'Inspect Element' and after a bit of playing around found the "overflow: hidden;" part seems to be hiding the missing parts, but if I remove that line or change it to 'auto' it shows, but in a weird position..

.body_message
{
padding: 20px 0;
overflow: hidden;
}


It would be awesome if anyone wouldn't mind having a look over my theme files (specifically the responsive, @media stuff) as I think that is where the problem lies..

.. I'd be happy to offer a little donation to anyone who can help get me running smoothly :)

Thank you
Title: Re: Redsy
Post by: Adrek on October 21, 2015, 04:59:46 PM
Recent posts tab in Info Center doesn't seem to work under any web browser (Chrome, Firefox and even IE) - it doesn't get 'active' class after clicking on it. Did anyone solved this issue?
Title: Re: Redsy
Post by: margarett on October 21, 2015, 05:21:32 PM
@phantomm --> http://www.simplemachines.org/community/index.php?topic=535335.msg3813573#msg3813573
;)
Title: Re: Redsy
Post by: Adrek on October 21, 2015, 05:23:46 PM
Thank you.

I swear that I did read every page in this topic... I'll blame it on late hour ::)
Title: Re: Redsy
Post by: rj07 on October 31, 2015, 09:13:15 AM
Hey,
While using "oneall" social login, everything is fine in web browsers. But in mobile browser, I don't see the google or fb login buttons. It shows a blank.
Any ideas?
Thanks
Title: Re: Redsy
Post by: natcip on November 09, 2015, 01:28:17 PM
Love this theme! :)

Is there a way to make the quote/modify/delete links appear next to one another, instead of first clicking on the "action" button?
Title: Re: Redsy
Post by: Rene88 on November 18, 2015, 01:52:25 PM
Hello i wonder if there is a way to fix the problems below i have them to.

Quote from: spikeweb on June 29, 2015, 07:31:35 AM
Has anyone any idea on how to display the profil area in mobile mode (using a smartphone) ?
I need at least to offer the recent messages and answer to my messages links

THX

It would be nice if in mobile mode that you can see recent messages and answer


Quote from: 420Connect.co.uk on July 02, 2015, 12:31:56 PM

1) Navigating to sub menu items, I find a bit of a nuisance as "hovering" on a phone/tablet is obviously different to "hovering" with your mouse..
Could anyone help in making this a "click to display/open" type menu, instead?


in mobile mode on my fone you cant hover and when you click it loads the page and dont show the sub menus.

hope someone can help.

Thanks!
Title: Re: Redsy
Post by: helyea on November 22, 2015, 09:03:28 AM
Anybody can help me with this? I want put the logo in the middle

(http://img.prntscr.com/img?url=http://i.imgur.com/BxwBo77.png)
Title: Re: Redsy
Post by: La Friki on December 03, 2015, 07:54:08 AM
Anybody knows how set custom icons for every forum in this theme? I tried it with plugins, but dosn't work :(

And I'm trying to show the range name below the range icon in the post mesages (at the left of the post, in the profile of the user), but I don't know how I can make it...
Title: Re: Redsy
Post by: Jade Elizabeth on December 07, 2015, 06:49:28 AM
Quote from: Daniiel on May 26, 2015, 05:41:31 PM
Quote from: Burke ♞ Knight on May 26, 2015, 12:28:17 PM
Quote from: dominik523 on May 19, 2015, 03:15:04 AM
I have one question. When I go on my mobile phone and try your theme, I can't see on any post names of the users which posted a reply. Can I turn on that somewhere or I'll have to go though the code?
Thanks in advance!

This, I'd like to know, too. What's the point of not showing the poster name and group with the post.
If get post and replies, you have NO idea who the heck posted them.

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


Are these issues and the inverted social media icons being fixed for a new release? This theme is amazing but I'm having some trouble and I think there's an issue in the display template. When I validate it for guests via W3C there's a stray </ul>. I didn't want to guess which one it was and try to surround it with the right calls so I figured I'd leave it to you.

Quote from: margarett on May 21, 2015, 10:12:55 AM
Quote from: ThaiJSP on May 20, 2015, 03:59:07 AM
I had use this theme for my webboard but it doesn't show Recent Posts. like pictures that i attached.
I seriously suck at theming but I found the same problem. I fixed it with

BoardIndex.template.php, find:
<div class="hslice tab-pane" id="recent_posts_content recent" role="tabpanel">
Replace with:
<div class="hslice tab-pane" id="recent" role="tabpanel">
(recent_posts_content seems not to be used anywhere else in the theme's files, so I removed it and it works)
Quote from: margarett on June 17, 2015, 05:26:30 AM
In BoardIndex.template.php, you just need to move the
class="active"

from the li "users" to li "recent".

Just remember that you can't disable recent posts after this, or else you will have no active tabs (because the current active tab can't be disabled and always has content)

This didn't work for me and I don't want that tab to be active initially...do I need to install that recent posts on board index mod or is there another way? :)

Title: Re: Redsy
Post by: anikpand on December 14, 2015, 10:38:34 AM
Can you Please Help me with the LOGO size please i am unable to change the SSize
Title: Re: Redsy
Post by: Daniiel on December 15, 2015, 07:56:32 PM
New release!
(http://i.imgur.com/Ooq6Lwv.png)

Greetings!
Title: Re: Redsy
Post by: Jade Elizabeth on December 15, 2015, 10:50:47 PM
Did you fix the stray </ul> in the display template as well? :)

http://www.simplemachines.org/community/index.php?topic=535335.msg3850637#msg3850637
Title: Re: Redsy
Post by: Daniiel on December 16, 2015, 01:48:03 AM
Quote from: Jade Elizabeth on December 15, 2015, 10:50:47 PM
Did you fix the stray </ul> in the display template as well? :)

http://www.simplemachines.org/community/index.php?topic=535335.msg3850637#msg3850637
Now I think it´s fixed.
Display.template.php
Search:
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>
</div>
<ul class="reset floatright" style="margin: 5px 15px 0 7px;">';

Replace with:
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>
</div>';

echo'
<ul class="reset floatright" style="margin: 5px 15px 0 7px;">';

Title: Re: Redsy
Post by: OCJ on December 16, 2015, 07:50:16 AM
Thanks, enjoyed using this theme.
Title: Re: Redsy
Post by: Jade Elizabeth on December 16, 2015, 08:38:12 PM
Thanks heaps Daniiel! :D

I haven't updated it yet, but if you were curious here's what I did with your theme....mostly it's just color changes but it looks so different ha ha:
http://www.colormeforum.com/

Will be updating tonight with Winmerge's assistance ha ha.
Title: Re: Redsy
Post by: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
Title: Re: Redsy
Post by: VBuser on December 21, 2015, 12:34:52 AM
I cannot log in or out, is this fix coming?

Title: Re: Redsy
Post by: Rene88 on December 22, 2015, 06:16:58 PM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You

Have the same problem.
updated and now have that problem :(
Title: Re: Redsy
Post by: Decent_946 on December 25, 2015, 02:31:13 PM
Quote from: Rene88 on December 22, 2015, 06:16:58 PM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You

Have the same problem.
updated and now have that problem :(
if u guys want logout button on menu. it can be done by using this (http://custom.simplemachines.org/mods/index.php?mod=3310) mod.. when u will install this mod, the logout button will automatically appear in your menu.

well, actual reason for replying here was to post a error of this theme.
ahm, i just recently installed this theme to my new forum which is ( http://skylarks.ml ) well the error i wanna report is.. i am using menu editor light mod in order to add/modify tabs menu bar .. well i am able to add a button but when i select external link, there doesn't appear a new small box where we give it that external link, like in other themes when we choose External link, a small box automatically appears where we put external link. but in this theme it doesn't appears..
i'll post some pictures soon because atm, i am unable to capture screenshot some PC errors..
Title: Re: Redsy
Post by: Rene88 on December 26, 2015, 06:23:54 AM
Its not only the logout button also the Show unread posts since last visit and Show new replies to your posts. what is gone :( hope there is a solusion fast.
Title: Re: Redsy
Post by: Decent_946 on December 26, 2015, 11:25:44 AM
Quote from: Rene88 on December 26, 2015, 06:23:54 AM
Its not only the logout button also the Show unread posts since last visit and Show new replies to your posts. what is gone :( hope there is a solusion fast.
here this actually is.   New posts instead of "Show unread posts since last visit". & New replies instead of "Show new replies".

Title: Re: Redsy
Post by: tietie on December 26, 2015, 12:41:52 PM
Hello

when full dispaly cannot find logout button.


anybody help please.
Title: want to show recent post (default)
Post by: tietie on December 27, 2015, 07:51:41 AM
hello Daniiel
thank for nice themes.

have a probrem
In Info Center it active show User online.
i want to active show recent post.

Thank a lot
Title: Re: want to show recent post (default)
Post by: Decent_946 on December 27, 2015, 02:57:59 PM
Quote from: tietie on December 27, 2015, 07:51:41 AM
hello Daniiel
thank for nice themes.

have a probrem
In Info Center it active show User online.
i want to active show recent post.

Thank a lot
simple.. as we add in other themes, goto Admin ==> Configuration => Current theme there you will find a option
"Number of recent posts to display on board index" you'll find "0" in that box, change it to your desire number.. i prefer 15.
Title: Re: Redsy
Post by: .Lúthien on December 28, 2015, 06:23:51 AM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
It's a great theme indeed, and beautifully responsive.
I have the same problem with the popup-up dropdown menu. I thought I had caused the problem myself by all the modifications I had done to the bootstrap.css and index.css.
Because I couldn't find it I eventually installed another instance of SMF and applied a vanilla copy of the Redsy theme to find that it didn't work there either.

What I could find with the browser's web developer is that on the smftricks demo site, when you move the mouse over the a.dropdown-toggle area (containing the avatar image & username), the code that contains the dropdown menu:
<li class="dropdown"> = $0
changes to
<li class="dropdown open"> = $0
which makes the menu appear. If I add it manually in the web developer tool it appears as well.

However, in the updated redsy template code the "open" class is not added on mouse-over.
Maybe there's a bug in the javascript that should make this happen?

EDIT

Just for the heck of it, I tried it with the older version of redsy.js found on demo.smftricks.com and now it works fine.
You could try that: rename the existing redsy.js, create another file named redsy.js and paste this code in it:

$(document).ready(function(){
$(".dropdown").hover(           
function() {
$(".dropdown-menu", this).stop( true, true ).fadeIn("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
},
function() {
$(".dropdown-menu", this).stop( true, true ).fadeOut("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
});
$(".scroll-to-top").click(function() {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
$(window).scroll(function(){

var position = $(window).scrollTop();

if(position >= 200) {
$(".scroll-to-top").addClass("active")
}
else {
$(".scroll-to-top").removeClass("active")
}
});
});
Title: Re: Redsy
Post by: pappferenc1 on December 28, 2015, 02:14:26 PM
Thank Daniiel, and all, and .Lúthien.  O:)  :)


What is this?
(https://i.gyazo.com/e28190177466b4b08e56c5c08f221c5c.png)

Help!

Sorry, don't speak elnglish.  ::) :-X
Title: Re: Redsy
Post by: Daniiel on December 29, 2015, 04:01:24 PM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
Sorry, my mistake, do this:
Index.template.php
Search:
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">

Replace with:
<ul class="nav navbar-nav navbar-right">
<li class="dropdown first-level">

Redsy.js (Themes/Redsy/scripts)
Search:
$(".dropdown.first-level").each(function() {         
Replace with:
$(".dropdown.first-level .dropdown-toggle").each(function() {           



Quote from: .Lúthien on December 28, 2015, 06:23:51 AM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
It's a great theme indeed, and beautifully responsive.
I have the same problem with the popup-up dropdown menu. I thought I had caused the problem myself by all the modifications I had done to the bootstrap.css and index.css.
Because I couldn't find it I eventually installed another instance of SMF and applied a vanilla copy of the Redsy theme to find that it didn't work there either.

What I could find with the browser's web developer is that on the smftricks demo site, when you move the mouse over the a.dropdown-toggle area (containing the avatar image & username), the code that contains the dropdown menu:
<li class="dropdown"> = $0
changes to
<li class="dropdown open"> = $0
which makes the menu appear. If I add it manually in the web developer tool it appears as well.

However, in the updated redsy template code the "open" class is not added on mouse-over.
Maybe there's a bug in the javascript that should make this happen?

EDIT

Just for the heck of it, I tried it with the older version of redsy.js found on demo.smftricks.com and now it works fine.
You could try that: rename the existing redsy.js, create another file named redsy.js and paste this code in it:

$(document).ready(function(){
$(".dropdown").hover(           
function() {
$(".dropdown-menu", this).stop( true, true ).fadeIn("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
},
function() {
$(".dropdown-menu", this).stop( true, true ).fadeOut("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
});
$(".scroll-to-top").click(function() {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
$(window).scroll(function(){

var position = $(window).scrollTop();

if(position >= 200) {
$(".scroll-to-top").addClass("active")
}
else {
$(".scroll-to-top").removeClass("active")
}
});
});


If you do that, it generates an error in the admin menu. Just do what I leave before.



I fixed the new realease!
Title: Re: Redsy
Post by: 420Connect.co.uk on December 30, 2015, 04:31:12 PM
Thanks for the updates on redsy Daniel!

I'm going to take my time rebuilding on another copy and move everything over once I've retweaked it to suit my needs..

Anyway, some basic things to start with..
Could you help hiding the members only buttons to guests when they click on the profile icon..

I think it should only show login /register for guests there and edit profile etc. once you have logged in. 
I'll be adding to the profile menu later on but thought I'd suggest adding a 'view profile' link inside the profile icon dropdown.

And my 2nd niggle, could you help with having one menu show at a time (e.g. if the profile menu is open and you click the main menu button, the profile menu would close and the other one opens..

No doubt I'll have a million other ideas along the way but they would be a nice tweak if you've got the time!  O:)

Cheers dude
Title: Re: Redsy
Post by: Rene88 on December 30, 2015, 08:02:10 PM
Thank you very much Daniiel :)
Title: Re: Redsy
Post by: romeoy2k on January 02, 2016, 11:34:59 AM
Quote from: Daniiel on December 29, 2015, 04:01:24 PM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
Sorry, my mistake, do this:
Index.template.php
Search:
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">

Replace with:
<ul class="nav navbar-nav navbar-right">
<li class="dropdown first-level">

Redsy.js (Themes/Redsy/scripts)
Search:
$(".dropdown.first-level").each(function() {         
Replace with:
$(".dropdown.first-level .dropdown-toggle").each(function() {           



Quote from: .Lúthien on December 28, 2015, 06:23:51 AM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
It's a great theme indeed, and beautifully responsive.
I have the same problem with the popup-up dropdown menu. I thought I had caused the problem myself by all the modifications I had done to the bootstrap.css and index.css.
Because I couldn't find it I eventually installed another instance of SMF and applied a vanilla copy of the Redsy theme to find that it didn't work there either.

What I could find with the browser's web developer is that on the smftricks demo site, when you move the mouse over the a.dropdown-toggle area (containing the avatar image & username), the code that contains the dropdown menu:
<li class="dropdown"> = $0
changes to
<li class="dropdown open"> = $0
which makes the menu appear. If I add it manually in the web developer tool it appears as well.

However, in the updated redsy template code the "open" class is not added on mouse-over.
Maybe there's a bug in the javascript that should make this happen?

EDIT

Just for the heck of it, I tried it with the older version of redsy.js found on demo.smftricks.com and now it works fine.
You could try that: rename the existing redsy.js, create another file named redsy.js and paste this code in it:

$(document).ready(function(){
$(".dropdown").hover(           
function() {
$(".dropdown-menu", this).stop( true, true ).fadeIn("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
},
function() {
$(".dropdown-menu", this).stop( true, true ).fadeOut("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
});
$(".scroll-to-top").click(function() {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
$(window).scroll(function(){

var position = $(window).scrollTop();

if(position >= 200) {
$(".scroll-to-top").addClass("active")
}
else {
$(".scroll-to-top").removeClass("active")
}
});
});


If you do that, it generates an error in the admin menu. Just do what I leave before.



I fixed the new realease!
Thank you very much Daniiel ^^
Title: Re: Redsy
Post by: Diego Andrés on January 02, 2016, 06:24:25 PM
This is a fix for a issue the theme had, for the ones that downloaded it recent days after the update.
index.template.php
Code (Search) Select
</button>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#user-menu">
<i class="fa fa-user"></i>
</button>
<a class="navbar-brand" href="' , $scripturl , '">', empty($context['header_logo_url_html_safe']) ? $context['forum_name'] : '<img class="logo" src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />', '</a>

Code (Replace) Select
</button>';

if(!empty($context['user']['is_logged']))
echo '
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#user-menu">
<i class="fa fa-user"></i>
</button>';

echo '
<a class="navbar-brand" href="' , $scripturl , '">', empty($context['header_logo_url_html_safe']) ? $context['forum_name'] : '<img class="logo" src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />', '</a>


Code (Search) Select
echo '
<div class="collapse navbar-collapse" id="user-menu">
<ul class="nav navbar-nav" role="menu">
<li><a href="' , $scripturl , '?action=profile;area=forumprofile;"><i class="fa fa-gear fa-fw"></i>' , $txt['edit_profile'] , '</a></li>
<li><a href="' , $scripturl , '?action=profile;area=account;"><i class="fa fa-wrench fa-fw"></i>' , $txt['profile_account'] , '</a></li>
<li><a href="' , $scripturl , '?action=unread;"><i class="fa fa-comment fa-fw"></i>' , $txt['new_posts'] , '</a></li>
<li><a href="' , $scripturl , '?action=unreadreplies;"><i class="fa fa-comments fa-fw"></i>' , $txt['new_replies'] , '</a></li>
<li class="divider"></li>
<li><a href="' , $scripturl , '?action=logout;sesc=', $context['session_id'], '"><i class="fa fa-sign-out fa-fw"></i>' , $txt['logout'] , '</a></li>
</ul>
</div>

Code (Replace) Select
if(!empty($context['user']['is_logged']))
echo '
<div class="collapse navbar-collapse" id="user-menu">
<ul class="nav navbar-nav" role="menu">
<li><a href="' , $scripturl , '?action=profile;area=forumprofile;"><i class="fa fa-gear fa-fw"></i>' , $txt['edit_profile'] , '</a></li>
<li><a href="' , $scripturl , '?action=profile;area=account;"><i class="fa fa-wrench fa-fw"></i>' , $txt['profile_account'] , '</a></li>
<li><a href="' , $scripturl , '?action=unread;"><i class="fa fa-comment fa-fw"></i>' , $txt['new_posts'] , '</a></li>
<li><a href="' , $scripturl , '?action=unreadreplies;"><i class="fa fa-comments fa-fw"></i>' , $txt['new_replies'] , '</a></li>
<li class="divider"></li>
<li><a href="' , $scripturl , '?action=logout;sesc=', $context['session_id'], '"><i class="fa fa-sign-out fa-fw"></i>' , $txt['logout'] , '</a></li>
</ul>
</div>';
echo '


Daniel already updated the theme but he forgot to leave some advice about that.

Regards
Title: Re: Redsy
Post by: Quelley on January 10, 2016, 09:42:46 AM
Hello!

Recently I've been installing and trying different themes, but I found a nice one, Redsy.
However there is a problem, whenever I hold my mouse over one of the menu options, In the admin section for example: Main, Configuration, Forum.
If I hold my mouse over those, then normally a small submenu should pop up or 'unroll' with the options.
But it doesn't anymore, when I set the default theme it does. Can someone help me? even if I click Forum for example, It just goes to the main page of forum settings and I can't acces the other settings as long as Im in that theme.

Can anyone help me with this? I'd appreciate it.
I hope you understood my english :s (On the demo version it does show the dropdowns from the menu, but on mine it doesn't?)

Title: Re: Redsy
Post by: Jade Elizabeth on January 11, 2016, 06:07:18 AM
Quote from: margarett on May 21, 2015, 10:12:55 AM
Quote from: ThaiJSP on May 20, 2015, 03:59:07 AM
I had use this theme for my webboard but it doesn't show Recent Posts. like pictures that i attached.
I seriously suck at theming but I found the same problem. I fixed it with

BoardIndex.template.php, find:
<div class="hslice tab-pane" id="recent_posts_content recent" role="tabpanel">
Replace with:
<div class="hslice tab-pane" id="recent" role="tabpanel">
(recent_posts_content seems not to be used anywhere else in the theme's files, so I removed it and it works)

This is how the theme has it already and it's not showing.
Title: Re: Redsy
Post by: Jade Elizabeth on January 16, 2016, 02:04:53 AM
So how can I add a panel to the theme's thingie down the bottom of the board index? :)
Title: Re: Redsy
Post by: Lord_Rius on January 18, 2016, 06:08:54 PM
Hi!

When a post is locked or sticked, it does not show the corresponding gif in corner ¿can somebody confirm this and if there is any fix?

Many thanks, great theme.

(http://i.imgur.com/hKXHgtC.png)
Title: Re: Redsy
Post by: Kardamilas on January 21, 2016, 02:56:55 PM
Quote from: margarett on June 17, 2015, 05:26:30 AM
In BoardIndex.template.php, you just need to move the
class="active"

from the li "users" to li "recent".

Just remember that you can't disable recent posts after this, or else you will have no active tabs (because the current active tab can't be disabled and always has content)

Can you please give code because i want to do the same but i dont know wich li "users" i should change.
Thanks
Title: Re: Redsy
Post by: margarett on January 21, 2016, 08:04:34 PM
The complete code is this
echo'
<li role="presentation">
<a href="#recent" aria-controls="recent" role="tab" data-toggle="tab">
<i class="fa fa-comments"></i>
<span>&nbsp;', $txt['recent_posts'], '</span>
</a>
</li>';
}
if ($context['show_calendar'])
{
echo'
<li role="presentation">
<a href="#calendar" aria-controls="calendar" role="tab" data-toggle="tab">
<i class="fa fa-comments"></i>
<span>&nbsp;', $context['calendar_only_today'] ? $txt['calendar_today'] : $txt['calendar_upcoming'], '</span>
</a>
</li>';

}
if ($settings['show_stats_index'])
{
echo'
<li role="presentation">
<a href="#stats" aria-controls="stats" role="tab" data-toggle="tab">
<i class="fa fa-comments"></i>
<span>&nbsp;', $txt['forum_stats'], '</span>
</a>
</li>';
}
echo'
<li role="presentation" class="active">
<a href="#users" aria-controls="users" role="tab" data-toggle="tab">
<i class="fa fa-users"></i>
<span>&nbsp;', $txt['online_users'], '</span>
</a>
</li>

You'll see that each tab has a "li role = presentation", and the default active tab also has "class=active".
So just delete the class="active" from the current li and add that to the "li" you want to make default ;)

Eg:
echo'
<li role="presentation" class="active">
<a href="#recent" aria-controls="recent" role="tab" data-toggle="tab">
<i class="fa fa-comments"></i>
<span>&nbsp;', $txt['recent_posts'], '</span>
</a>
</li>';
}
if ($context['show_calendar'])
{
echo'
<li role="presentation">
<a href="#calendar" aria-controls="calendar" role="tab" data-toggle="tab">
<i class="fa fa-comments"></i>
<span>&nbsp;', $context['calendar_only_today'] ? $txt['calendar_today'] : $txt['calendar_upcoming'], '</span>
</a>
</li>';

}
if ($settings['show_stats_index'])
{
echo'
<li role="presentation">
<a href="#stats" aria-controls="stats" role="tab" data-toggle="tab">
<i class="fa fa-comments"></i>
<span>&nbsp;', $txt['forum_stats'], '</span>
</a>
</li>';
}
echo'
<li role="presentation">
<a href="#users" aria-controls="users" role="tab" data-toggle="tab">
<i class="fa fa-users"></i>
<span>&nbsp;', $txt['online_users'], '</span>
</a>
</li>
Title: Re: Redsy
Post by: Jade Elizabeth on January 21, 2016, 11:44:12 PM
No the way to get it to show up is to put a number in "recent posts on board index" in the "current theme" settings....that's what we're all missing now ha ha.
Title: Re: Redsy
Post by: Kardamilas on January 22, 2016, 07:50:27 AM
Thanks margarett,now i got it.I did it but despite that now recent tab is the default it
doesnt show anythning...if i click elswere,to users tab and then i return to recent
now it showes everything...messy...any idea?
Title: Re: Redsy
Post by: margarett on January 22, 2016, 08:10:53 AM
Quote from: Jade Elizabeth on January 21, 2016, 11:44:12 PM
put a number in "recent posts on board index" in the "current theme" settings....that's what we're all missing now ha ha.
No?
Title: Re: Redsy
Post by: skidzGλMING on January 23, 2016, 04:42:07 AM
Hello,
Is there a way to disable mobile view on phones for redsy?
Title: Re: Redsy
Post by: OCJ on January 27, 2016, 11:17:50 PM
I'm having a couple of problems with the menu...

1.
This is on a pc. I  stretch the browser wider from a narrow mobile view until the top menu reappears. After that any menu items with sub-menus stops working (Admin, Moderate, My Messages, Members...).
If I click a top level menu with a single item (no submenu) it works, and then after that reload the others start to work again.


2. Maybe menu mod problem.
I have no mobile device access so need to ask people to check it but some people reported that custom sub-menu items were not displaying on touch. I have since uninstalled Menu Editor Lite to try another way. custom links in the header or maybe Ultimate Menu mod.

Title: Re: Redsy
Post by: OCJ on January 27, 2016, 11:31:09 PM
I'm getting the same effect as well the opposite way on a pc, when I make the browser narrow and it changes to mobile menu. The menus with sub-menu items stop working.
That is on latest Firefox and Chrome on Linux.

The logged in user menu at the top right show a drop down  symbol (>  pointing down) but noting displays on mouse over or  click.
Having log in menu item  but no log out is not optimal...
Title: Re: Redsy
Post by: Jade Elizabeth on February 04, 2016, 03:28:33 AM
Can you please help me with the new post icons? I added a new icon to the message index to show another icon like the new post icon, and it's not displaying the same cause the new post icon is turned into a label somehow.

I just want to work the same magic for the other two :). They use the same code basically...

echo '<a href="', $topic['first_post']['href'], '" id="todayicon' . $topic['first_post']['id'] . '"><img src="', $settings['lang_images_url'], '/today.png" alt="', $txt['btn_today'], '" /></a>';

echo '<a href="', $topic['first_post']['href'], '" id="updateicon' . $topic['first_post']['id'] . '"><img src="', $settings['lang_images_url'], '/update.png" alt="', $txt['btn_update'], '" /></a>';
Title: Re: Redsy
Post by: Jade Elizabeth on February 12, 2016, 09:18:29 PM
Can you please help with my post before? I am still having issues with it.
Title: Re: Redsy
Post by: Daniiel on February 12, 2016, 10:05:35 PM
Quote from: Jade Elizabeth on February 12, 2016, 09:18:29 PM
Can you please help with my post before? I am still having issues with it.
Index.template.php
Search and delete:
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");

Regards!
Title: Re: Redsy
Post by: Jade Elizabeth on February 13, 2016, 05:36:16 AM
Thanks heaps! I added lines for my buttons and they look great now! :D

Title: Re: Redsy
Post by: irishgal1971 on February 15, 2016, 03:42:42 PM
How do I adjust the header height so my logo doesn't cover the menu?
Title: Re: Redsy
Post by: The Domain Shop on February 16, 2016, 04:13:41 PM
Quote from: irishgal1971 on February 15, 2016, 03:42:42 PM
How do I adjust the header height so my logo doesn't cover the menu?

bootstrap.css

.navbar {
  border:none;
  min-height:50px; <<
  position:relative;
}

Be aware that altering responsive css will affect how the theme displays on other devices
Title: Re: Redsy
Post by: noisemarine on March 12, 2016, 08:10:48 AM
Say, I seem to be using an older version of Redsy that I downloaded direct from the SMF Tricks site. The version here on SMF is more recent. What is the proper method for updating?

Awesome theme. Thanks very much, Daniiel.  :)
Title: Re: Redsy
Post by: Hulapyk on March 30, 2016, 03:55:55 PM
Hi! Thanks for this awesome theme!

I've been wondering over a thing tho, when people on my forum havent picked an avatar they have the default avatar picture, which is quite big 128x128 or so? But whenever I select an avatar from my pc, or from somewhere else, it makes the avatar frame smaller, I guess my picture is around 75x75 pixels. I'd love to have bigger avatars :b

Thanks in advance.

- Hulapyk
Title: Re: Redsy
Post by: Wapilbn on May 11, 2016, 02:26:49 AM
Hi everyone :)

Can somebody help me with child boards ? I mean... is there any chance to apply "tidy child boards" mod in to the REDSY theme ?
?

I have 2.0.11 version and in the "curve" and "core" themes, everything is OK. But when i change theme to REDSY.... this mod isnt work :(

Or maybe is other way to tidy up the look of my child boards into ordered columns  ?  Of course in REDSY THEME :)

Ps. sorry for my english language :(
Title: Re: Redsy
Post by: Wapilbn on May 12, 2016, 03:20:16 AM
Anyone ?
Title: Re: Redsy
Post by: Wapilbn on May 12, 2016, 05:20:17 AM
Ps. reinstall this mod in emulated mod ( 2.0.4 ) nothing change... is not work in redsy. I mean... onl in REDSY. In other themes emulated reinstall this mod is working fine.
Title: Re: Redsy
Post by: Wapilbn on May 13, 2016, 05:14:55 AM
OK. With the new version od TIDY CHILD BOARDS everything is ok. Problem solved. Please delete other posts ( why i can't ? )


New question : How to change color of the boards ? Everything is grey/ black. I want to clolozire some boards names....
Ps. default colorize in theme options is not working 
Title: Re: Redsy
Post by: willymmx on May 27, 2016, 03:11:53 PM
Thanks Daniel! this a great theme, everything working fine for me.

Thanks again!
Title: Re: Redsy
Post by: willymmx on May 27, 2016, 06:43:38 PM
Quote from: Wapilbn on May 13, 2016, 05:14:55 AM
OK. With the new version od TIDY CHILD BOARDS everything is ok. Problem solved. Please delete other posts ( why i can't ? )


New question : How to change color of the boards ? Everything is grey/ black. I want to clolozire some boards names....
Ps. default colorize in theme options is not working

Here is my forum http://www.hondacgclub.com.ar/ I changed many colors, you can do this using Firebug (this is a webmaster addon for your browser) so you can "inspect" the area you want to modify, and Firebug will tell you  which file and attributes you need to change, ex: index.css. This is really simple, I'm not a web developer and I did it hahaha.

I love this theme!
Title: Re: Redsy
Post by: Jade Elizabeth on June 02, 2016, 09:34:32 AM
Hey Daniiel, I just installed Open Sans and now I can't read anything on the page at all because it's so tiny...so I am wondering a couple of things...

1. Why didn't you @fontface it with google or something so it would load for everyone, not just people with it on their computers.
2. Why didn't you apply it everywhere? The profile user info, "action" buttons, and report to mod/IP stuff, childboards, info centre, Stats History, etc doesn't have any fonts applied.

I'm going to change it to something more readable but I thought you should know about the issues :).
Title: Re: Redsy
Post by: Jade Elizabeth on June 13, 2016, 10:26:39 PM
Is there a way to get the menu to be callable through SSI? :)

Using the default doesn't actually show it like the theme has it, and it doesn't show the whole top red bar either.
Title: Re: Redsy
Post by: Pravi on June 23, 2016, 09:45:11 AM
Hello  Daniiel

I am trying to start a community  and i am new to all this. I have installed redsy theme and  simple portal sidebar in my forum. The sidebar block merges with every thing adjacent to it. I just want to add padding after the block. I dont know exactly how to do that. Need some help guys.


Please help.
Title: Re: Redsy
Post by: Jade Elizabeth on June 24, 2016, 01:08:33 AM
You should post that in the simple portal topic, the theme author will not know how to change things in other mods.

Lucky I've been where you are. What you want to do is go into edit block.

Change the default background title class to catbg
Custom title style: margin-bottom: 0px;

Default body class: windowgb
TICK "no body"
Custom body: background: #fff; padding: 5px; border-left: 1px solid #CCC; border-right: 1px solid #CCC; border-bottom: 1px solid #CCC;

See it in action here: http://www.colormeforum.com/
Title: Re: Redsy
Post by: Pravi on June 24, 2016, 02:28:40 AM
Hi Jade Elizabeth..

I removed simple portal and installed Tiny portal. Its now working very well. Now i am having a new problem with mobile optimization. Can you help me to hide the sidebar in mobile platform ??
Title: Re: Redsy
Post by: Jade Elizabeth on June 24, 2016, 03:04:22 AM
No, you'll need to ask TP how to do that. I can do it on SP but not TP :).
Title: Re: Redsy
Post by: Pravi on June 24, 2016, 05:30:52 AM
Hi Jade Elizabeth..

I saw sidebars in you forum colormeforum.com and its well optimized in mobile platform. I assume that you are using redsy theme. If so ,could you please tell me how did you optimized your site in mobile  ?
For me,  sidebars ruin my site in  mobile platform..

Title: Re: Redsy
Post by: Jade Elizabeth on June 24, 2016, 08:48:43 AM
I can't tell you how to do it for TP, only SP. I don't know TP and the same solution may not work. You'll have to ask them how to remove the sidebars on mobile :).
Title: Re: Redsy
Post by: The Domain Shop on July 04, 2016, 02:41:08 PM
Quote from: Pravi on June 24, 2016, 05:30:52 AM
Hi Jade Elizabeth..

I saw sidebars in you forum colormeforum.com and its well optimized in mobile platform. I assume that you are using redsy theme. If so ,could you please tell me how did you optimized your site in mobile  ?
For me,  sidebars ruin my site in  mobile platform..

You will have to override style elements in the css so that side block resize or disappear when using a mobile device. Tbh it shouldn't be that hard to do.
Title: Re: Redsy
Post by: Pravi on July 06, 2016, 03:05:15 PM
Hello guys..

                Thank for the replay  @Host Pound. Somehow i solved my propblem with sidebar. Now i have a new problem with the post icons and message icons in mobile platform.  They are missing in mobile phones when site loads.The site loads with post icon and message icon and all of a sudden it  disappears. Need some help guys.

Thank you

Title: Re: Redsy
Post by: The Domain Shop on July 06, 2016, 04:48:52 PM
Quote from: Pravi on July 06, 2016, 03:05:15 PM
Hello guys..

                Thank for the replay  @Host Pound. Somehow i solved my propblem with sidebar. Now i have a new problem with the post icons and message icons in mobile platform.  They are missing in mobile phones when site loads.The site loads with post icon and message icon and all of a sudden it  disappears. Need some help guys.

Thank you

Can we see the theme on a live site?
Title: Re: Redsy
Post by: Pravi on July 07, 2016, 02:44:11 AM
Quote from: Host Pound on July 06, 2016, 04:48:52 PM
Quote from: Pravi on July 06, 2016, 03:05:15 PM
Hello guys..

                Thank for the replay  @Host Pound. Somehow i solved my propblem with sidebar. Now i have a new problem with the post icons and message icons in mobile platform.  They are missing in mobile phones when site loads.The site loads with post icon and message icon and all of a sudden it  disappears. Need some help guys.

Thank you

Can we see the theme on a live site?


pix2box.com

Its not the original site. Its a test site..theme is installed. please take a look..
Title: Re: Redsy
Post by: The Domain Shop on July 07, 2016, 08:55:34 AM
Quote from: Pravi on July 07, 2016, 02:44:11 AM
Quote from: Host Pound on July 06, 2016, 04:48:52 PM
Quote from: Pravi on July 06, 2016, 03:05:15 PM
Hello guys..

                Thank for the replay  @Host Pound. Somehow i solved my propblem with sidebar. Now i have a new problem with the post icons and message icons in mobile platform.  They are missing in mobile phones when site loads.The site loads with post icon and message icon and all of a sudden it  disappears. Need some help guys.

Thank you

Can we see the theme on a live site?


pix2box.com

Its not the original site. Its a test site..theme is installed. please take a look..

In the themes index.css

Find

.topic_table .icon1, .topic_table .icon2, .topic_table .stats
{
text-align: center;
}


Replace it with

.topic_table .icon1, .topic_table .icon2, .topic_table .stats
{
text-align: center;
        min-width: 30px;
}


Just adjust the min-width to suit your needs.

Hope that helps :)
Title: Re: Redsy
Post by: Pravi on July 07, 2016, 09:15:14 AM
Quote from: Host Pound on July 07, 2016, 08:55:34 AM
Quote from: Pravi on July 07, 2016, 02:44:11 AM
Quote from: Host Pound on July 06, 2016, 04:48:52 PM
Quote from: Pravi on July 06, 2016, 03:05:15 PM
Hello guys..

                Thank for the replay  @Host Pound. Somehow i solved my propblem with sidebar. Now i have a new problem with the post icons and message icons in mobile platform.  They are missing in mobile phones when site loads.The site loads with post icon and message icon and all of a sudden it  disappears. Need some help guys.

Thank you

Can we see the theme on a live site?


pix2box.com

Its not the original site. Its a test site..theme is installed. please take a look..

In the themes index.css

Find

.topic_table .icon1, .topic_table .icon2, .topic_table .stats
{
text-align: center;
}


Replace it with

.topic_table .icon1, .topic_table .icon2, .topic_table .stats
{
text-align: center;
        min-width: 30px;
}


Just adjust the min-width to suit your needs.

Hope that helps :)

Thanks Host Pound.
Its worked great... you are awesome.
Thank you :D :D
Title: Re: Redsy
Post by: The Domain Shop on July 07, 2016, 11:25:46 AM
QuoteThanks Host Pound.
Its worked great... you are awesome.
Thank you :D :D

No problem :)
Title: Re: Redsy
Post by: Pravi on July 28, 2016, 03:04:41 PM
Hello guys,

          I have already installed redsy.I need a little help to remove the bubble arrow in the post and also want to increase the width of the post box without affecting the mobile view.


Title: Re: Redsy
Post by: The Domain Shop on July 29, 2016, 03:29:12 PM
Quote from: Pravi on July 28, 2016, 03:04:41 PM
Hello guys,

          I have already installed redsy.I need a little help to remove the bubble arrow in the post and also want to increase the width of the post box without affecting the mobile view.

Display.template.php

Remove
<span class="arrow-left"></span>
Title: Re: Redsy
Post by: Pravi on August 01, 2016, 06:51:21 AM
Thanks for the replay bro. It worked.
Thanks
Title: Re: Redsy
Post by: Pravi on August 01, 2016, 07:07:34 AM
hello guys,

        I need a little help to remove the small gap between the tittle frame and content box in the Sidebar. I have asked for help in Tinyportal forum, they said that it has nothing to do with sidebar, the problem is with the theme. Please take a at attached screenshot...
Need some help guys.

Thank you
Title: Re: Redsy
Post by: The Domain Shop on August 07, 2016, 01:31:42 PM
Quote from: Pravi on August 01, 2016, 07:07:34 AM
hello guys,

        I need a little help to remove the small gap between the tittle frame and content box in the Sidebar. I have asked for help in Tinyportal forum, they said that it has nothing to do with sidebar, the problem is with the theme. Please take a at attached screenshot...
Need some help guys.

Thank you

Do you have the theme installed on a live site for me to look at so i can understand better what your asking? Feel free to message me it if you don't want it on here.
Title: Re: Redsy
Post by: Pravi on August 08, 2016, 07:00:04 AM
Quote from: Budget Servers on August 07, 2016, 01:31:42 PM
Quote from: Pravi on August 01, 2016, 07:07:34 AM
hello guys,

        I need a little help to remove the small gap between the tittle frame and content box in the Sidebar. I have asked for help in Tinyportal forum, they said that it has nothing to do with sidebar, the problem is with the theme. Please take a at attached screenshot...
Need some help guys.

Thank you

Do you have the theme installed on a live site for me to look at so i can understand better what your asking? Feel free to message me it if you don't want it on here.

Thanks for the replay budget server.
here is my demosite:
https://pix2box.com
Title: Re: Redsy
Post by: The Domain Shop on August 08, 2016, 12:46:49 PM
Hi Pravi

In your theme index.css

Find
.windowbg, #preview_body, .windowbg2, .windowbg3 {
  background-color:#FFFFFF;
  border-radius:4px;
  color:#000000;
  margin:0.2em 0;
}


Replace with
.windowbg, #preview_body, .windowbg2, .windowbg3 {
  background-color:#FFFFFF;
  border-radius:4px;
  color:#000000;
  margin:0;
}


Please keep in mind that this will make changes in a few different places so remember the changes you make so you can revert back if you need to.

Also "margin: 0;" you might have to have it something like "margin: 0 0 3px;" if you find it scrunshers  things up to close together.
Title: Re: Redsy
Post by: Pravi on August 09, 2016, 02:55:22 PM
Quote from: ~Trax~ on August 08, 2016, 12:46:49 PM
Hi Pravi

In your theme index.css

Find
.windowbg, #preview_body, .windowbg2, .windowbg3 {
  background-color:#FFFFFF;
  border-radius:4px;
  color:#000000;
  margin:0.2em 0;
}


Replace with
.windowbg, #preview_body, .windowbg2, .windowbg3 {
  background-color:#FFFFFF;
  border-radius:4px;
  color:#000000;
  margin:0;
}


Please keep in mind that this will make changes in a few different places so remember the changes you make so you can revert back if you need to.

Also "margin: 0;" you might have to have it something like "margin: 0 0 3px;" if you find it scrunshers  things up to close together.

Hello trax,

Thanks for replay,
iI trie d exactly as you have said , but nothing happened. The gap still remains....
Title: Re: Redsy
Post by: Pravi on August 10, 2016, 07:04:20 AM
Quote from: ~Trax~ on August 08, 2016, 12:46:49 PM
Hi Pravi

In your theme index.css

Find
.windowbg, #preview_body, .windowbg2, .windowbg3 {
  background-color:#FFFFFF;
  border-radius:4px;
  color:#000000;
  margin:0.2em 0;
}


Replace with
.windowbg, #preview_body, .windowbg2, .windowbg3 {
  background-color:#FFFFFF;
  border-radius:4px;
  color:#000000;
  margin:0;
}


Please keep in mind that this will make changes in a few different places so remember the changes you make so you can revert back if you need to.

Also "margin: 0;" you might have to have it something like "margin: 0 0 3px;" if you find it scrunshers  things up to close together.

I want to inform you that your code works fine. At first there was no change when i edited the index.css file.  the problem solved when i cleared the cache..
Thanks Trax, you are awsome man.
Thank you
Title: Re: Redsy
Post by: The Domain Shop on August 10, 2016, 12:10:47 PM
@Pravi

You're more than welcome :)
Title: Re: Redsy
Post by: willymmx on August 11, 2016, 01:27:49 PM
Hi all! I have a question... Redsy mobile version... where is the search button? I can´t find it. It works perfectly on desktop version.

If you need the url to take a look: www.hondacgclub.com.ar

Thanks for any idea!
Title: Re: Redsy
Post by: testaholic on August 15, 2016, 09:23:13 AM
Hello,

I have installed Redsy theme on my forum (http://www.testaholic.ro/forum/) and I love the way it looks!
I am experiencing a problem with Mobile View however:

When in Mobile View and Replying to a message , some drop-boxes are overlapping "Subject" and "Message icon" strings rendering them partially invisible (see attachment).

Does anyone else have this issue or know how to fix it?

Thanks a lot!
Title: Re: Redsy
Post by: FranB on August 28, 2016, 12:18:20 AM
How do I change the text of the logo for a picture?

Sorry for my English is not my native language.
Title: Re: Redsy
Post by: The Domain Shop on August 30, 2016, 04:18:45 PM
Quote from: FranB on August 28, 2016, 12:18:20 AM
How do I change the text of the logo for a picture?

Sorry for my English is not my native language.

Under "Current Theme" Can you not just paste the url to to your logo?
Title: Re: Redsy
Post by: 2_Liter_Turbo on March 22, 2017, 01:41:03 AM
Awesome theme! I'm new to all of this, so I apologize if I missed the "how to" in this thread (I read the whole thing just in case). I wanted to put my logo in the header bar, but it seems that even if I modify the header bar height to fit the logo on the PC, the logo overlaps the menu on mobile. Is there a way to fix this?
Title: Re: Redsy
Post by: YamaYake on May 16, 2017, 11:24:27 AM
Yesterday I moved my form to a new web host.
The problem that I have is that de navigation shows only 1 items while there are more items. The weblinks just work fine.
Title: Re: Redsy
Post by: AkiNaToR on June 09, 2017, 04:26:01 PM
Hello guys...

Can you please help me with a few things?

I want change online/offline icon. I don't like this green little man, i want standard SMF online/offline icon. Can you tell me how to change it?
(http://i68.tinypic.com/ok27wp.jpg) (http://i68.tinypic.com/x0pwt2.jpg)

I change navbar color but can't find code for this things... I want change a orange color.
(http://i66.tinypic.com/301huh5.jpg)

(http://i63.tinypic.com/125s2n5.jpg)

Thanks
Title: Re: Redsy
Post by: The Domain Shop on June 22, 2017, 02:18:09 PM
QuoteI want change online/offline icon. I don't like this green little man, i want standard SMF online/offline icon. Can you tell me how to change it?

You can just reupload the default images for this to your themes > /images/ It should be called "useroff.gif" and "useron.gif"

QuoteI change navbar color but can't find code for this things... I want change a orange color.

For the infocenter bar locate your index.css

Find
div#IC div.cat_bar {
  background:#E25D5D;
  margin-bottom:0;
}


And

div#IC div.cat_bar h3.catbg {
  background:#E25D5D;
}


Change the "#E25D5D;" to suit your needs.

Please note that changing the bar colours might change them in other locations as well so try making alterations locally first.




Title: My Forum Isn't Displaying Topics In Board Am Using Redsy On SMF 2.0.14
Post by: Ayojokes on August 03, 2017, 10:14:06 PM
My forum isn't displaying the topics in board. It keeps showing "No Messages" even after creating different topics with different users. The topics are displayed on recent post in forum index but won't show in board.

Attached are my forum modifications and screenshot of the board.
Title: Re: Redsy
Post by: tanawat on August 09, 2017, 03:07:20 PM
Hello guys...


I install Thumbnail on Topic Listing.

In default theme picture can Expand but in redsy theme picture so small and fix.

Can you please help me?

Title: Re: Redsy
Post by: toughwizard on October 07, 2017, 03:52:01 AM
A very nice theme. But how do I make the Forum Title move to the Center not Left as it is on the theme? Thanks for the quick response in advance.
Title: Re: Redsy
Post by: horlaoluwa on October 29, 2017, 05:21:26 PM
pleas how do i go about the simple portal side bar block, its not responsive on mobile with the redsy  theme
Title: Re: Redsy Hello! Congratulations! Amazing Work!
Post by: NicoleSi on November 03, 2017, 03:56:16 AM
Hello!  Congratulations! Amazing Work!

Just one question please.. Why the ads on every page as a tower on the right or left side, are not been displayed with this theme? When i use the default theme , they are shown ok.

http://live-deluxe.com/

Please have a lot the prntscn

Thanks a lot for any help!!
Title: Re: Redsy
Post by: toughwizard on November 18, 2017, 08:37:55 AM
Quote from: toughwizard on October 07, 2017, 03:52:01 AM
A very nice theme. But how do I make the Forum Title move to the Center not Left as it is on the theme? Thanks for the quick response in advance.

Hello please, i still need to move the Logo Title to the centre, how can I do that?  Here is the link to the website: https://goo.gl/y31BR5

Thanks in advance
Title: Re: Redsy Hello! Congratulations! Amazing Work!
Post by: -Rock Lee- on November 22, 2017, 07:32:29 AM
Quote from: TanjaS on November 03, 2017, 03:56:16 AM
Hello!  Congratulations! Amazing Work!

Just one question please.. Why the ads on every page as a tower on the right or left side, are not been displayed with this theme? When i use the default theme , they are shown ok.

http://live-deluxe.com/

Please have a lot the prntscn

Thanks a lot for any help!!

Was the modification applied correctly to the theme? that may be why it does not show even though redsy does not meet many standards in itself ...


Regards!


Quote from: toughwizard on November 18, 2017, 08:37:55 AM
Hello please, i still need to move the Logo Title to the centre, how can I do that?  Here is the link to the website: https://goo.gl/y31BR5

Thanks in advance

I'm not sure it can be achieved via the style sheet because it does not meet certain standards you should directly modify the html in class="navbar-header" although I'm not very good at doing it, it's the only way in this theme!


Regards!
Title: Re: Redsy
Post by: pepa on November 24, 2017, 09:24:43 AM
Have changed some colours in this theme but can't find the css to change the category bar, the navbar, the post icons, and a few others e.g. the default black ones above a post that contains new poll ... notify etc.
Title: Re: Redsy
Post by: -Rock Lee- on November 24, 2017, 09:34:37 AM
Quote from: pepa on November 24, 2017, 09:24:43 AM
Have changed some colours in this theme but can't find the css to change the category bar, the navbar, the post icons, and a few others e.g. the default black ones above a post that contains new poll ... notify etc.

What happens does not meet certain standards so it alters many things making it difficult to edit it, I leave it aside because there are changes in the css, bostrap and min.bostrap to see the changes since the affected area takes values of different files. It can be edited at ease but it would take a while in addition to knowing clearly what you need to look for to modify it.


Regards!
Title: Re: Redsy
Post by: pepa on November 24, 2017, 07:00:25 PM
Quote from: Rock Lee on November 24, 2017, 09:34:37 AM
Quote from: pepa on November 24, 2017, 09:24:43 AM
Have changed some colours in this theme but can't find the css to change the category bar, the navbar, the post icons, and a few others e.g. the default black ones above a post that contains new poll ... notify etc.

What happens does not meet certain standards so it alters many things making it difficult to edit it, I leave it aside because there are changes in the css, bostrap and min.bostrap to see the changes since the affected area takes values of different files. It can be edited at ease but it would take a while in addition to knowing clearly what you need to look for to modify it.


Regards!

Yes, thank you ... I completely agree.  Redsy is a great theme but trying to put your own colour scheme into it is a bit of a nightmare.  Might have to look at another responsive theme <sigh>.
Title: Re: Redsy
Post by: -Rock Lee- on November 25, 2017, 09:43:32 AM
Quote from: pepa on November 24, 2017, 07:00:25 PM
Yes, thank you ... I completely agree.  Redsy is a great theme but trying to put your own colour scheme into it is a bit of a nightmare.  Might have to look at another responsive theme <sigh>.

It was one of the first tried to be adaptive, it can arise failures of the pointers is clear. However, if you look at the theme site there are many very good adaptive designs that were emerging from this;) take a look and anything will help you!


Regards!
Title: Re: Redsy
Post by: Smart Forums on November 26, 2017, 09:36:28 AM
Love the style of this theme!
Title: Re: Redsy
Post by: ScarletWavez on January 10, 2018, 02:20:12 PM
Great work on the theme! Probably the most professional free theme and actually works really well as a responsive design. Can also confirm it works fine on 2.0.15.
Title: Re: Redsy
Post by: toughwizard on January 11, 2018, 12:35:13 PM
Hello please how can i add number of Registered users of the forum to the 'Info Center. ' How can i do that?
here is my website link : https://goo.gl/1DsdMn All i just want is to display the number of registered users in the info center section where we have Forum stats and number of users online.

Title: Re: Redsy
Post by: jack001 on January 18, 2018, 06:27:05 AM
Wysibb mod and save as draft mod can be seen on mobile but not on web version website. Any reason?
Title: Re: Redsy
Post by: jack001 on January 18, 2018, 12:11:41 PM
Any idea why is it showing like this in mobile?
Title: Re: Redsy
Post by: Tafit on January 26, 2018, 08:09:11 AM
Quote from: jack001 on January 18, 2018, 12:11:41 PM
Any idea why is it showing like this in mobile?
Got exactly the same problem that I wanted to ask.
Title: Re: Redsy
Post by: Tafit on January 26, 2018, 08:16:00 AM
Actually I have another problem. Not sure if it meant to be like this but avatars in mobile version take nearly half of the screen. I changed settings to 30x30 but it didn't helped much . Is there any way of putting name and avatar on left hand side of the post section like it's done in most forum services?
Title: Re: Redsy
Post by: vladraq on January 29, 2018, 03:30:35 AM
Hello,
Can somebody help me with the size of logo in mobile view?

Before i login, the logo and navbar are rendering fine:
(https://s5.postimg.org/imjrx3l2f/image.png)

After the login, user menu icon is visible and it's messing around the navbar:
(https://s5.postimg.org/dp67beb7b/image.png)

I tried to modify the index.css by adding "max-width: 80%", the logo gets smaller but the navbar remains the same.

Quote.navbar-brand .logo
{
   min-height: 50px;
   margin-top: -15px;
   max-width: 80%;
}
Title: Re: Redsy
Post by: Smart Forums on February 10, 2018, 10:44:53 AM
Quote from: vladraq on January 29, 2018, 03:30:35 AM
Hello,
Can somebody help me with the size of logo in mobile view?

Before i login, the logo and navbar are rendering fine:
(https://s5.postimg.org/imjrx3l2f/image.png)

After the login, user menu icon is visible and it's messing around the navbar:
(https://s5.postimg.org/dp67beb7b/image.png)

I tried to modify the index.css by adding "max-width: 80%", the logo gets smaller but the navbar remains the same.

Quote.navbar-brand .logo
{
   min-height: 50px;
   margin-top: -15px;
   max-width: 80%;
}

Approve my registration and i will take a look for you. 

If it's mobile view you will most likely need to be adjusting @media in your css

Example
@media (max-width: 767px)
.logo {
    width: 80%;
}
 
Title: Re: Redsy
Post by: vladraq on February 13, 2018, 02:08:14 PM
Registration approved.

I already tried to do this on index.css. Logo is getting smaller but the navbar height remain the same.
(https://s5.postimg.org/e5svvai9j/forum1.png)

If i change the phone orientation to landscape everything it's ok.
(https://s5.postimg.org/u41llfk7b/forum2.png)

Quote@media (max-width: 767px) {
   .scroll-to-top {
      display: none;
   }
   .show-menu {
      display: block !important;
      visibility: visible !important;
   }
   .logo {
   width: 80%;
    }
}
Title: Re: Redsy
Post by: Smart Forums on February 14, 2018, 08:17:15 AM
You can do it in your bootstrap.css by setting a max-width to 'navbar-brand' like below.

Find:
.navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px;
}


Replace:
.navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px;
    max-width: 70%;
}
Title: Re: Redsy
Post by: vladraq on March 03, 2018, 09:40:28 AM
Thank you.

It's fixed now.
Title: Re: Redsy
Post by: jakes_t on March 10, 2018, 07:24:36 PM
This is a really nice theme, thanks.
Title: Re: Redsy
Post by: redcandy on June 01, 2018, 09:53:41 AM
Very nice theme overall. Facing a small issue here redcandydeals.com

A plus sign appears at the top left end with a small gap. Any idea to resolve this issue. Can anyone help me with this. Thanks !
Title: Re: Redsy
Post by: GigaSRV on June 02, 2018, 06:32:48 AM
Nice looking theme :)
Title: Re: Redsy
Post by: GigaSRV on June 02, 2018, 06:36:36 AM
Quote from: redcandy on June 01, 2018, 09:53:41 AM
Very nice theme overall. Facing a small issue here redcandydeals.com

A plus sign appears at the top left end with a small gap. Any idea to resolve this issue. Can anyone help me with this. Thanks !

It looks like it's in the template. Have a look at index.template.php
Title: Re: Redsy
Post by: redcandy on June 03, 2018, 09:28:10 AM
Quote from: GigaSRV on June 02, 2018, 06:36:36 AM
Quote from: redcandy on June 01, 2018, 09:53:41 AM
Very nice theme overall. Facing a small issue here redcandydeals.com

A plus sign appears at the top left end with a small gap. Any idea to resolve this issue. Can anyone help me with this. Thanks !

It looks like it's in the template. Have a look at index.template.php

Thanks for the reply GigaSRV. Can you be specific?. What to look for index.template.php?
Title: Re: Redsy
Post by: GigaSRV on June 03, 2018, 01:17:46 PM
Without looking at the template i would assume it was a "+" symbol you were looking for. If you want to post your template i can take a look for you?
Title: Re: Redsy
Post by: redcandy on June 08, 2018, 03:44:11 PM
I am on mobile now, will see what i can do. Thanks !
Title: Re: Redsy
Post by: -Rock Lee- on June 10, 2018, 09:43:27 PM
Quote from: GigaSRV on June 03, 2018, 01:17:46 PM
Without looking at the template i would assume it was a "+" symbol you were looking for. If you want to post your template i can take a look for you?

Look well at the moment add some code you escaped the symbol ...


Regards!
Title: Re: Redsy
Post by: dendemeier on January 05, 2019, 11:18:21 AM
I want to change the standard tab in the infocenter of my forum.

I´ve got 4 tabs:

Recent Post, Future Events, Statistics, User Online.

When visiting the forum the tab "user online" is choosen as a standard tab. But i want the infocenter to show Recent Posts as a standard. Where can i change this?
I took a look in the boardindex.php and boardindex_template.php, the infocenter is definded there. But i don´t find a option on which tab is choosen as a standard.
Title: Re: Redsy
Post by: arslun on February 05, 2019, 09:51:21 PM
Help:
When RTL is enabled, the TOP menu (hamburger menu) is broken. Can someone help?
http://munber.iuyghur.com/index.php

Thanks
Title: Re: Redsy
Post by: ziskar364 on January 19, 2020, 10:05:52 AM
Hello, after updating to smf 2.0.17 and simple portal 2.3.7 the mobile version is not working fine. It looks like you browse from desktop.
Also simple portal landing page broke a bit...
Is there any recent update to fix those issues?
Title: Re: Redsy
Post by: Diego Andrés on January 27, 2020, 01:53:08 PM
Just tested theme in mobile and works just fine.

Theme updated to SMF 2.0.17
Title: Re: Redsy
Post by: CrimeS on February 23, 2020, 11:54:18 AM
Hello, someone at the polish support had some trouble to have the "Actions" button translated (see attached image).

In ThemeStrings.english.php there is a string to be translated, but in Display.template.php this word is hardcoded. Should probably be updated :)
<button type="button" class="btn btn-primary dropdown-toggle btn-sm" data-toggle="dropdown">Actions <span class="caret"></span></button>
Title: Re: Redsy
Post by: Diego Andrés on February 23, 2020, 03:55:34 PM
Will fix it later thanks

Edit: It appears to be fixed already on the current package (smf/github).
Title: Re: Redsy
Post by: Evanthe on June 21, 2020, 11:55:01 AM
Hi  :) I'm new here.

The theme has stopped working correctly in the mobile version, it loads expanded and it looks like the desktop version.
I leave you the link of a screenshot so you can see better what I mean:

(https://i.ibb.co/dJBcvxB/Screenshot-2020-06-21-17-39-59-498-com-android-chrome.jpg)

I love the theme and would not like to have to change it, is there any way to fix it?

Thanks
Title: Re: Redsy
Post by: Diego Andrés on June 23, 2020, 01:13:43 PM
Quote from: Evanthe on June 21, 2020, 11:55:01 AM
Hi  :) I'm new here.

The theme has stopped working correctly in the mobile version, it loads expanded and it looks like the desktop version.
I leave you the link of a screenshot so you can see better what I mean:

(https://i.ibb.co/dJBcvxB/Screenshot-2020-06-21-17-39-59-498-com-android-chrome.jpg)

I love the theme and would not like to have to change it, is there any way to fix it?

Thanks

index.css

Code (Search) Select
@media (max-width:767px) {
#IC .nav-tabs li span
{
display: none;
}
}


Code (Replace) Select

@media (max-width:767px) {
#IC .nav-tabs li span
{
display: none;
}
#sp_left, #sp_right, #sp_center
{
width: 100%;
display: block;
}
}
Title: Re: Redsy
Post by: Evanthe on June 23, 2020, 04:41:14 PM
Quote from: Diego Andrés on June 23, 2020, 01:13:43 PM
Quote from: Evanthe on June 21, 2020, 11:55:01 AM
Hi  :) I'm new here.

The theme has stopped working correctly in the mobile version, it loads expanded and it looks like the desktop version.
I leave you the link of a screenshot so you can see better what I mean:

(https://i.ibb.co/dJBcvxB/Screenshot-2020-06-21-17-39-59-498-com-android-chrome.jpg)

I love the theme and would not like to have to change it, is there any way to fix it?

Thanks

index.css

Code (Search) Select
@media (max-width:767px) {
#IC .nav-tabs li span
{
display: none;
}
}


Code (Replace) Select

@media (max-width:767px) {
#IC .nav-tabs li span
{
display: none;
}
#sp_left, #sp_right, #sp_center
{
width: 100%;
display: block;
}
}


Thanks for responding and for your help. 

I have changed it but it remains exactly the same. 

Any other idea? 
Title: Re: Redsy
Post by: Decent_946 on June 24, 2020, 12:26:32 AM
Quote from: Evanthe on July 04, 1970, 04:50:48 AM

Thanks for responding and for your help. 

I have changed it but it remains exactly the same. 

Any other idea?
[/quote]
Sometimes you need to clear the cache+cookies to make the css effective. Dud you try this?
Title: Re: Redsy
Post by: Evanthe on June 24, 2020, 10:34:19 AM
Quote from: Decent_946 on June 24, 2020, 12:26:32 AM
Quote from: Evanthe on July 04, 1970, 04:50:48 AM

Thanks for responding and for your help. 

I have changed it but it remains exactly the same. 

Any other idea?
QuoteSometimes you need to clear the cache+cookies to make the css effective. Dud you try this?

Done, not fixed :(
Title: Re: Redsy
Post by: rufovi on August 05, 2020, 07:36:55 PM
Hi Daniiel,

First of all, this is a very good theme!! Thank you so much!!

I'm newbie to this Redsy theme.

I've found that, after installing it, the "Visual verification image to display" has disappeared in Spanish utf8 language (see attachment "ES ko.PNG").
This setting is configured in: Configuration > Security and Moderation > Anti-Spam > Configure Verification Methods > Visual verification image to display

As you can see in "smf Languages.PNG" attached file I have 3 languages installed, with Spanish set to the default one.

I have switched back to the SMF default theme, and then the "Visual verification image to display" has appeared again, so I have checked Redsy files.

Using the Files Manager in CPanel I have had a look at this folder:
(smf-folder)/Themes/Redsy/languages/
(see "Redsy-Languages.PNG" attached file)

I have seen that the 3 "utf8.php" files had a wrong first character (see "Editing utf8-php.PNG" attached file). You have to Edit the files to see it. You will not see it if you View the files.

Deleting this first character and saving the file (in my case ThemeStrings.spanish_es-utf8.php) has solved the problem. (see "ES ok.PNG" attached file).

I have also attached the 3 utf8 php files in my folder in case you want to have a look at them (they are in "ThemeStrings.-utf8.php.zip").
ThemeStrings.english-utf8.php and ThemeStrings.spanish_latin-utf8.php should still have the problem.
ThemeStrings.spanish_es-utf8.php has been corrected by me.

Do you know if it is possible to solve this issue in future releases?
Many thanks in advance!!
Muchas gracias Daniiel!!


FYI:
I found this post and checked the solution proposed there:
https://www.simplemachines.org/community/index.php?topic=359056.msg2447442#msg2447442
Thank you for contributing to solve this!
Title: Re: Redsy
Post by: willymmx on January 28, 2021, 11:42:53 AM
Hi all! currently the error log constantly saves errors like this:
- Use of undefined constant php - assumed 'php' (this will throw an Error in a future version of PHP)
    public_html/Themes/Redsy/languages/ThemeStrings.spanish_latin-utf8.php
    Línea: 1

Here is de file content:
<?php// Version: 2.0; ThemeStrings$txt['icons_check'] = 'Activar iconos sociales';$txt['rs_facebook'] = 'Facebook';$txt['facebook_check'] = 'Activar icono de Facebook';$txt['facebook_text'] = 'Direccion de la pagina de Facebook';$txt['rs_twitter'] = 'Twitter';$txt['twitter_check'] = 'Activar icono de Twitter';$txt['twitter_text'] = 'Direccion de la pagina de Twitter';$txt['rs_youtube'] = 'Youtube';$txt['youtube_check'] = 'Activar icono de Youtube';$txt['youtube_text'] = 'Direccion de la pagina de  Youtube';$txt['rs_rss'] = 'RSS';$txt['rss_check'] = 'Activar icono de RSS';$txt['rss_text'] = 'Direccion de la pagina de RSS';$txt['redsy_copyright'] = 'Agrega tu copyright personalizado';$txt['edit_profile'] = 'Editar perfil';$txt['profile_account'] = 'Configuracion de la cuenta';$txt['new_post'] = 'Nuevos temas';$txt['new_replies'] = 'Nuevas respuestas';$txt['redsy_navbar'] = 'Activar barra de navegacion fija';$txt['redsy_navbar_height'] = 'Altura de la barra de navegacion';$txt['redsy_navbar_height_desc'] = 'Minimo de altura: 50px';$txt['st_actions'] = 'Acciones';?>

anyone have any idea what the problem might be?
Thanks!

UPDATE! Problem solved, just replace the code with the one in file ThemeStrings.spanish_es.php
<?php
// Version: 2.0; ThemeStrings
$txt['icons_check'] = 'Activar iconos sociales';
$txt['rs_facebook'] = 'Facebook';
$txt['facebook_check'] = 'Activar icono de Facebook';
$txt['facebook_text'] = 'Direccion de la pagina de Facebook';
$txt['rs_twitter'] = 'Twitter';
$txt['twitter_check'] = 'Activar icono de Twitter';
$txt['twitter_text'] = 'Direccion de la pagina de Twitter';
$txt['rs_youtube'] = 'Youtube';
$txt['youtube_check'] = 'Activar icono de Youtube';
$txt['youtube_text'] = 'Direccion de la pagina de  Youtube';
$txt['rs_rss'] = 'RSS';
$txt['rss_check'] = 'Activar icono de RSS';
$txt['rss_text'] = 'Direccion de la pagina de RSS';
$txt['redsy_copyright'] = 'Agrega tu copyright personalizado';
$txt['edit_profile'] = 'Editar perfil';
$txt['profile_account'] = 'Configuracion de la cuenta';
$txt['new_post'] = 'Nuevos temas';
$txt['new_replies'] = 'Nuevas respuestas';
$txt['redsy_navbar'] = 'Activar barra de navegacion fija';
$txt['redsy_navbar_height'] = 'Altura de la barra de navegacion';
$txt['redsy_navbar_height_desc'] = 'Minimo de altura: 50px';
$txt['st_actions'] = 'Acciones';
?>
Title: Re: Redsy
Post by: glaukos on March 02, 2021, 08:58:57 AM
Hello,

I fence the following problem, when insert new post delay to appeared. Also when change something in admin panel delay to take the changes

Please for your advice

Thanks
Title: Re: Redsy
Post by: shadav on March 02, 2021, 10:41:58 AM
Quote from: glaukos on March 02, 2021, 08:58:57 AM
Hello,

I fence the following problem, when insert new post delay to appeared. Also when change something in admin panel delay to take the changes

Please for your advice

Thanks

that really wouldn't have much to do with the theme....that would be your severs response time....contact your host
Title: Re: Redsy
Post by: Diego Andrés on March 02, 2021, 01:31:10 PM
Quote from: willymmx on January 28, 2021, 11:42:53 AM
Hi all! currently the error log constantly saves errors like this:
- Use of undefined constant php - assumed 'php' (this will throw an Error in a future version of PHP)
    public_html/Themes/Redsy/languages/ThemeStrings.spanish_latin-utf8.php
    Línea: 1

Here is de file content:
<?php// Version: 2.0; ThemeStrings$txt['icons_check'] = 'Activar iconos sociales';$txt['rs_facebook'] = 'Facebook';$txt['facebook_check'] = 'Activar icono de Facebook';$txt['facebook_text'] = 'Direccion de la pagina de Facebook';$txt['rs_twitter'] = 'Twitter';$txt['twitter_check'] = 'Activar icono de Twitter';$txt['twitter_text'] = 'Direccion de la pagina de Twitter';$txt['rs_youtube'] = 'Youtube';$txt['youtube_check'] = 'Activar icono de Youtube';$txt['youtube_text'] = 'Direccion de la pagina de  Youtube';$txt['rs_rss'] = 'RSS';$txt['rss_check'] = 'Activar icono de RSS';$txt['rss_text'] = 'Direccion de la pagina de RSS';$txt['redsy_copyright'] = 'Agrega tu copyright personalizado';$txt['edit_profile'] = 'Editar perfil';$txt['profile_account'] = 'Configuracion de la cuenta';$txt['new_post'] = 'Nuevos temas';$txt['new_replies'] = 'Nuevas respuestas';$txt['redsy_navbar'] = 'Activar barra de navegacion fija';$txt['redsy_navbar_height'] = 'Altura de la barra de navegacion';$txt['redsy_navbar_height_desc'] = 'Minimo de altura: 50px';$txt['st_actions'] = 'Acciones';?>

anyone have any idea what the problem might be?
Thanks!

Fixed and updated, no additional changes.

Thanks
Title: Re: Redsy
Post by: willymmx on March 02, 2021, 06:41:34 PM
Quote from: Diego Andrés on March 02, 2021, 01:31:10 PM
Quote from: willymmx on January 28, 2021, 11:42:53 AM
Hi all! currently the error log constantly saves errors like this:
- Use of undefined constant php - assumed 'php' (this will throw an Error in a future version of PHP)
    public_html/Themes/Redsy/languages/ThemeStrings.spanish_latin-utf8.php
    Línea: 1

Here is de file content:
<?php// Version: 2.0; ThemeStrings$txt['icons_check'] = 'Activar iconos sociales';$txt['rs_facebook'] = 'Facebook';$txt['facebook_check'] = 'Activar icono de Facebook';$txt['facebook_text'] = 'Direccion de la pagina de Facebook';$txt['rs_twitter'] = 'Twitter';$txt['twitter_check'] = 'Activar icono de Twitter';$txt['twitter_text'] = 'Direccion de la pagina de Twitter';$txt['rs_youtube'] = 'Youtube';$txt['youtube_check'] = 'Activar icono de Youtube';$txt['youtube_text'] = 'Direccion de la pagina de  Youtube';$txt['rs_rss'] = 'RSS';$txt['rss_check'] = 'Activar icono de RSS';$txt['rss_text'] = 'Direccion de la pagina de RSS';$txt['redsy_copyright'] = 'Agrega tu copyright personalizado';$txt['edit_profile'] = 'Editar perfil';$txt['profile_account'] = 'Configuracion de la cuenta';$txt['new_post'] = 'Nuevos temas';$txt['new_replies'] = 'Nuevas respuestas';$txt['redsy_navbar'] = 'Activar barra de navegacion fija';$txt['redsy_navbar_height'] = 'Altura de la barra de navegacion';$txt['redsy_navbar_height_desc'] = 'Minimo de altura: 50px';$txt['st_actions'] = 'Acciones';?>

anyone have any idea what the problem might be?
Thanks!

Thanks Diego!

Fixed and updated, no additional changes.

Thanks
Title: Re: Redsy
Post by: Johnny Thunder on March 13, 2021, 08:34:15 AM
Hi everyone. I'm a new member and a new user of Simple Machines.

I have installed this theme and would like to change a colour if possible. The red colour that can be seen in the header, appears at various places throughout the theme. Is there a straightforward option to change this colour, or would I have to make changes in multiple files wherever this colour is used?

Thank you very much for any advice you may be able to give.

Title: Re: Redsy
Post by: shadav on March 13, 2021, 11:44:59 AM
Quote from: Johnny Thunder on March 13, 2021, 08:34:15 AM
Hi everyone. I'm a new member and a new user of Simple Machines.

I have installed this theme and would like to change a colour if possible. The red colour that can be seen in the header, appears at various places throughout the theme. Is there a straightforward option to change this colour, or would I have to make changes in multiple files wherever this colour is used?

Thank you very much for any advice you may be able to give.

depending on what browser you use, you should be able to right click the area that you wish to change and then click on inspect
this will show you what file to look for and what css part to change

if you need further help, a link to your site would be helpful as I don't use this theme
Title: Re: Redsy
Post by: glaukos on March 16, 2021, 02:28:02 PM
Quote from: shadav on March 02, 2021, 10:41:58 AM
Quote from: glaukos on March 02, 2021, 08:58:57 AM
Hello,

I fence the following problem, when insert new post delay to appeared. Also when change something in admin panel delay to take the changes

Please for your advice

Thanks

that really wouldn't have much to do with the theme....that would be your severs response time....contact your host

Hi again,

i have tested with default theme smf version 2.0.18 and others themes and work fine. But with the redsy appeared after few minute (1~2 ).

Please for your advices
Title: Re: Redsy
Post by: glaukos on March 22, 2021, 04:35:08 AM
Hi again,

Finaly I found the problem, it was congiguration in the .htaccess file.

Thanks

Quote from: glaukos on March 16, 2021, 02:28:02 PM
Quote from: shadav on March 02, 2021, 10:41:58 AM
Quote from: glaukos on March 02, 2021, 08:58:57 AM
Hello,

I fence the following problem, when insert new post delay to appeared. Also when change something in admin panel delay to take the changes

Please for your advice

Thanks

that really wouldn't have much to do with the theme....that would be your severs response time....contact your host

Hi again,

i have tested with default theme smf version 2.0.18 and others themes and work fine. But with the redsy appeared after few minute (1~2 ).

Please for your advices
Title: Re: Redsy
Post by: Johnny Thunder on March 24, 2021, 04:03:11 AM
Quote from: shadav on March 13, 2021, 11:44:59 AM
Quote from: Johnny Thunder on March 13, 2021, 08:34:15 AM
Hi everyone. I'm a new member and a new user of Simple Machines.

I have installed this theme and would like to change a colour if possible. The red colour that can be seen in the header, appears at various places throughout the theme. Is there a straightforward option to change this colour, or would I have to make changes in multiple files wherever this colour is used?

Thank you very much for any advice you may be able to give.

depending on what browser you use, you should be able to right click the area that you wish to change and then click on inspect
this will show you what file to look for and what css part to change

if you need further help, a link to your site would be helpful as I don't use this theme


Thank you very much Shadav. I found it a little daunting at first but I have maneged to make all the changes required so far.
Thank you for the support and for giving me the confidence to try it.
Title: Re: Redsy
Post by: Johnny Thunder on March 25, 2021, 06:03:54 AM
Morning ladies and gents.

I hope someone can help me with an issue I am having. I have placed a background image on our forum using the following code:


/* Set a fontsize that will look the same in all browsers. */
body
{
   background: #000 url(https://redroar.online/Themes/Redsy_SMF2/images/backgroundimage.jpg) no-repeat fixed;
   background-size: 100%;
   
   margin: 0;
   padding: 0;
}




This appears to be working fine on desktops as the following image shows:



(https://i.ibb.co/ByxdbjS/desktop.jpg)





However, it is not working properly when members are viewing on their phone. I am assuming due to the portrait orientation of viewing.



(https://i.ibb.co/c3K28fT/mobile.jpg)




The background image is 710px wide by 444px high.


Is there any way I can get this to work on mobiles by adding further code and/or a second image?



Thank you very much.


Title: Re: Redsy
Post by: Diego Andrés on March 25, 2021, 01:13:30 PM
It's because you put no-repeat
You could do simple stuff like repeat-y

Or keep no-repeat but use background-size: cover; or similar.

--------

Actually just realized you're using static position, this does not work in mobile devices.
Title: Re: Redsy
Post by: Johnny Thunder on March 26, 2021, 07:02:18 AM
Thank you for your reply Diego.

Is there  a way to change the code to enable it to work across all devices?
The members do not want a tiled background. They would like this single image to fill the background.


Thank you.
Title: Re: Redsy
Post by: jeno776 on March 14, 2022, 07:50:44 PM
Is there a chance that this theme will get an upgrade to SMF 2.1.1?