Search found 33 matches

by DaveMags
Tue Feb 07, 2023 11:59 am
Forum: Styles, Stylesheets and XML
Topic: Styling a Menu Proxy
Replies: 2
Views: 1496

Re: Styling a Menu Proxy

Hi Jim, I have a few different menu proxies that I style with my own CSS. I create a skin file and in the menu proxy's settings, assign it that skin file. On the build, Flare assigns a class name of _Skins_ plus whatever you named the skin to the <ul> created by the menu proxy. For example, if I hav...
by DaveMags
Sun Jan 10, 2021 1:43 pm
Forum: Tips and Tricks
Topic: Adding image hover border while using Image Mapping
Replies: 1
Views: 3093

Re: Adding image hover border while using Image Mapping

I don't think you can do this on an image map. You can't add CSS to style image map areas. Looking online, there seems to be a possible Javascript solution if you want to go that route. Not sure how important the image map is to your site, but you might be able to recreate whatever it's doing withou...
by DaveMags
Mon Dec 21, 2020 8:55 am
Forum: Web-based Outputs
Topic: Text Highlight behvior
Replies: 4
Views: 2096

Re: Text Highlight behvior

Full circle on this thread - Madcap let me know that this bug is resolved in 2020 r2. I haven't updated our Flare versions yet to test it out, but I assume they are telling the truth. :)
by DaveMags
Mon Dec 21, 2020 8:43 am
Forum: Web-based Outputs
Topic: Customising HTML sidenav expander icon
Replies: 1
Views: 1178

Re: Customising HTML sidenav expander icon

If you haven't solved this yet, you can try adding a left value here:

Code: Select all

.is-accordion-submenu-parent > a span.submenu-toggle-container   
{
   height: 60%;
   left: 0px;
}
You can adjust the value (including using a negative value) to get the positioning correct.
by DaveMags
Fri Dec 18, 2020 3:10 pm
Forum: Styles, Stylesheets and XML
Topic: Custom numbered list
Replies: 7
Views: 2344

Re: Custom numbered list

So, in case someone wants to see it in action, I had to reply because I do almost exactly this in one of my HTML5 projects. The CSStricks link from Psider above is good for the explanation, so I'll just drop this code here for anyone thinking of trying it out. Note that for this, I use <p> tags for ...
by DaveMags
Fri Dec 18, 2020 2:30 pm
Forum: Styles, Stylesheets and XML
Topic: Slideshow arrow placement?
Replies: 1
Views: 882

Re: Slideshow arrow placement?

So I just started testing out some slideshows in one of my projects. When I was building it I was able to put some padding on the slide content to keep it off the edges and away from the left/right arrows. But to help control some of the styling on my slides and the content in it, I placed a <div> a...
by DaveMags
Wed Dec 02, 2020 11:28 am
Forum: Web-based Outputs
Topic: How to change expander icon in top nav menu
Replies: 14
Views: 6243

Re: How to change expander icon in top nav menu

I created a new project with the default Sidenav HTML5 skin to test it out, and I did have change some things. Not sure if my original was messed up, but I had some of these selectors out of order (the ones with the "aria=" code in it) and was able to get ride of one of the styles altogeth...
by DaveMags
Sun Oct 25, 2020 6:10 pm
Forum: Web-based Outputs
Topic: How to change expander icon in top nav menu
Replies: 14
Views: 6243

Re: How to change expander icon in top nav menu

Hi Keri, Try applying right padding to the list items themselves. I think you can do this directly in the main skin file in the Top Navigation Menu Item section. Depending on your table of contents and how many levels you go, you might need to play with settings for 1st level, 2nd level, etc. to get...
by DaveMags
Sun May 03, 2020 8:54 am
Forum: Styles, Stylesheets and XML
Topic: SelectSkin button not displaying
Replies: 1
Views: 947

Re: SelectSkin button not displaying

Hi Mark - Open the Skins editor for both skins, and in the Setup tabs for each, under Responsive Output Settings, check the box for Enable responsive output . I'm not sure if that being off would completely remove the button, but i know skin options won't show in the menu unless that's checked. So m...
by DaveMags
Mon Jan 28, 2019 1:00 pm
Forum: Web-based Outputs
Topic: How to change expander icon in top nav menu
Replies: 14
Views: 6243

Re: How to change expander icon in top nav menu

hmmm - I was looking at the Silverado template here: https://www.madcapsoftware.com/download ... templates/
by DaveMags
Fri Jan 25, 2019 2:37 pm
Forum: Web-based Outputs
Topic: How to change expander icon in top nav menu
Replies: 14
Views: 6243

Re: How to change expander icon in top nav menu

Well, assuming that's what you want to change, I think I managed to do that - kind of a fun challenge anyway :). Flare creates that "icon" in an interesting way, with a border that it hides a part of to make a triangle, which it then flips upside down when you expand the menu. My method wa...
by DaveMags
Fri Jan 25, 2019 1:26 pm
Forum: Web-based Outputs
Topic: How to change expander icon in top nav menu
Replies: 14
Views: 6243

Re: How to change expander icon in top nav menu

I downloaded the Silverado template to test it out, and you are right. Try adding that same code, shown again below, to both your "StylesForHomePage.css" and the "MainStyles.css" file. When I put it in the MainStyles.css file, it only changed the icon on topic pages, but not the ...
by DaveMags
Thu Jan 24, 2019 2:43 pm
Forum: Styles, Stylesheets and XML
Topic: bullet icons
Replies: 6
Views: 2193

Re: bullet icons

Edit - just saw the addition on your last post. Hope you're getting closer :) ...So I just added an image to a ul ul selector through the stylesheet editor, leaving the list-style-type to the default. Doing that did not actually define the list-style-type in the CSS file when I open it in a text edi...
by DaveMags
Thu Jan 24, 2019 2:17 pm
Forum: Styles, Stylesheets and XML
Topic: bullet icons
Replies: 6
Views: 2193

Re: bullet icons

Can you use your browser's F12 style inspector to determine which styles are being applied? Or is this a public site where I could look at a page that has the issue? Hard to know for sure without seeing the code. I know in my main project, which is almost entirely from Word imports, I deal with inli...
by DaveMags
Thu Jan 24, 2019 1:43 pm
Forum: Styles, Stylesheets and XML
Topic: bullet icons
Replies: 6
Views: 2193

Re: bullet icons

So in a basic bullet list, ul ul should select the second level, ul ul ul the third, etc. Check to see if there are any styles defined on the li tag, or maybe another complex select like ul > li or something like that. If so, those would overwrite the ul style, so you would need to clear those style...
by DaveMags
Sat Jan 12, 2019 10:45 pm
Forum: Web-based Outputs
Topic: How to change expander icon in top nav menu
Replies: 14
Views: 6243

Re: How to change expander icon in top nav menu

I don't see where you can set this in the skin file, but you can do it with CSS. Add this to your main CSS file: ul.navigation ul > li.has-children > a::after { content: somethinghere; } Then, you're going to replace somethinghere with whatever you want to appear in that spot. You have a couple of o...
by DaveMags
Wed Jan 09, 2019 7:18 am
Forum: Flare's General Discussion
Topic: How to control vertical spacing in div table
Replies: 8
Views: 3013

Re: How to control vertical spacing in div table

F12 is your best friend :D I recreated your page, and from the code you provided, I think your ul tags do not have any assigned margins, so it's using the web's/browser's default value, which is 1em for top and bottom margin. If you shrink that, I think you'll get the spacing you're looking for. So ...
by DaveMags
Tue Jan 08, 2019 1:46 pm
Forum: Flare's General Discussion
Topic: How to control vertical spacing in div table
Replies: 8
Views: 3013

Re: How to control vertical spacing in div table

I'm guessing that if it's taller than you want, there's probably some padding doing that. Or maybe a margin on the <ul> inside the divs that's being applied, but not applied to your list outside the divs, that need to be set to the same value.

Can you post the relevant CSS code too? :)
by DaveMags
Tue Jan 08, 2019 1:18 pm
Forum: Flare's General Discussion
Topic: How to control vertical spacing in div table
Replies: 8
Views: 3013

Re: How to control vertical spacing in div table

Hi Kathy - Can you share the code you're using to make the div table?
by DaveMags
Fri Jan 04, 2019 2:37 pm
Forum: Flare's General Discussion
Topic: Apply colors to tiles
Replies: 3
Views: 1621

Re: Apply colors to tiles

You can fix the entire column problem ArdisRamey mentioned by adding a unique second class to each "home-tiles" div in the html of the home page topic, then use that class and the nth-child selector in the CSS file to style each box. So, find each div with a class of home-tiles and add a s...
by DaveMags
Thu Dec 20, 2018 10:13 am
Forum: Styles, Stylesheets and XML
Topic: How to make top-nav-sub-menu display horizontally
Replies: 2
Views: 1422

Re: How to make top-nav-sub-menu display horizontally

Hi there - sounds like this might be too late to matter, but I was able to make that first sub menu display the items horizontally, full width, and with the styling you mentioned by applying some CSS to a couple of the nested ul > li structures Flare builds for that menu. Not sure if something like ...
by DaveMags
Thu Dec 20, 2018 9:13 am
Forum: Web-based Outputs
Topic: Search hangs, TOC fails to update after publish
Replies: 4
Views: 1810

Re: Search hangs, TOC fails to update after publish

Hi Michelle - Unfortunately no. It is still an issue and our internal IT hasn't really made it a priority to resolve. My last post about a caching issue in SharePoint is still our best guess. Most of our users access the site through a link on our intranet, so our terrible workaround right now is, w...
by DaveMags
Tue Oct 30, 2018 1:31 pm
Forum: Web-based Outputs
Topic: Menu Proxy Styling
Replies: 5
Views: 2681

Re: Menu Proxy Styling

Do you mean you want, like in your second image, those Header entries to display numbered like an ordered list?
by DaveMags
Mon Sep 17, 2018 2:35 pm
Forum: Styles, Stylesheets and XML
Topic: list indent in tables
Replies: 1
Views: 921

Re: list indent in tables

I know you're looking for a quick solution until you can really dig into the CSS, but as I was thinking about this, all of my thoughts were related to digging into the CSS. :? However, until you can do that, since this only happens in tables, open your stylesheet in the internal text editor and try ...
by DaveMags
Wed Aug 29, 2018 2:26 pm
Forum: Styles, Stylesheets and XML
Topic: How Do I Shut Off Breadcrumbs in my HTML5 Doc?
Replies: 2
Views: 1512

Re: How Do I Shut Off Breadcrumbs in my HTML5 Doc?

Hi Michael - Welcome to Flare :) So your Flare project will have at least one MasterPage. That controls the general appearance and structure of all the topics assigned to that MasterPage. You'll need to edit this page. From the Content Explorer folders, go to Resources > MasterPages and open your Ma...