-
AuthorPosts
-
henrik1782 Friend
henrik1782
- Join date:
- October 2011
- Posts:
- 109
- Downloads:
- 0
- Uploads:
- 35
- Thanks:
- 20
- Thanked:
- 5 times in 1 posts
March 27, 2012 at 12:59 am #175432For modules in T3 layout it is possible to assign style=”jaraw”, Can this be done as a suffix class assingment in module setup?
I want to get rid of the rounded fram. In NEX it is possible to assign no-bg to suffix in module setup and I am looking for something like that in Social.
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
March 27, 2012 at 3:10 am #445814For modules in T3 layout it is possible to assign style=”jaraw”, Can this be done as a suffix class assingment in module setup?
You login backend > extensions > template manager > ja_social > layout tab > edit default layout > add the code style=”raw” into specific <block> (ex: slideshow) like that
<block name="slideshow" type="modules" style="raw">slideshow</block>
I want to get rid of the rounded frame
You remove the code from /plugins/system/jat3/jat3/base-themes/default/etc/layouts/default.xml
<file>css/css3.css</file>
In NEX it is possible to assign no-bg to suffix in module setup and I am looking for something like that in Social.
You add the code into /templates/ja_social/css/template.css
/* No Background */
div.ja-moduletable.no-bg, div.moduletable.no-bg { background: none; border: 0; }div.ja-moduletable.no-bg > h3,
div.moduletable.no-bg > h3 { padding-left: 0; padding-right: 0; }div.ja-moduletable.no-bg .ja-box-ct { padding: 0; }
After that, you can set suffix class of your module is no-bg1 user says Thank You to khoand for this useful post
henrik1782 Friendhenrik1782
- Join date:
- October 2011
- Posts:
- 109
- Downloads:
- 0
- Uploads:
- 35
- Thanks:
- 20
- Thanked:
- 5 times in 1 posts
March 27, 2012 at 8:49 am #445869Thank you so much for your reply… I think one thing is missing in the css3 code, as I still have the bottom roundd frame.
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
March 28, 2012 at 7:50 am #446071Could you give me a link to your website? I will fix it. Because my local ja_social is not same
1 user says Thank You to khoand for this useful post
henrik1782 Friendhenrik1782
- Join date:
- October 2011
- Posts:
- 109
- Downloads:
- 0
- Uploads:
- 35
- Thanks:
- 20
- Thanked:
- 5 times in 1 posts
March 31, 2012 at 12:49 am #446589Hi khoand…
Link for test site is 1test.ftb-forum.dk
Thanks a lot for your help.
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
April 2, 2012 at 8:09 am #446825It’s weird. You give me username+password of your backend and ftp, I will check it.
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
April 2, 2012 at 2:44 pm #446876You forget the step:
You remove the code from /plugins/system/jat3/jat3/base-themes/default/etc/layouts/default.xml
<file>css/css3.css</file>
1 user says Thank You to khoand for this useful post
henrik1782 Friendhenrik1782
- Join date:
- October 2011
- Posts:
- 109
- Downloads:
- 0
- Uploads:
- 35
- Thanks:
- 20
- Thanked:
- 5 times in 1 posts
April 9, 2012 at 1:50 am #447801Hi Khoand…
This did solve the specific problem but also transformed all rounded corners to non-rounded corners.
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
April 9, 2012 at 8:05 am #447844<em>@henrik1782 312949 wrote:</em><blockquote>Hi Khoand…
This did solve the specific problem but also transformed all rounded corners to non-rounded corners.</blockquote>
Because you said:I want to get rid of the rounded fram. In NEX it is possible to assign no-bg to suffix in module setup and I am looking for something like that in Social.
henrik1782 Friendhenrik1782
- Join date:
- October 2011
- Posts:
- 109
- Downloads:
- 0
- Uploads:
- 35
- Thanks:
- 20
- Thanked:
- 5 times in 1 posts
April 11, 2012 at 9:09 pm #448173hi khoand…
Sorry for expressing myself incorrectly. The first solution was almost fine exect for this minor issue.
I wanted to get rid of the moduletable frame but there is still something left at the bottom of the module. This is not the case when viewing the site with IE 8.0 where this bottom line is not shown.
-
khoand Friend
khoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
April 12, 2012 at 8:07 am #448199<em>@henrik1782 313469 wrote:</em><blockquote>hi khoand…
Sorry for expressing myself incorrectly. The first solution was almost fine exect for this minor issue.
I wanted to get rid of the moduletable frame but there is still something left at the bottom of the module. This is not the case when viewing the site with IE 8.0 where this bottom line is not shown.</blockquote>
You restore
<file>css/css3.css</file>
And you replace the code
div.ja-moduletable.no-bg, div.moduletable.no-bg { background: none; border: 0; }
with
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;1 user says Thank You to khoand for this useful post
-
AuthorPosts
Viewing 11 posts - 1 through 11 (of 11 total)This topic contains 11 replies, has 2 voices, and was last updated by khoand 12 years, 9 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum