Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsForumForumForums and firefoxForums and firefox
Previous
 
Next
New Post
6/30/2008 8:14 PM
 

The forum module buttons are vertical instead of horizontal in firefox.  I've noticed that even the forums here are like that.  Has anyone been able to fix that?  Where would the settings for that be?

 
New Post
7/4/2008 10:50 PM
 

It is a css issue that we are aware of.


Chris Paterra

Get direct answers to your questions in the Community Exchange.
 
New Post
7/18/2008 6:23 AM
 

In case anyone is interested this is fairly straightforward to fix;

The toolbar is made up of a series of anchors containing image tags, each anchor has its own class;

A.Forum_ib_admin:link, A.Forum_ib_admin:visited, A.Forum_ib_admin:active, A.Forum_ib_admin:hover {
 background-image: url(images/ib_admin.png);
 background-repeat: no-repeat;
 background-position: center;
 padding-left: 2px;
 padding-right: 2px;
 padding-top: 8px;
 padding-bottom: 0px;
 height: 35px;
 width: 35px;
 display:table-cell;
}

set;
display:block;
float:left;
height becomes redundant.

A.Forum_ib_admin:link, A.Forum_ib_admin:visited, A.Forum_ib_admin:active, A.Forum_ib_admin:hover
 {
 background-image: url(images/ib_admin.png);
 background-repeat: no-repeat;
 background-position: center;
 padding-left: 2px;
 padding-right: 2px;
 padding-top: 8px;
 padding-bottom: 0px;
 display:block;
 float:left;
 width: 35px;
}
 
Apply these changes to the rest of the anchor classes and you will have a nicely arranged row.
Note; Because Block mode tags do not obey the center rule applied to the containing Table cell the row will be left justifed.
            To indent the row simply apply a margin-left to 'Forum_ib_moderate' .

This is crossbrowser safe approach, tested in IE6 - 7 and Firefox.

 
New Post
7/18/2008 4:15 PM
 

While you are correct, applying the margin on Forum_ib_moderate presents issues of it own. For example, if someone is not a moderator they never see this. This means everything will align left again. If we float left, then apply to aggregated we have an issue when someone has aggregated off. The other issue here is that it would look very diffferent logged in vs not logged in. I am still trying to figure out what is best here.


Chris Paterra

Get direct answers to your questions in the Community Exchange.
 
New Post
7/28/2008 7:09 AM
 

Yes not ideal, i clearly didn't test well enough!
Here is a solution that works cross browser and has the added benefit of better accessability. It does however require different markup to be inserted from the codebehind.

<style type="text/css">
.wrap
{
    width:100%;
    text-align:center;
}
ul.list

    display:inline;
    padding:0;
    margin:auto 0;
}
.list li
{
    display:inline;
    width:auto;
}</style></p>
<div class="wrap">
<ul class="list">
    <li><a href="#"><img alt="" src="logo.gif" /></a></li>
    <li><a href="#"><img alt="" src="Logo.gif" /></a></li>
    <li><a href="#"><img alt="" src="logo.gif" /></a></li>
</ul>
</div>

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsForumForumForums and firefoxForums and firefox


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out