Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
krileon wrote: I recommend overriding the CSS with h1 styling. Example as follows.
Code:.cb_template .cbUserListTitle h3 { font-size: 36px; }
See the below on how to add CSS overrides.
www.joomlapolis.com/blog/kyle/18711-template-css-overrides-made-easy
Please Log in or Create an account to join the conversation.
Yes, that's fine.1) And would it be the same if inplace of using override.css, I will supply my custom CSS code to the Joomla user.css file (it's the override file for Joomla template) - I mean I've already done that and it works. Is it a good idea?
I recommend just editing the userlist titles. Otherwise you can try using CSS if you don't need translations for it.2) And what should I do if I need to automatically append some text to all of my Lists Titles? To do this I've modified a bit the PHP file. But also those changes would be lost on each update of CB... Is there a way?
The profile title as seen in the canvas is a language string. So you can use a language string override to add more text to it my overriding the language key _UE_PROFILE_TITLE_TEXT. Alternatively you can just edit the "User Profile Title text" parameter by editing the "User Profile Page Title" tab in CB > Tab Management. See the below regarding language overrides in CB.3) Same as for "2)" but for user profile Titles - the standard title is the complete name of the user, I've added some text to the PHP code, so there is some custom text right before and right after the users name.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Don't understand the question. You'd have a language override as follows. If you need to add a space simply add a space to the string. That language string is passed through substitutions so you'd just substitute in the city field.Am I right?
But how do I insert the "nbsp;" there?
You can try closing the h3 and opening another. Example as follows.I need the list title to be in 2 lines:
<h1>My list title #1</h1>
<h2>in Moscow</h2>
<h1>My list title #2</h1>
<h2>in Moscow</h2>
and so on....
Please Log in or Create an account to join the conversation.