No, sorry. Changing this to dark style is not easy.I don't suppose it's possible to pay extra to have a dark theme made?![]()
I have no plans to port my phpBB styles to XenForo.Nice style Arty, is there a Helion version in the future?
No, sorry. Changing this to dark style is not easy.I don't suppose it's possible to pay extra to have a dark theme made?![]()
I have no plans to port my phpBB styles to XenForo.Nice style Arty, is there a Helion version in the future?
I'm trying to get the blue nav-bar as well - the main bar is blue, but the tabs are still white, and the "What's New?" is no longer red.Use this instead (ie height should be 0px instead of 1px in the original code):
#navigation .navTabs .navTab.selected .navLink:after
{
border-top: 1px solid @primaryMedium;
height: 0px;
right: 0;
}
So close! The red highlight on hover is back (excellent!), but there is still a 1px horizontal white line under the selected tab ("Forums" in this example):Try this:That should override all links below tabs.Code:.navTabs .navTab.selected .tabLinks a { color: @activeColor !important; background-color: transparent none !important; border-color: transparent !important; }

/* CHANGE RESPONSIVE NAV LINKS TO BLUE & FONT TO WHITE */
#navigation .navTabs .navTab.selected .navLink:after
{
border-top: 0px solid @primaryMedium;
height: 0px;
right: 0;
}
.navTabs .navTab.selected .tabLinks a
{
color: @activeColor !important;
background-color: transparent none !important;
border-color: transparent !important;
}
What a pityNo, sorry. Changing this to dark style is not easy.
I have no plans to port my phpBB styles to XenForo.
Whilst Arty's more complicated method will work, the easy method in relation to mobile browsers is to simply add: max-width: 100% to the img directly. To also cater IE, add width: 100% as it doesn't recognise max-width in some versions.Someone might know a css trick that could shrink it as it goes. I know images posted inside the forum resize...
AnthonyWhilst Arty's more complicated method will work, the easy method in relation to mobile browsers is to simply add: max-width: 100% to the img directly. To also cater IE, add width: 100% as it doesn't recognise max-width in some versions.
It is even better if you add it to the entire style. That way, it will automatically scale the image on mobile devices.
You could also use the filament method: https://github.com/filamentgroup/Responsive-Images
I am currently considering turning Flexile into a responsive theme... not sure which way I want to go with it yet. The more I play with this theme, the more issues there are. It isn't the responsive aspect, but the way in which the style has been styled away from default XF properties.Please send me a PM when you unveil this style on your site. I'm curious to see how this compare to the Flexile that you are using.
Actually not quite... because that means the item is still being loaded via the code, it just isn't shown. When you do this with images... that is counter productive to the point of mobile styling. Being minimalistic, fast, loading. You don't want things loading that aren't being shown due to display: none. You don't want them loaded, period.Best thing ever about this theme.
CSS
display: none;
for anything you don't want viewed in mobile.
Do let me know the progress.
Hi Arty,If you have installed xenPorta style, you should disable parent style and set xenPorta style as default. Otherwise you will not see changes for portal.
Ideally styles structure should be like this:
Master Style (shown only if debug is enabled)
- Soft Responsive <-- style, not selectable by users
- - Soft Responsive - xenPorta <-- portal style, not selectable by users
- - - My Forum Style <-- child style where you should do your changes. you should set it as default and rename to whatever you want
View attachment 35246
Those styles don't override each other templates, so you can install them in any order. For example:
Master Style
- Soft Responsive
- - branding free
- - - xenporta
- - - - custom changes
We use essential cookies to make this site work, and optional cookies to enhance your experience.