-
AuthorPosts
-
minas69 Friend
minas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 12, 2013 at 6:57 am #189645Hi,
when I take a look with my iphone4 I can see that the menu slides down until the end. So you cant see anything or add. Please see picture:
What I have to do ?
thx
markus
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
August 13, 2013 at 8:30 am #502056Hi Markus,
You can try to put below codes into templates/ja_smashboard/css/custom.css file:
@media (max-width: 767px) {
#t3-header {
max-height: 80px;
}#t3-header .head-social {
margin-top: -215px;
}
}1 user says Thank You to phong nam for this useful post
minas69 Friendminas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 13, 2013 at 10:04 am #502072Hi :o)
thanks thats right ! 😀
But there is now another one….When I open the ja smashboard demo with my iphone I can see the article with a white background below the image and I can slide to the different articles in this category.
Here now I can see the article but I cant slide and the textarea is black.
So what I have to do to get the same layout and function like your demo ?!
Thanks for your kindly support…
markus
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
August 14, 2013 at 10:31 am #502195Hi Markus,
Would you mind sending me PM with your website’s credentials ? I will help to check your issue.
minas69 Friendminas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 15, 2013 at 12:19 pm #502337yes…send
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
August 16, 2013 at 7:37 am #502436Hi Markus,
It seems that the scrolling issue on mobile is caused by your customized css styles on our JA Smashboard template, because the position of infinity area is set to “fixed” which causes the items not to be scrolled yet. I suggest you to backup our default styles each time before applying changes on the template. Well, in this case, you can solve the scroll issue on mobile view by adding below codes into templates/ja_smashboard/css/custom.css file:
@media (max-width: 767px) {
.ja-infinity-wraper {
position: static !important;
overflow: hidden;
height: auto !important;
margin-left: 0 !important;
left: 0;
}
}
Please check out your website now.
On the t3-content background color concern: By default, the background is set to none on all device views. If you want to show this white background, you can put below codes into custom.css file:
.com_k2.body-bg .t3-content {
background: white !important;
}
But, it will make your content area look not good as our demo.
1 user says Thank You to phong nam for this useful post
minas69 Friendminas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 16, 2013 at 8:09 am #502442Hi Leo,
thanks for that… it´s fine now…but now the scroll area getting shorter..please see image…
clear cache everything is fine !
thanks a lot !
minas69 Friendminas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 16, 2013 at 9:35 am #502464Hi,
regarding this issue :
.com_k2.body-bg .t3-content {
background: white !important;
}I mean the background in the k2 item header..see image….
minas69 Friendminas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 16, 2013 at 12:52 pm #502494only for mobile layout…
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
August 16, 2013 at 1:21 pm #502496Hi Markus,
You can change the item header background on mobile view by adding below codes into custom.css file:
@media (max-width: 479px) {
.item .view-item {
padding-left: 20px;
padding-right: 20px;
background: white;
}div.catItemHeader h3.catItemTitle a {
color: black;
}
}Change to your desired background and title color.
minas69 Friendminas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 17, 2013 at 9:13 am #502543thanks for your help Leo…!
but no change..still black…:-[
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
August 17, 2013 at 9:33 am #502544Hey Markus,
Lets try put these into custom.css file one more time:
@media (max-width: 767px) {
.item .view-item {
background: white;
}div.catItemHeader h3.catItemTitle a {
color: black;
}
}Please don’t remove these codes in custom.css file, so i can keep track on your changes.
minas69 Friendminas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 17, 2013 at 10:01 am #502549still black 😮
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
minas69 Friendminas69
- Join date:
- September 2007
- Posts:
- 260
- Downloads:
- 0
- Uploads:
- 99
- Thanks:
- 73
- Thanked:
- 6 times in 1 posts
August 17, 2013 at 10:12 am #502551ahh..god it :D…
Many thanks for your kindly help and a nice weekend to you !! :)))
AuthorPostsViewing 15 posts - 1 through 15 (of 15 total)This topic contains 15 replies, has 2 voices, and was last updated by minas69 11 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum