ImageShow Text Block issues

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sat Jun 22, 2013 8:19 am
Reply with quote
Report this post
Hello guys . When i place the text block to the left side, no matter how much padding I add it still stays flushed to the left side. Please see the image attachment . Also how do I make the text size smaller?
User avatar
Platinum Boarder

GK User
Sat Jun 22, 2013 9:34 am
Reply with quote
Report this post
Hi,

Could you provide an URL to your website?
User avatar
Administrator

GK User
Sat Jun 22, 2013 10:16 am
Reply with quote
Report this post
the site is not live yet
if you want I can email you the link
User avatar
Platinum Boarder

GK User
Sat Jun 22, 2013 11:28 am
Reply with quote
Report this post
Please send me a PM message with this URL.
User avatar
Administrator

GK User
Sat Jun 22, 2013 5:23 pm
Reply with quote
Report this post
I sent the private message
User avatar
Platinum Boarder

GK User
Sun Jun 23, 2013 5:02 pm
Reply with quote
Report this post
Hellllo?
User avatar
Platinum Boarder

GK User
Sun Jun 23, 2013 8:08 pm
Reply with quote
Report this post
Please provide me an FTP access and the administrator data, because it must be something wrong with your installation.
User avatar
Administrator

GK User
Mon Jun 24, 2013 6:35 pm
Reply with quote
Report this post
I sent you private message.
User avatar
Platinum Boarder

GK User
Tue Jun 25, 2013 11:27 am
Reply with quote
Report this post
This problem is still ongoing despite reinstalling the template.
User avatar
Platinum Boarder

GK User
Tue Jun 25, 2013 1:48 pm
Reply with quote
Report this post
Image Show is an independent from the template - you can try to reinstall the module.
User avatar
Administrator

GK User
Wed Jun 26, 2013 10:57 am
Reply with quote
Report this post
Thanks . The reinstallation solve the padding problem. But The Text size is still a problem. Do you think a selector in css override would fix that? If so what is it? Also can get rid of the "Get More Details" Button?
User avatar
Platinum Boarder

GK User
Wed Jun 26, 2013 3:45 pm
Reply with quote
Report this post
The font size can be adjusted in the following selector (in gk.stuff.css file):

Code: Select all
.gkIsWrapper-gk_rockwall figcaption h2


the button can be hidden using the following CSS code:

Code: Select all
.gkIsWrapper-gk_rockwall figcaption a.button {
display: none!important;
}
User avatar
Administrator

GK User
Wed Jun 26, 2013 6:55 pm
Reply with quote
Report this post
I put both codes in css override and nothing happened/changed.
User avatar
Platinum Boarder

GK User
Wed Jun 26, 2013 7:01 pm
Reply with quote
Report this post
Code: Select all
.gkIsWrapper-gk_rockwall figcaption h6

.gkIsWrapper-gk_rockwall figcaption a.button {
display: none!important;
}


sorry, but this code won't code - you have to specify the font size in the .gkIsWrapper-gk_rockwall figcaption h2 selector i.e.:

Code: Select all
.gkIsWrapper-gk_rockwall figcaption h2 {
font-size: 40px!important;
}
User avatar
Administrator

GK User
Wed Jun 26, 2013 7:22 pm
Reply with quote
Report this post
Thanks . It works. My only remaining problem is with the text block background. When I set a color it does not stay on behind the text it covers the whole slide. I would like it to right behind the text like the text was selected. With a 50% transparency
User avatar
Platinum Boarder

GK User
Thu Jun 27, 2013 9:05 am
Reply with quote
Report this post
you can always add more left/right paddings and use the rgba background color for the following elements:

Code: Select all
.gkIsWrapper-gk_rockwall figure.active figcaption h2


then only the background under the text will be semitransparent.
User avatar
Administrator

GK User
Thu Jun 27, 2013 10:41 am
Reply with quote
Report this post
can you show an example please?
User avatar
Platinum Boarder

GK User
Thu Jun 27, 2013 12:31 pm
Reply with quote
Report this post
of course:

Code: Select all
.gkIsWrapper-gk_rockwall figure.active figcaption h2 {
background: rgba(0, 0, 0, 0.5)!important;
padding-left: 10px!important;
padding-right: 10px!important;
}
User avatar
Administrator


cron