Αναρτήσεις που έγιναν από τον/την Patrick Malley

Moodle in English -> Testing and QA -> Section Highlighting In Week Format Missing

από Patrick Malley -
I am running Beta 5 - updated this afternoon. It appears that the lightbulb icon for highlighting sections in the 'week course format' is missing. This does not appear to be a CSS problem. Highlighting is working in the 'topic course format.' I get the impression that someone took the highlight option out of the 'week course format'???

If so, why?

If not, is anyone else experiencing this?
Συνημμένο Picture_2.png
Μέσος όρος βαθμολογίας: -
Pamela,

Could you please post some screenpics of what you want and what your current site looks like. I can probably help if I could see what you're hoping to achieve.

CSS requires closing tags on hidden text.  If your CSS files appear as you posted, then the border may still appear.


Try the following:

.sitetopiccontent {
  /*border-width:1px;*/
  /*border-style:solid;*/

}

.sitetopiccontent {
  /*border-color:#C6BDA8;*/
  background-color:#FFFFFF;
}

Or, simply delete the border altogether???

That can be achieved by deleting the following in your theme's styles_color.css and styles_layout.css files:

.sitetopiccontent {
  
  background-color:#FFFFFF;

}
.sitetopiccontent {
  
}
Also, I recommend the web developer toolbar for Firefox.  It allows you to search pages for CSS extensions.
Chris -

An easier way of emptying your cache is to press Ctrl+F5.  This will refresh everything, including your CSS.

You can "indent" your text by adding the following line within the fieldset selector in styles_layout.css:
  padding:5px;
Increase or decrease this padding size to fit your needs.

You can increase the font-size of your legend selector by adding the following in styles_layout.css:
  font-size:1.1em;
Again - Increase or decrease this font-size to fit your needs.

Last, you put that border their when you pasted the following CSS:
fieldset {
margin-bottom: 20px;
border: #DDD solid 1px;
-moz-border-radius-bottomleft:20px;
-moz-border-radius-bottomright:20px;
font-size: 0.95em;
}
Delete the border and you'll be set.