Flexile

Flexile 1.1.5.1

No permission to download
Status
Not open for further replies.
Erik another question, dear. I looked in the navigation.css template, and in the header & navigation style properties, but nothing I tried would change the color of these links.

View attachment 16052

Currently they change to black upon hover, but I want to change that hover color.
Where would I find these settings?

All fixed, thanks Steve. :)
 
I am looking to make my search bar smaller in width. How do I go about this?

Thanks,
Itworx4me
In search_bar.css, find this block of CSS:
Code:
#QuickSearch #QuickSearchQuery.textCtrl {
font-size: 12px;
background: url('@imagePath/xenforo/gradients/search-bg.png') top repeat-x @textCtrlBackground;
border-radius: 5px;
border: 1px solid @primaryMedium;
padding: 3px 6px;
width: 232px; /* required because of padding change */
}
And change the width: attribute. :) You'll also have to change the width attributes of these blocks of CSS under xenforo_popup.css:
Code:
.formPopup
{
    width: 246px;
}

#QuickSearch.active .formPopup {
    width: 254px;
}
and
Code:
.formPopup .controlsWrapper .textCtrl
{
      width: 222px;
}
and
Code:
.formPopup .textCtrl,
.formPopup .button
{
   width: 228px;
}
It's actually very complicated.
 
Thanks Erik. I wonder why something so small was made so complicated. :)
It's because there are a variety of things that are affected by the width of the search bar, like the width of the search pop-up and the form fields within that pop-up.
 
Erik, another issue.
I'm trying to change the colors on the ip pop-up when I check someone's ip address. See screen shot -
guestinfo.webp

I've tried editing both the ip_content template and the ip_content.css template, both to no avail. Is there somewhere else I need to look?
 
Hey Erik I'm trying to plave a add at the following hook location: <xen:hook name="page_container_content_top" />

In the forum list it shows up fine, but when view a forum it's a bit messed up.

Fine:
good.webp

Messed up:
messedup.webp
 
Having a slight alignment issue when using Jaxels XenMedio addon, the youtube video is not aligned properly, is this a theme issue or an addon issue?

flexile.webp
 
Looks like the video frame is too wide for the space available.

You could try removing left and right padding/margin and/or reduce the size of the video frame.
 
I don't know, I don't use this style or that add-on.

I thought there was an option in the ACP to make this style compatible with Jaxel's add-ons?
Or is that just for the portal?
 
The option claims to support "Jaxels addons". I'll see if the theme author replies.
Go to your Control Panel, then go to Styles, click Style Properties on Flexile, click on Flexile Style Properties, then make sure the checkbox for Enable support for 8WayRun addons. Click save. :)

So, Control Panel -> Syles -> Style Properties -> Flexile Style Properties

Let me know if that helps. :)
 
Erik, another issue.
I'm trying to change the colors on the ip pop-up when I check someone's ip address. See screen shot -
View attachment 16090

I've tried editing both the ip_content template and the ip_content.css template, both to no avail. Is there somewhere else I need to look?
What colors are you looking to change specifically?
Hey Erik I'm trying to plave a add at the following hook location: <xen:hook name="page_container_content_top" />

In the forum list it shows up fine, but when view a forum it's a bit messed up.

Fine:
View attachment 16098

Messed up:
View attachment 16099
You'll probably need to move a hook around in the templates. Is that second screenshot when viewing a forum (with a list of all the threads) or when viewing a thread?
Having a slight alignment issue when using Jaxels XenMedio addon, the youtube video is not aligned properly, is this a theme issue or an addon issue?
The theme does have a control panel option to "enable 8WayRun addon support" but that just fixes some minor layout issues with the addons. I haven't gone through and tested all of the functionality of every one of his addons...

If you can give me a link to that page I can give you the exact CSS you need to add to EXTRA.css. :)
 
The area where the IP address is.
Assuming you want to change it just for the IP popup, add this to EXTRA.css:
Code:
.ipInfo .secondaryContent {
background: #HEXCODE !important; /* background color */
color: #HEXCODE !important; /* text color */
}
 
Assuming you want to change it just for the IP popup, add this to EXTRA.css:
Code:
.ipInfo .secondaryContent {
background: #HEXCODE !important; /* background color */
color: #HEXCODE !important; /* text color */
}

Yes just for that IP popup. Thanks Erik!
 
You'll probably need to move a hook around in the templates. Is that second screenshot when viewing a forum (with a list of all the threads) or when viewing a thread?

Thank you, it was when viewing a thread on the second screenshot, I moved the hook above the <div class="pageContent"> and it worked.

Thanks!
 
The theme does have a control panel option to "enable 8WayRun addon support" but that just fixes some minor layout issues with the addons. I haven't gone through and tested all of the functionality of every one of his addons...
It's ok I just adjusted the width of the YouTube video and it's all good :)
 
Having an issue and I'm not sure if this is a theme or general issue I'm having and I'm not sure why or what I did to cause it to start occurring... but...

The arrows were mentioned on page 12 by Peggy; on my forum (I'm using this Style with some image replacements) I am getting a graphic error of some sort, check out the attached image.

Forum problem.webp

The only thing I can think of is that I did go and delete the background color lines from the css file in order to add my own custom images to show new post/no posts/link - could this have effected the gradients or background of those little tips?

This could be a known issue for something I screwed up, but other than vaguely searching for "tips of arrows" on the forums I didn't really know what to search for lol, too used to PHPBB at this point, I suppose.
 
Did you intentionally change the color of the breadcrumb bar? By default it's much darker, like this:

default-user-bar.webp

It looks like the bar got changed to a lighter color but the "arrows" didn't. Did you intentionally change the color of the breadcrumb bar? If not, you accidentally changed some CSS or changed the @primaryLightest palette color. If the only thing you intend to customize is the post icons, I would re-install the style and just redo the changes.
 
Status
Not open for further replies.
Back
Top Bottom