Please Log in or Create an account to join the conversation.
Depends entirely on the size of the image. If the images aren't square then it'll be more oval shape. It's using CSS radius rules to give the circle look.The circle, in particular, almost never looks like a circle (more of a horizontal oval).
Your image isn't square and as the screen size gets smaller it makes the image smaller.And when I resize the screen or view on mobile device, the oval gets even more flattened.
It already does, the issue is your images are not setup to be made circular.It seems to me like this should have a responsive class to resize the circle automatically for different devices
It's forced to 200px height (100px on mobile). It can be adjusted by modifying the CSS, but the positioning of elements are absolute based off 200px height so it is not possible for there to be a parameter for this.2) Similarly, no matter what I change in canvas settings, I can't get the background image to be taller. I'm using the default template.
It is a language variable. CBTxt is our language API. We do not use or support Joomla language API as it is no where near as flexible and powerful as CBs. To change it you'll need to modify your CB language files which you can find at the below location.I would rather "Article" be a language variable so that I can change it to whatever I want (this is particularly helpful for those that use CCKs to use articles for uses other than "articles").
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Himgoku wrote: Hi michaedt,
the user avatar gets distorted on a small screen because it has a fixed width.
Changing 'width' into 'max-width' solves it:
Code:.cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cbft_status > .cb_field, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cbft_status ~ .cb_form_line > .cb_field, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cbft_status ~ tr > .cb_field, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cb_form_line ~ .cbft_status > .cb_field, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto tr ~ .cbft_status > .cb_field, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cb_form_line > .cb_field, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto tr > .cb_field, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cbft_status > .fieldCell, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cbft_status ~ .cb_form_line > .fieldCell, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cbft_status ~ tr > .fieldCell, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cb_form_line ~ .cbft_status > .fieldCell, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto tr ~ .cbft_status > .fieldCell, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto .cb_form_line > .fieldCell, .cb_template .cbPosCanvas .cbPosCanvasHeader .cbPosCanvasPhoto tr > .fieldCell { bottom: -25px; height: 200px; left: 15px; max-width: 200px !important; position: absolute; z-index: 5; }
Best regards
Please Log in or Create an account to join the conversation.