Remository remositoryfileinfo ID

remositoryfileinfo ID is assigned to a DIV which displays file information. (This page appears after you click on a file heading in file listing page).

The heading of the file is placed inside an H2 tag. So to style the heading you should use contextual selectors:

To style file heading – H2

div#remositoryfileinfo h2{
/* CSS Styles */
}

 

To style the download link:

div#remositoryfileinfo h2 a{
/* CSS Styles */
}

 

To style the download icon:

div#remositoryfileinfo h2 a img{
/* CSS Styles */
}

 

Remository remositoryfileinfo ID

 

As you can see from the above image, the file details are displayed in a definition list (DL). You can style these items by using css contextual selectors:

div#remositoryfileinfo dl{
/* CSS Styles */
}

div#remositoryfileinfo dl dt{
/* CSS Styles */
}

div#remositoryfileinfo dl dd{
/* CSS Styles */
}

 

Defined in:

v-classes/remositoryFileInfoHTML.php

 

Assigned to:

DIV Tag

 

remositoryfileinfo ID example:

div#remositoryfileinfo{
/* CSS Styles */
}

div#remositoryfileinfo dt{
/* CSS Styles */
}

div#remositoryfileinfo dd{
/* CSS Styles */
}