- Posts: 4
COMMUNITY FORUM
[SOLVED] Image not showing in item
- Matt Belsten
-
Topic Author
- Offline
- New Member
Less
More
10 years 5 months ago #133818
by Matt Belsten
Image not showing in item was created by Matt Belsten
Hi,
Image shows in display category, however - when I click on the image to go into the item I get the text etc, but the image no longer shows....
Checked all the various settings and Image is set to show in all the various options for both Categories and items...
You can see it here - www.the-belstens.co.uk - click on the About Us Menu. No need to login etc.
Many thanks!
Matt
Image shows in display category, however - when I click on the image to go into the item I get the text etc, but the image no longer shows....
Checked all the various settings and Image is set to show in all the various options for both Categories and items...
You can see it here - www.the-belstens.co.uk - click on the About Us Menu. No need to login etc.
Many thanks!
Matt
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
Less
More
- Posts: 15920
10 years 5 months ago #133848
by Krikor Boghossian
Replied by Krikor Boghossian on topic Image not showing in item
Hello Matt,
You need to double check your category's settings and make sure you are not hiding the image in the item view.
You need to double check your category's settings and make sure you are not hiding the image in the item view.
Please Log in or Create an account to join the conversation.
- Zdenek
-
- Offline
- New Member
Less
More
- Posts: 3
10 years 5 months ago #133862
by Zdenek
Replied by Zdenek on topic Image not showing in item
Hi Matt, it is not a problem with K2. Your template is on T3 framework, there is a small issue with modal class in css.
Make custom.css and comment out display: none and position: fixed
.modal {
/* display: none; */
overflow: auto;
overflow-y: scroll;
/* position: fixed; */
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0;
Make custom.css and comment out display: none and position: fixed
.modal {
/* display: none; */
overflow: auto;
overflow-y: scroll;
/* position: fixed; */
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0;
Please Log in or Create an account to join the conversation.
- Matt Belsten
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 4
10 years 5 months ago #133883
by Matt Belsten
Replied by Matt Belsten on topic Image not showing in item
Thanks for the replies guys!
Krikor - double, triple and quadruple checked all settings everywhere!
Zdenek - I am a complete beginner when it comes to CSS. Which directory should I put the custom.css file in (TS or K2 CSS Folders) and when you say :
"comment out display: none and position: fixed"
Can you give me a little more instruction?
Many thanks guys!
Matt
Krikor - double, triple and quadruple checked all settings everywhere!
Zdenek - I am a complete beginner when it comes to CSS. Which directory should I put the custom.css file in (TS or K2 CSS Folders) and when you say :
"comment out display: none and position: fixed"
Can you give me a little more instruction?
Many thanks guys!
Matt
Please Log in or Create an account to join the conversation.
- Zdenek
-
- Offline
- New Member
Less
More
- Posts: 3
10 years 5 months ago #133887
by Zdenek
Replied by Zdenek on topic Image not showing in item
Make custom.css file in folder -> /templates/purity_iii/css/
Put inside this:
.modal {
display: normal;
position: static;
}
Make sure you put the custom.css in right folder and name it custom.css! ;-)
Put inside this:
.modal {
display: normal;
position: static;
}
Make sure you put the custom.css in right folder and name it custom.css! ;-)
Please Log in or Create an account to join the conversation.
- Matt Belsten
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 4
10 years 5 months ago #133893
by Matt Belsten
Replied by Matt Belsten on topic Image not showing in item
Hi,
That made no difference - sorry!
created a custom.css file put this into it:
.modal {
display: normal;
position: static;
}
put it in the purityiii/css folder
Any ideas?
Regards,
Matt
That made no difference - sorry!
created a custom.css file put this into it:
.modal {
display: normal;
position: static;
}
put it in the purityiii/css folder
Any ideas?
Regards,
Matt
Please Log in or Create an account to join the conversation.
- Zdenek
-
- Offline
- New Member
Less
More
- Posts: 3
10 years 5 months ago #133900
by Zdenek
Replied by Zdenek on topic Image not showing in item
Sorry Matt, my mistake. Display is inline, display: inline; not normal. It will work 100% I tested it on firebug.
Please Log in or Create an account to join the conversation.
- Matt Belsten
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 4
10 years 5 months ago #133907
by Matt Belsten
Replied by Matt Belsten on topic Image not showing in item
Fantastic - works like a dream!
Thanks for the help guys :)
Matt
Thanks for the help guys :)
Matt
Please Log in or Create an account to join the conversation.
- Sean Carney
-
- Offline
- Premium Member
Less
More
- Posts: 111
10 years 5 months ago - 10 years 5 months ago #134512
by Sean Carney
Replied by Sean Carney on topic Image not showing in item
I ran into this same problem with a T3 template from JoomlaBamboo and I tried the code that was suggested and it 'almost' worked. It is very close! I am hoping somebody might have a bit of additional code for me.
The problem I have is that now the images do work but they now cover over the top of a sticky navigation menu.
Here is an example page:
gmf.cloudaccess.net/surfaces/showers/glass-tile-showers/item/27-matching-glass-tile-showers
If you scroll down on the page you will see that the image goes on top of instead of behind the sticky navigation.
Here is the code I added to my custom.css file:
/*-- Fix K2 Item images not displaying --*/
.modal {
display: inline;
position: static;
}
This problem exists with T3 v 2.3.2 and also with v 2.4.1
The problem I have is that now the images do work but they now cover over the top of a sticky navigation menu.
Here is an example page:
gmf.cloudaccess.net/surfaces/showers/glass-tile-showers/item/27-matching-glass-tile-showers
If you scroll down on the page you will see that the image goes on top of instead of behind the sticky navigation.
Here is the code I added to my custom.css file:
/*-- Fix K2 Item images not displaying --*/
.modal {
display: inline;
position: static;
}
This problem exists with T3 v 2.3.2 and also with v 2.4.1
Last edit: 10 years 5 months ago by Sean Carney.
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
Less
More
- Posts: 15920
10 years 5 months ago #134549
by Krikor Boghossian
Replied by Krikor Boghossian on topic Image not showing in item
This is not the same issue.
Your's is a template issue. You need to add #zenkit in front of .modal eg.
#zenkit .modal { ...
Your's is a template issue. You need to add #zenkit in front of .modal eg.
#zenkit .modal { ...
Please Log in or Create an account to join the conversation.
- Sean Carney
-
- Offline
- Premium Member
Less
More
- Posts: 111
10 years 5 months ago #134828
by Sean Carney
Replied by Sean Carney on topic Image not showing in item
Thank you Krikor for your help and advice! :-)
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
Less
More
- Posts: 15920
10 years 5 months ago #134837
by Krikor Boghossian
Replied by Krikor Boghossian on topic Image not showing in item
You 're welcome Sean :)
Please Log in or Create an account to join the conversation.