Is there a way to reposition the title within the image’s border in an alternate location?
I am currently utilizing a Moodle theme and have identified the specific CSS section responsible for creating the border.
.course-content .section.main {
border:1px solid #E3E3E3;
}
I attempted adjusting padding and margins within the CSS rule with no success.
.course-content .section.main {
border:1px solid #E3E3E3;
margin-top:5px;
}
.course-content .section.main {
border:1px solid #E3E3E3;
padding-top:5px;
}
I experimented with border spacing, but it appears to only be effective with tables...
.course-content .section.main{
border:1px solid #E3E3E3;
border-spacing:5px;
}
The title is contained within this structure when examined in the HTML editor.
<div style="text-align: center; font-weight: bold;">
<span style="font-size: x-large;" size="5">
German III- HS/Part A
</span>
</div>
Manual manipulation of the HTML code is not desired due to the large number of courses involved.