Issue Details (XML | Word | Printable)

Key: MDL-19082
Type: Improvement Improvement
Status: Closed Closed
Resolution: Fixed
Priority: Minor Minor
Assignee: Martin Dougiamas
Reporter: Mauno Korpelainen
Votes: 0
Watchers: 0
Operations

Add/Edit UI Mockup to this issue
If you were logged in you would be able to see more operations.
Moodle

Tiny margin issue in styles_layout.css

Created: 06/May/09 07:45 PM   Updated: 13/May/09 02:24 PM
Component/s: Themes
Affects Version/s: 1.6.9, 1.7.7, 1.8.8, 1.9.4
Fix Version/s: 1.9.5

File Attachments: None
Image Attachments:

1. screenshot-1.jpg
(75 kB)

2. screenshot-2.jpg
(60 kB)

URL: http://moodle.org/mod/forum/discuss.php?d=122021
Participants: Martin Dougiamas and Mauno Korpelainen
Security Level: None
QA Assignee: Petr Škoda (skodak)
Difficulty: Easy
Resolved date: 08/May/09
Affected Branches: MOODLE_16_STABLE, MOODLE_17_STABLE, MOODLE_18_STABLE, MOODLE_19_STABLE
Fixed Branches: MOODLE_19_STABLE


 Description  « Hide
http://moodle.org/mod/forum/discuss.php?d=122021

Add some margin screen after forum posts to standard theme styles_layout.css and tag

#redirect { text-align: center; margin-top:10%; }



 All   Comments   Change History   Version Control      Sort Order: Ascending order - Click to sort in descending order
Martin Dougiamas added a comment - 08/May/09 04:22 PM
I put this into 1.9 and head .... it sort of makes sense for standard themes but I don't think it's helped moodle.org at all ...

Mauno Korpelainen added a comment - 08/May/09 06:37 PM
Could that top margin be just a little smaller in moodle2 theme css - maybe 5 ???

(Messages dropped down from the top but a little too much)


Mauno Korpelainen added a comment - 08/May/09 07:19 PM
Or a very simple solution:

#redirect {
text-align: center;
margin-top:3em;
margin-bottom:3em;

}

gives some margin ( 3 em ) to the top and to the bottom.


Mauno Korpelainen added a comment - 08/May/09 07:21 PM
Example from custom corners theme

Martin Dougiamas added a comment - 13/May/09 01:23 PM - edited
OK, I think moodle.org looks better now.
#redirect {
  margin-top:4em;
}

#redirect #message {
  padding-top:4em;
}

Mauno Korpelainen added a comment - 13/May/09 02:24 PM
Did you add any margin-bottom or padding-bottom ?