-
AuthorPosts
-
Andrew Winkler Friend
Andrew Winkler
- Join date:
- September 2014
- Posts:
- 725
- Downloads:
- 206
- Uploads:
- 31
- Thanks:
- 291
- Thanked:
- 34 times in 2 posts
November 21, 2014 at 11:17 pm #202955Since upgrading to the T3 version of JA University, the yellow message box is no longer yellow.
This is how the message box used to look like:
http://awesomescreenshot.com/0693w5g807
This is how the new message box looks like:
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
November 22, 2014 at 3:13 am #556153Hi there,
Please provide your site URL for checking.Thank you,
Viet VuAndrew Winkler FriendAndrew Winkler
- Join date:
- September 2014
- Posts:
- 725
- Downloads:
- 206
- Uploads:
- 31
- Thanks:
- 291
- Thanked:
- 34 times in 2 posts
November 22, 2014 at 5:25 am #556157Here’s an example. The message box is below the main text area.
http://therebel.org/en/kaminski/813681-murder-as-public-relations-and-social-policy
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
November 22, 2014 at 5:36 am #556158Hi there,
# Template would have some change for new concept.
# You can try with this code
body p.box-sticky {
background-image: url(images/icons/sticky-big.png);
background-color: yellow;
}
Replace yellow by your own color code.Thank you,
Viet VuAndrew Winkler FriendAndrew Winkler
- Join date:
- September 2014
- Posts:
- 725
- Downloads:
- 206
- Uploads:
- 31
- Thanks:
- 291
- Thanked:
- 34 times in 2 posts
November 22, 2014 at 6:40 am #556160I copied this code into my custom.css file but it made no difference:
[PHP]body p.box-sticky {
background-image: url(images/icons/sticky-big.png);
background-color: yellow;
}[/PHP]jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
November 22, 2014 at 9:49 am #556171HI there
<link rel="stylesheet" href="/templates/ja_university_t3/css/custom.css" type="text/css">
I don’t see your custom code in this custom.css Please check it.Thank you,
Viet VuAndrew Winkler FriendAndrew Winkler
- Join date:
- September 2014
- Posts:
- 725
- Downloads:
- 206
- Uploads:
- 31
- Thanks:
- 291
- Thanked:
- 34 times in 2 posts
November 22, 2014 at 1:45 pm #556189It is there.
[PHP].t3-module .badge {
background-color: transparent !important;
background-image: url(“../images/badge-ltr.png”);
background-repeat: no-repeat;
height: 40px;
position: absolute;
right: 0;
width: 40px;
padding: 0px;
border-radius: 0px;
}.badge-red .badge {
background-position: 0 0;
}
@media (min-width: 992px) {
.t3-mainbody .t3-content {
left: 17% !important;
}
.t3-mainbody .t3-sidebar.t3-sidebar-1 {
right: 58% !important;
}
.t3-mainbody .t3-content .item-page .article-content embed {
height: 312px !important;
width: 100% !important;
}
}body p.box-sticky {
background-image: url(images/icons/sticky-big.png);
background-color: yellow;
}[/PHP]jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
November 22, 2014 at 2:40 pm #556192Hi there,
I can see your elements with background yellow is displayed as well. Please check it at your side.
Note:// Do not use background-image in custom.css except you want to use another image. Because your current code is not valid with right image path.
https://www.dropbox.com/s/iuj6sy0ke3c9bmz/2014-11-22_21-38-35.png?dl=0
Thank you,
Viet VuAndrew Winkler FriendAndrew Winkler
- Join date:
- September 2014
- Posts:
- 725
- Downloads:
- 206
- Uploads:
- 31
- Thanks:
- 291
- Thanked:
- 34 times in 2 posts
November 22, 2014 at 11:12 pm #556201It would appear that the template folder for the icons got renamed from /images/icons/ to /images/ico/. That probably happened by accident. I just duplicated the folder so it’s not now in there twice under both names. However, it still doesn’t work. None of the JA Type effects seem to be working: no icons, no background colours.
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
November 23, 2014 at 2:13 am #556209Hi there,
# Please consider JA Typo is very basic plugin to provide very basic typography. Actually you should follow up template typography instead.
# As my previous screenshot
https://www.dropbox.com/s/iuj6sy0ke3c9bmz/2014-11-22_21-38-35.png?dl=0
You tried to apply background-image in templates/<template_name>/css and it’s invalid path. That’s why you lost icon at top-left.
Please only use background-color in custom.css
# Right now i have just checked your site
.typo p.box-warning {
background-color: #fbebc1
background-image: url(images/icons/message/icon-warning.png);
border-color: #e1bc88
color: #ca7326
text-decoration: none;
}
Not sure if you changed your HTML that is not right for this css.
# And actually now is time for Bootstrap. Please use Twitter Bootstrap instead.Thank you,
Viet Vu1 user says Thank You to jooservices for this useful post
Andrew Winkler FriendAndrew Winkler
- Join date:
- September 2014
- Posts:
- 725
- Downloads:
- 206
- Uploads:
- 31
- Thanks:
- 291
- Thanked:
- 34 times in 2 posts
November 23, 2014 at 6:06 am #556218I copied the code, even added the missing semicolons at the end of the various parameters, removed the background code from the footer plug-in, but the page still looks like this:
http://awesomescreenshot.com/0ee3w9de84
That is no coloured background and no warning icon. What’s wrong here?
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
November 23, 2014 at 7:01 am #556220Hi there,
Please provide your site & FTP access. I’ll work in on your server.Thank you,
Viet Vu1 user says Thank You to jooservices for this useful post
Andrew Winkler FriendAndrew Winkler
- Join date:
- September 2014
- Posts:
- 725
- Downloads:
- 206
- Uploads:
- 31
- Thanks:
- 291
- Thanked:
- 34 times in 2 posts
November 23, 2014 at 10:12 pm #556239I’ve PM’ed the credentials to you.
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
November 24, 2014 at 4:50 am #556275Hi there,
I have just updated css and applied sample code at:
http://therebel.org/en/kaminski/813681-murder-as-public-relations-and-social-policy
And actually template by themself already have typography. Please use it
http://ja-university.demo.joomlart.com/index.php/typography
Thank you,
Viet VuAndrew Winkler FriendAndrew Winkler
- Join date:
- September 2014
- Posts:
- 725
- Downloads:
- 206
- Uploads:
- 31
- Thanks:
- 291
- Thanked:
- 34 times in 2 posts
November 24, 2014 at 12:20 pm #556314None of the JA Typo codes of the template work. Not the warning, not the sticky and not the social media icons used at the bottom of the page. All of this was working fine before upgrading from the JA T3 version of JA University.
-
AuthorPosts
This topic contains 24 replies, has 3 voices, and was last updated by Ninja Lead 9 years, 11 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum