Css property for child breadcrumbs and sitemap text

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
1/22/2011 5:08:57 AM
Gravatar
Total Posts 37

Css property for child breadcrumbs and sitemap text

Can anyone tell me what the property/attribute names and the css file so that I can chane the site map text color and the child breadcrumb text color. I currently have purple in all of these as well as purple text color in the admin pages. Would like to change it to match my skin.

1/29/2011 4:46:19 AM
Gravatar
Total Posts 37

Re: Css property for child breadcrumbs and sitemap text

When I look at the source, this is the code:

 

.ctl01_SiteMenu1_ctl00_0 { text-decoration:none; }
.ctl01_ChildPageMenu_SiteMap2_0 { text-decoration:none; }

 

Unfortunately I cannot find this property/attribute anywhere in any of the css files!

 

Hope someone knows where to find this. I have made changes to so many of the css files that I have messed up other things. Going to have to load mojo over again!

 

 

 

 

 

 

 

 

 

 

 

 

 

1/31/2011 9:53:15 AM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: Css property for child breadcrumbs and sitemap text

Just a few generic CSS development tips for you:

  • Get the FireBug Firefox extension. This will allow you to see the source CSS of any element on a page.
  • If a style is being applied by the browser, you can usually override it with an "!important" directive.
  • If you are modifying a delivered skin and need to "start over," you can pull a new copy of it from /Data/Skins.
  • While developing, be sure to have the following keys set to false in user.config (change these back to true for production):

   <add key="CombineCSS" value="false" />
   <add key="MinifyCSS" value="false" />
   <add key="CacheCssOnServer" value="false"/>
   <add key="CacheCssInBrowser" value="false"/>

2/4/2011 5:34:36 AM
Gravatar
Total Posts 37

Re: Css property for child breadcrumbs and sitemap text

Thank you so much! I have figured out most of them but it took a great deal of time searching. Your suggestion will be much faster than viewing page source in IE and then hunting it down. Again thank you!

You must sign in to post in the forums. This thread is closed to new posts.