Jump to content
  • 0

"View Details" link location, gallery report, mobile version


LilyInTech

Question

Hi

I want to change location of "View Details" link in the mobile version. Right now the link located in the right top corner (i guess it's default location), I want to locate the link at the buttom left corver (see the screenshot) in my gallery report. Could anybody help with me with CSS Codes that can be used to control the location of the "View Details" on mobile/tablet? 

Thank you!

Lily

 

IMG_2610.jpg

IMG_2611-1.jpg

IMG_2613.jpg

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Hi! Just to add, you may achieve this using custom CSS coding. Paste the code to the header of your DataPage:

<style>
@media only screen and (min-width: 320px ) and (max-width: 567px ){

.cbColumnarReport div[data-cb-name=RACtnr] > a, section.cbCalendarReport div[data-cb-name=RACtnr] > a, table[class^="cbResultSetTable"] > tbody > tr[data-cb-name="data"] > td.cbResultSetActionCell > a{
display: inline-block !important;
}
img[title="View Details"]{
margin-left: 10px !important;
}

section.cbCalendarReport div[data-cb-name=RACtnr], .cbColumnarReport div[data-cb-name=RACtnr]{
width: 0px !important;
background-image: none !important;
height: 30px !important;
}
}

@media only screen and (min-width: 580px ) and (max-width: 1024px){

.cbColumnarReport div[data-cb-name=RACtnr] > a, section.cbCalendarReport div[data-cb-name=RACtnr] > a, table[class^="cbResultSetTable"] > tbody > tr[data-cb-name="data"] > td.cbResultSetActionCell > a{
display: inline-block !important;
}
img[title="View Details"]{
margin-left: 10px !important;
}

section.cbCalendarReport div[data-cb-name=RACtnr], .cbColumnarReport div[data-cb-name=RACtnr]{
position: inherit !important;
background-image: none !important;
height: 30px !important;
}
}
</style>

image.png.c766f67e20a7e84554e6f9e76ed8edfd.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...