News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

NameX

Started by Diego Andrés, August 05, 2022, 11:39:45 PM

Previous topic - Next topic

hottakes

With very long topic titles the resizing is a bit off at some widths. Some elements (Replies/Views, Last post) get shifted:
You cannot view this attachment.

Diego Andrés

I see the issue.
Will try to fix it this week.

Thanks.

SMF Tricks - Free & Premium Responsive Themes for SMF.

Diego Andrés

Quote from: jsx on February 04, 2023, 04:51:22 AMThanks a lot for providing the solution. Can I reposition these buttons to be here?



index.template.php
Code (Search) Select
function template_theme_userarea()
{
global $context, $scripturl, $maintenance, $txt;
Code (Replace) Select
function template_theme_userarea()
{
global $context, $scripturl, $maintenance, $txt, $settings;

Code (Search) Select
// Add the color selection
template_theme_colorpicker();
Code (Replace) Select
// Add the color selection
template_theme_colorpicker();

echo '<li', (!empty($settings['disable_user_variant']) ? ' style="flex-grow: 1"' : ''), '>
', themecustoms_socials(), '</li>';

SMF Tricks - Free & Premium Responsive Themes for SMF.

Diego Andrés

Quote from: hottakes on February 20, 2023, 03:08:34 PMWith very long topic titles the resizing is a bit off at some widths. Some elements (Replies/Views, Last post) get shifted:
You cannot view this attachment.


1.1.3 - 20 February 2023
  • Bug Fix Fixed socials not wrapping on mobile.
  • Bug Fix Fixed topic list issues.

List of changes

SMF Tricks - Free & Premium Responsive Themes for SMF.

jsx

@Diego Andrés

Thanks for giving me this solution. Thank you for your help. :)

In the previous post you gave me that solution and now these social buttons display twice so my question is which code should I remove to get rid of these buttons from header? (green background).



https://www.simplemachines.org/community/index.php?topic=583206.msg4144746#msg4144746

Diego Andrés

I'd assume old one you changed in the previous page, revert those changes.

SMF Tricks - Free & Premium Responsive Themes for SMF.

jsx

I reverted these changes and it's fine now. Thanks!

I noticed that when a report to the moderator is open, the top checkbox in the report is in a different position than the bottom one.


Diego Andrés

I haven't checked this issue.
Where exactly is it happening?

SMF Tricks - Free & Premium Responsive Themes for SMF.

jsx

You must go to the Reported Posts tab in the post that is being reported.

Diego Andrés

Alright I'll have a look, never visited/used that tab before 8)

SMF Tricks - Free & Premium Responsive Themes for SMF.

Diego Andrés

.buttonlist.floatright {
justify-content: flex-end;
}

I'll upload a new package later.

SMF Tricks - Free & Premium Responsive Themes for SMF.

jsx

Thanks for the quick response even though it's a minor bug. :)

Diego Andrés

1.2.0 - 26 February 2023
  • New Feature Added 'community' button and options.
  • Improvement Updated coloris to the latest version.
  • Bug Fix Fixed minor layout issues.

SMF Tricks - Free & Premium Responsive Themes for SMF.

DeadMan...

Quote from: Diego Andrés on February 26, 2023, 07:08:36 PM1.2.0 - 26 February 2023
  • New Feature Added 'community' button and options.
  • Improvement Updated coloris to the latest version.
  • Bug Fix Fixed minor layout issues.


Any way to mark down the edits, for those who have a lot of work done on the theme?
Would be greatly appreciated. This theme is awesome!
I tell it how I see it... Don't like it? Hit Alt+F4!

Diego Andrés

Yes you can find them here

For the coloris files (coloris.css and coloris.js) you can just replace them completely.
And the same for the themecustoms folder.
Essentially, you just need to update the app.css file, /languages folder, and css/custom/icons.css file (language and icons you could replace them completely too if you didn't change them).

SMF Tricks - Free & Premium Responsive Themes for SMF.

DeadMan...

#115
Quote from: Diego Andrés on February 26, 2023, 07:21:35 PMYes you can find them here

For the coloris files (coloris.css and coloris.js) you can just replace them completely.
And the same for the themecustoms folder.
Essentially, you just need to update the app.css file, /languages folder, and css/custom/icons.css file (language and icons you could replace them completely too if you didn't change them).

I have done what needed to be done, and found I got it right after all. :)
I tell it how I see it... Don't like it? Hit Alt+F4!

Diego Andrés

1.2.1 - 27 February 2023
  • Bug Fix Fixed issues with online list when avatars are disabled.
  • Bug Fix Fixed background color of popups.
  • Improvement Added more support for closing popups with keyboard.

List of changes

SMF Tricks - Free & Premium Responsive Themes for SMF.

jsx

I updated the theme to version 1.2.1, and I don't know if it depends on this, but I see that some icons that I added don't display on the bar.

/* Ultimate Menu */
.main_icons.um_button_1::before { content: "\47"; }
.main_icons.um_button_7::before { content: "\f086"; }

/* Recent Topics */
.main_icons.recenttopics::before { content: "\f277"; }

This icon is displayed for the Forum tab: f086 and this icon should be displayed: f07c

https://fontawesome.com/icons

Diego Andrés

#118
Which bar?
Also, verify that the class is the same using the browser inspector tool. In some cases it could be 'fa fa-action', which would be something like .fa-um_button_1::before, not sure if it changed somehow.

Edit: I tested it and that's exactly what you should do. I'm not sure if it was main_icons before, at all. You could keep both just in case.
e.g.

/* Ultimate Menu */
.main_icons.um_button_1::before, .fa-m_button_1::before { content: "\47"; }
.main_icons.um_button_7::before, .fa-um_button_7::before { content: "\f086"; }

SMF Tricks - Free & Premium Responsive Themes for SMF.

Diego Andrés

Likely the last update for the month of February :laugh:

1.2.2 - 28 February 2023
  • Bug Fix Fixed issues when selecting variants in profile.
  • Bug Fix Fixed problems when editing the menu using Ultimate Menu.
  • Improvement Show 'community' as the active item when there's an active children action.

List of changes
You can freely replace the affected files.



The following remains valid, nothing was reverted to the (supposedly) original behavior.
Quote from: Diego Andrés on February 27, 2023, 05:15:10 PMEdit: I tested it and that's exactly what you should do. I'm not sure if it was main_icons before, at all. You could keep both just in case.
e.g.

/* Ultimate Menu */
.main_icons.um_button_1::before, .fa-m_button_1::before { content: "\47"; }
.main_icons.um_button_7::before, .fa-um_button_7::before { content: "\f086"; }

The Ultimate Menu fix refers to something entirely different I discovered, which is not a bug or issue but I just wanted to throw it under the carpet for good measure.

SMF Tricks - Free & Premium Responsive Themes for SMF.

Advertisement: