Version Notes
This is second stable Version.
We Include New Social Media Buttons like FIickr, Mail To, Go to and Instagram.
Download this release
Release Info
Developer | Magento Core Team |
Extension | Helios_Hssocialmedia |
Version | 0.2.0 |
Comparing to | |
See all releases |
Code changes from version 0.1.2 to 0.2.0
- app/code/community/Helios/Hssocialmedia/Helper/Data.php +52 -0
- app/code/community/Helios/Hssocialmedia/etc/config.xml +5 -1
- app/code/community/Helios/Hssocialmedia/etc/system.xml +210 -128
- app/design/frontend/default/default/template/hssocialmedia/hsmedia.phtml +102 -60
- package.xml +5 -5
- skin/frontend/default/default/css/hsmedia/hsmedia-left.css +25 -2
- skin/frontend/default/default/css/hsmedia/hsmedia.css +25 -2
- skin/frontend/default/default/images/social-icons-left.png +0 -0
- skin/frontend/default/default/images/social-icons.png +0 -0
app/code/community/Helios/Hssocialmedia/Helper/Data.php
CHANGED
@@ -124,5 +124,57 @@ class Helios_Hssocialmedia_Helper_Data extends Mage_Core_Helper_Abstract
|
|
124 |
{
|
125 |
return Mage::getStoreConfig('hsmedia/hsmediashare/pinteresttitle');
|
126 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
}
|
128 |
|
124 |
{
|
125 |
return Mage::getStoreConfig('hsmedia/hsmediashare/pinteresttitle');
|
126 |
}
|
127 |
+
/**
|
128 |
+
* get Instagram + link Details
|
129 |
+
*
|
130 |
+
* @return Helios_Hssocialmedia_Helper_Data
|
131 |
+
*/
|
132 |
+
public function getInstagramUrl()
|
133 |
+
{
|
134 |
+
return Mage::getStoreConfig('hsmedia/hsmediashare/instagramurl');
|
135 |
+
}
|
136 |
+
public function getInstagramTitle()
|
137 |
+
{
|
138 |
+
return Mage::getStoreConfig('hsmedia/hsmediashare/instagramtitle');
|
139 |
+
}
|
140 |
+
/**
|
141 |
+
* get Flickr + link Details
|
142 |
+
*
|
143 |
+
* @return Helios_Hssocialmedia_Helper_Data
|
144 |
+
*/
|
145 |
+
public function getFlickrUrl()
|
146 |
+
{
|
147 |
+
return Mage::getStoreConfig('hsmedia/hsmediashare/flickrurl');
|
148 |
+
}
|
149 |
+
public function getFlickrTitle()
|
150 |
+
{
|
151 |
+
return Mage::getStoreConfig('hsmedia/hsmediashare/flickrtitle');
|
152 |
+
}
|
153 |
+
/**
|
154 |
+
* get Website + link Details
|
155 |
+
*
|
156 |
+
* @return Helios_Hssocialmedia_Helper_Data
|
157 |
+
*/
|
158 |
+
public function getWebUrl()
|
159 |
+
{
|
160 |
+
return Mage::getStoreConfig('hsmedia/hsmediashare/weburl');
|
161 |
+
}
|
162 |
+
public function getWebTitle()
|
163 |
+
{
|
164 |
+
return Mage::getStoreConfig('hsmedia/hsmediashare/webtitle');
|
165 |
+
}
|
166 |
+
/**
|
167 |
+
* get Email Address + link Details
|
168 |
+
*
|
169 |
+
* @return Helios_Hssocialmedia_Helper_Data
|
170 |
+
*/
|
171 |
+
public function getMailUrl()
|
172 |
+
{
|
173 |
+
return Mage::getStoreConfig('hsmedia/hsmediashare/webmail');
|
174 |
+
}
|
175 |
+
public function getMailTitle()
|
176 |
+
{
|
177 |
+
return Mage::getStoreConfig('hsmedia/hsmediashare/webmailtitle');
|
178 |
+
}
|
179 |
}
|
180 |
|
app/code/community/Helios/Hssocialmedia/etc/config.xml
CHANGED
@@ -9,12 +9,16 @@
|
|
9 |
<youtubetitle>Follow via Youtube</youtubetitle>
|
10 |
<googleplustitle>Follow via Google +</googleplustitle>
|
11 |
<pinteresttitle>Follow via Pinterest</pinteresttitle>
|
|
|
|
|
|
|
|
|
12 |
</hsmediashare>
|
13 |
</hsmedia>
|
14 |
</default>
|
15 |
<modules>
|
16 |
<Helios_Hssocialmedia>
|
17 |
-
<version>0.
|
18 |
</Helios_Hssocialmedia>
|
19 |
</modules>
|
20 |
<frontend>
|
9 |
<youtubetitle>Follow via Youtube</youtubetitle>
|
10 |
<googleplustitle>Follow via Google +</googleplustitle>
|
11 |
<pinteresttitle>Follow via Pinterest</pinteresttitle>
|
12 |
+
<instagramtitle>Follow via Instagram</instagramtitle>
|
13 |
+
<flickrtitle>Follow via Flickr</flickrtitle>
|
14 |
+
<webtitle>Go To</webtitle>
|
15 |
+
<webmailtitle>Mail To</webmailtitle>
|
16 |
</hsmediashare>
|
17 |
</hsmedia>
|
18 |
</default>
|
19 |
<modules>
|
20 |
<Helios_Hssocialmedia>
|
21 |
+
<version>0.2.0</version>
|
22 |
</Helios_Hssocialmedia>
|
23 |
</modules>
|
24 |
<frontend>
|
app/code/community/Helios/Hssocialmedia/etc/system.xml
CHANGED
@@ -1,168 +1,250 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<config>
|
3 |
-
|
4 |
-
|
5 |
<label>HS Social Media Plugin</label>
|
6 |
<sort_order>0</sort_order>
|
7 |
</hssocialmedia>
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
<label>Facebook URL</label>
|
29 |
-
|
30 |
<sort_order>0</sort_order>
|
31 |
<show_in_default>1</show_in_default>
|
32 |
<show_in_website>1</show_in_website>
|
33 |
<show_in_store>1</show_in_store>
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
37 |
<label>Facebook Title</label>
|
38 |
-
|
39 |
<sort_order>1</sort_order>
|
40 |
<show_in_default>1</show_in_default>
|
41 |
<show_in_website>1</show_in_website>
|
42 |
<show_in_store>1</show_in_store>
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
<label>Linkedin URL</label>
|
47 |
-
|
48 |
<sort_order>2</sort_order>
|
49 |
<show_in_default>1</show_in_default>
|
50 |
<show_in_website>1</show_in_website>
|
51 |
<show_in_store>1</show_in_store>
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
55 |
<label>Linkedin Title</label>
|
56 |
-
|
57 |
<sort_order>3</sort_order>
|
58 |
<show_in_default>1</show_in_default>
|
59 |
<show_in_website>1</show_in_website>
|
60 |
<show_in_store>1</show_in_store>
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
<label>Twitter URL</label>
|
65 |
-
|
66 |
<sort_order>4</sort_order>
|
67 |
<show_in_default>1</show_in_default>
|
68 |
<show_in_website>1</show_in_website>
|
69 |
<show_in_store>1</show_in_store>
|
70 |
-
|
71 |
-
|
72 |
-
|
|
|
73 |
<label>Twitter Title</label>
|
74 |
-
|
75 |
<sort_order>5</sort_order>
|
76 |
<show_in_default>1</show_in_default>
|
77 |
<show_in_website>1</show_in_website>
|
78 |
<show_in_store>1</show_in_store>
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
<label>Youtube URL</label>
|
83 |
-
|
84 |
<sort_order>6</sort_order>
|
85 |
<show_in_default>1</show_in_default>
|
86 |
<show_in_website>1</show_in_website>
|
87 |
<show_in_store>1</show_in_store>
|
88 |
-
|
89 |
-
|
90 |
-
|
|
|
91 |
<label>Youtube Title</label>
|
92 |
-
|
93 |
<sort_order>7</sort_order>
|
94 |
<show_in_default>1</show_in_default>
|
95 |
<show_in_website>1</show_in_website>
|
96 |
<show_in_store>1</show_in_store>
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
<label>Google + URL</label>
|
101 |
-
|
102 |
<sort_order>8</sort_order>
|
103 |
<show_in_default>1</show_in_default>
|
104 |
<show_in_website>1</show_in_website>
|
105 |
<show_in_store>1</show_in_store>
|
106 |
-
|
107 |
-
|
108 |
-
|
|
|
109 |
<label>Google + Title</label>
|
110 |
-
|
111 |
<sort_order>9</sort_order>
|
112 |
<show_in_default>1</show_in_default>
|
113 |
<show_in_website>1</show_in_website>
|
114 |
<show_in_store>1</show_in_store>
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
<label>Pinterest URL</label>
|
119 |
-
|
120 |
<sort_order>10</sort_order>
|
121 |
<show_in_default>1</show_in_default>
|
122 |
<show_in_website>1</show_in_website>
|
123 |
<show_in_store>1</show_in_store>
|
124 |
-
|
125 |
-
|
126 |
-
|
|
|
127 |
<label>Pinterest Title</label>
|
128 |
-
|
129 |
<sort_order>11</sort_order>
|
130 |
<show_in_default>1</show_in_default>
|
131 |
<show_in_website>1</show_in_website>
|
132 |
<show_in_store>1</show_in_store>
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
<label>Select Social Media Button Position</label>
|
167 |
<frontend_type>select</frontend_type>
|
168 |
<source_model>adminhtml/system_config_source_Diyoptions13865676036</source_model>
|
@@ -170,18 +252,18 @@
|
|
170 |
<show_in_default>1</show_in_default>
|
171 |
<show_in_website>1</show_in_website>
|
172 |
<show_in_store>1</show_in_store>
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
<label>Social Media Button Margin Top</label>
|
177 |
-
|
178 |
<sort_order>3</sort_order>
|
179 |
<show_in_default>1</show_in_default>
|
180 |
<show_in_website>1</show_in_website>
|
181 |
<show_in_store>1</show_in_store>
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
<label>Social Media Button Effect</label>
|
186 |
<frontend_type>select</frontend_type>
|
187 |
<source_model>adminhtml/system_config_source_Diyoptions13865676038</source_model>
|
@@ -189,28 +271,28 @@
|
|
189 |
<show_in_default>1</show_in_default>
|
190 |
<show_in_website>1</show_in_website>
|
191 |
<show_in_store>1</show_in_store>
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
<show_in_default>1</show_in_default>
|
201 |
<show_in_website>1</show_in_website>
|
202 |
<show_in_store>1</show_in_store>
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
<show_in_store>1</show_in_store>
|
210 |
-
</info>
|
211 |
-
</fields>
|
212 |
-
</aboutus>
|
213 |
-
</groups>
|
214 |
-
</hsmedia>
|
215 |
-
</sections>
|
216 |
</config>
|
1 |
<?xml version="1.0"?>
|
2 |
<config>
|
3 |
+
<tabs>
|
4 |
+
<hssocialmedia translate="label" module="hssocialmedia">
|
5 |
<label>HS Social Media Plugin</label>
|
6 |
<sort_order>0</sort_order>
|
7 |
</hssocialmedia>
|
8 |
+
</tabs>
|
9 |
+
<sections>
|
10 |
+
<hsmedia translate="label" module="hssocialmedia">
|
11 |
+
<label>HS Social Media Plugin Setting</label>
|
12 |
+
<tab>hssocialmedia</tab>
|
13 |
+
<frontend_type>text</frontend_type>
|
14 |
+
<sort_order>0</sort_order>
|
15 |
+
<show_in_default>1</show_in_default>
|
16 |
+
<show_in_website>1</show_in_website>
|
17 |
+
<show_in_store>1</show_in_store>
|
18 |
+
<groups>
|
19 |
+
<hsmediashare translate="label">
|
20 |
+
<label>HS Social Media Buttons Settings</label>
|
21 |
+
<frontend_type>text</frontend_type>
|
22 |
+
<sort_order>1</sort_order>
|
23 |
+
<show_in_default>1</show_in_default>
|
24 |
+
<show_in_website>1</show_in_website>
|
25 |
+
<show_in_store>1</show_in_store>
|
26 |
+
<fields>
|
27 |
+
<facebookurl translate="label">
|
28 |
<label>Facebook URL</label>
|
29 |
+
<frontend_type>text</frontend_type>
|
30 |
<sort_order>0</sort_order>
|
31 |
<show_in_default>1</show_in_default>
|
32 |
<show_in_website>1</show_in_website>
|
33 |
<show_in_store>1</show_in_store>
|
34 |
+
<validate>validate-url</validate>
|
35 |
+
<comment>Enter Facebook URL like https://www.facebook.com</comment>
|
36 |
+
</facebookurl>
|
37 |
+
<facebooktitle translate="label">
|
38 |
<label>Facebook Title</label>
|
39 |
+
<frontend_type>text</frontend_type>
|
40 |
<sort_order>1</sort_order>
|
41 |
<show_in_default>1</show_in_default>
|
42 |
<show_in_website>1</show_in_website>
|
43 |
<show_in_store>1</show_in_store>
|
44 |
+
<comment>Enter Facebook Title</comment>
|
45 |
+
</facebooktitle>
|
46 |
+
<linkedinurl translate="label">
|
47 |
<label>Linkedin URL</label>
|
48 |
+
<frontend_type>text</frontend_type>
|
49 |
<sort_order>2</sort_order>
|
50 |
<show_in_default>1</show_in_default>
|
51 |
<show_in_website>1</show_in_website>
|
52 |
<show_in_store>1</show_in_store>
|
53 |
+
<validate>validate-url</validate>
|
54 |
+
<comment>Enter Linkedin URL like https://www.linkedin.com</comment>
|
55 |
+
</linkedinurl>
|
56 |
+
<linkedintitle translate="label">
|
57 |
<label>Linkedin Title</label>
|
58 |
+
<frontend_type>text</frontend_type>
|
59 |
<sort_order>3</sort_order>
|
60 |
<show_in_default>1</show_in_default>
|
61 |
<show_in_website>1</show_in_website>
|
62 |
<show_in_store>1</show_in_store>
|
63 |
+
<comment>Enter Linkedin Title</comment>
|
64 |
+
</linkedintitle>
|
65 |
+
<twitterurl translate="label">
|
66 |
<label>Twitter URL</label>
|
67 |
+
<frontend_type>text</frontend_type>
|
68 |
<sort_order>4</sort_order>
|
69 |
<show_in_default>1</show_in_default>
|
70 |
<show_in_website>1</show_in_website>
|
71 |
<show_in_store>1</show_in_store>
|
72 |
+
<validate>validate-url</validate>
|
73 |
+
<comment>Enter Twitter URL like https://www.twitter.com</comment>
|
74 |
+
</twitterurl>
|
75 |
+
<twittertitle translate="label">
|
76 |
<label>Twitter Title</label>
|
77 |
+
<frontend_type>text</frontend_type>
|
78 |
<sort_order>5</sort_order>
|
79 |
<show_in_default>1</show_in_default>
|
80 |
<show_in_website>1</show_in_website>
|
81 |
<show_in_store>1</show_in_store>
|
82 |
+
<comment>Enter Twitter Title</comment>
|
83 |
+
</twittertitle>
|
84 |
+
<youtubeurl translate="label">
|
85 |
<label>Youtube URL</label>
|
86 |
+
<frontend_type>text</frontend_type>
|
87 |
<sort_order>6</sort_order>
|
88 |
<show_in_default>1</show_in_default>
|
89 |
<show_in_website>1</show_in_website>
|
90 |
<show_in_store>1</show_in_store>
|
91 |
+
<validate>validate-url</validate>
|
92 |
+
<comment>Enter Youtube URL like https://www.youtube.com</comment>
|
93 |
+
</youtubeurl>
|
94 |
+
<youtubetitle translate="label">
|
95 |
<label>Youtube Title</label>
|
96 |
+
<frontend_type>text</frontend_type>
|
97 |
<sort_order>7</sort_order>
|
98 |
<show_in_default>1</show_in_default>
|
99 |
<show_in_website>1</show_in_website>
|
100 |
<show_in_store>1</show_in_store>
|
101 |
+
<comment>Enter Youtube Title</comment>
|
102 |
+
</youtubetitle>
|
103 |
+
<googleplusurl translate="label">
|
104 |
<label>Google + URL</label>
|
105 |
+
<frontend_type>text</frontend_type>
|
106 |
<sort_order>8</sort_order>
|
107 |
<show_in_default>1</show_in_default>
|
108 |
<show_in_website>1</show_in_website>
|
109 |
<show_in_store>1</show_in_store>
|
110 |
+
<validate>validate-url</validate>
|
111 |
+
<comment>Enter Google + URL like https://www.plus.google.com</comment>
|
112 |
+
</googleplusurl>
|
113 |
+
<googleplustitle translate="label">
|
114 |
<label>Google + Title</label>
|
115 |
+
<frontend_type>text</frontend_type>
|
116 |
<sort_order>9</sort_order>
|
117 |
<show_in_default>1</show_in_default>
|
118 |
<show_in_website>1</show_in_website>
|
119 |
<show_in_store>1</show_in_store>
|
120 |
+
<comment>Enter Google + Title</comment>
|
121 |
+
</googleplustitle>
|
122 |
+
<pinteresturl translate="label">
|
123 |
<label>Pinterest URL</label>
|
124 |
+
<frontend_type>text</frontend_type>
|
125 |
<sort_order>10</sort_order>
|
126 |
<show_in_default>1</show_in_default>
|
127 |
<show_in_website>1</show_in_website>
|
128 |
<show_in_store>1</show_in_store>
|
129 |
+
<validate>validate-url</validate>
|
130 |
+
<comment>Enter Pinterest URL like https://www.plus.pinterest.com</comment>
|
131 |
+
</pinteresturl>
|
132 |
+
<pinteresttitle translate="label">
|
133 |
<label>Pinterest Title</label>
|
134 |
+
<frontend_type>text</frontend_type>
|
135 |
<sort_order>11</sort_order>
|
136 |
<show_in_default>1</show_in_default>
|
137 |
<show_in_website>1</show_in_website>
|
138 |
<show_in_store>1</show_in_store>
|
139 |
+
<comment>Enter Pinterest Title</comment>
|
140 |
+
</pinteresttitle>
|
141 |
+
<instagramurl translate="label">
|
142 |
+
<label>Instagram URL</label>
|
143 |
+
<frontend_type>text</frontend_type>
|
144 |
+
<sort_order>12</sort_order>
|
145 |
+
<show_in_default>1</show_in_default>
|
146 |
+
<show_in_website>1</show_in_website>
|
147 |
+
<show_in_store>1</show_in_store>
|
148 |
+
<validate>validate-url</validate>
|
149 |
+
<comment>Enter Instagram URL like http://instagram.com</comment>
|
150 |
+
</instagramurl>
|
151 |
+
<instagramtitle translate="label">
|
152 |
+
<label>Instagram Title</label>
|
153 |
+
<frontend_type>text</frontend_type>
|
154 |
+
<sort_order>13</sort_order>
|
155 |
+
<show_in_default>1</show_in_default>
|
156 |
+
<show_in_website>1</show_in_website>
|
157 |
+
<show_in_store>1</show_in_store>
|
158 |
+
<comment>Enter Instagram Title</comment>
|
159 |
+
</instagramtitle>
|
160 |
+
<flickrurl translate="label">
|
161 |
+
<label>Flickr URL</label>
|
162 |
+
<frontend_type>text</frontend_type>
|
163 |
+
<sort_order>14</sort_order>
|
164 |
+
<show_in_default>1</show_in_default>
|
165 |
+
<show_in_website>1</show_in_website>
|
166 |
+
<show_in_store>1</show_in_store>
|
167 |
+
<validate>validate-url</validate>
|
168 |
+
<comment>Enter Flickr URL like http://www.flickr.com</comment>
|
169 |
+
</flickrurl>
|
170 |
+
<flickrtitle translate="label">
|
171 |
+
<label>Flickr Title</label>
|
172 |
+
<frontend_type>text</frontend_type>
|
173 |
+
<sort_order>15</sort_order>
|
174 |
+
<show_in_default>1</show_in_default>
|
175 |
+
<show_in_website>1</show_in_website>
|
176 |
+
<show_in_store>1</show_in_store>
|
177 |
+
<comment>Enter Flickr Title</comment>
|
178 |
+
</flickrtitle>
|
179 |
+
<weburl translate="label">
|
180 |
+
<label>Website URL</label>
|
181 |
+
<frontend_type>text</frontend_type>
|
182 |
+
<sort_order>16</sort_order>
|
183 |
+
<show_in_default>1</show_in_default>
|
184 |
+
<show_in_website>1</show_in_website>
|
185 |
+
<show_in_store>1</show_in_store>
|
186 |
+
<validate>validate-url</validate>
|
187 |
+
<comment>Enter any Website URL.</comment>
|
188 |
+
</weburl>
|
189 |
+
<webtitle translate="label">
|
190 |
+
<label>Website Title</label>
|
191 |
+
<frontend_type>text</frontend_type>
|
192 |
+
<sort_order>17</sort_order>
|
193 |
+
<show_in_default>1</show_in_default>
|
194 |
+
<show_in_website>1</show_in_website>
|
195 |
+
<show_in_store>1</show_in_store>
|
196 |
+
<comment>Enter Website Title</comment>
|
197 |
+
</webtitle>
|
198 |
+
<webmail translate="label">
|
199 |
+
<label>Your Email Address</label>
|
200 |
+
<frontend_type>text</frontend_type>
|
201 |
+
<sort_order>18</sort_order>
|
202 |
+
<show_in_default>1</show_in_default>
|
203 |
+
<show_in_website>1</show_in_website>
|
204 |
+
<show_in_store>1</show_in_store>
|
205 |
+
<validate>validate-email</validate>
|
206 |
+
<comment>Enter Your Email Address.</comment>
|
207 |
+
</webmail>
|
208 |
+
<webmailtitle translate="label">
|
209 |
+
<label>Email Address Title</label>
|
210 |
+
<frontend_type>text</frontend_type>
|
211 |
+
<sort_order>19</sort_order>
|
212 |
+
<show_in_default>1</show_in_default>
|
213 |
+
<show_in_website>1</show_in_website>
|
214 |
+
<show_in_store>1</show_in_store>
|
215 |
+
<comment>Enter Email Address Title</comment>
|
216 |
+
</webmailtitle>
|
217 |
+
</fields>
|
218 |
+
</hsmediashare>
|
219 |
+
<mediasetting translate="label">
|
220 |
+
<label>Social Media Setting</label>
|
221 |
+
<frontend_type>text</frontend_type>
|
222 |
+
<sort_order>0</sort_order>
|
223 |
+
<show_in_default>1</show_in_default>
|
224 |
+
<show_in_website>1</show_in_website>
|
225 |
+
<show_in_store>1</show_in_store>
|
226 |
+
<fields>
|
227 |
+
<hsmedia_enabled translate="label">
|
228 |
+
<label>Enbaled HS social Media Plugin</label>
|
229 |
+
<frontend_type>select</frontend_type>
|
230 |
+
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
231 |
+
<sort_order>0</sort_order>
|
232 |
+
<show_in_default>1</show_in_default>
|
233 |
+
<show_in_website>1</show_in_website>
|
234 |
+
<show_in_store>1</show_in_store>
|
235 |
+
<comment>Enbaled Request For Quote</comment>
|
236 |
+
</hsmedia_enabled>
|
237 |
+
<jquery_yesno translate="label">
|
238 |
+
<label>Include Jquery</label>
|
239 |
+
<frontend_type>select</frontend_type>
|
240 |
+
<source_model>adminhtml/system_config_source_Yesno</source_model>
|
241 |
+
<sort_order>1</sort_order>
|
242 |
+
<show_in_default>1</show_in_default>
|
243 |
+
<show_in_website>1</show_in_website>
|
244 |
+
<show_in_store>1</show_in_store>
|
245 |
+
<comment>Enbaled Request For Quote</comment>
|
246 |
+
</jquery_yesno>
|
247 |
+
<buttonposition translate="label">
|
248 |
<label>Select Social Media Button Position</label>
|
249 |
<frontend_type>select</frontend_type>
|
250 |
<source_model>adminhtml/system_config_source_Diyoptions13865676036</source_model>
|
252 |
<show_in_default>1</show_in_default>
|
253 |
<show_in_website>1</show_in_website>
|
254 |
<show_in_store>1</show_in_store>
|
255 |
+
<comment>Enter Social Media Button Position</comment>
|
256 |
+
</buttonposition>
|
257 |
+
<buttonmargin translate="label">
|
258 |
<label>Social Media Button Margin Top</label>
|
259 |
+
<frontend_type>text</frontend_type>
|
260 |
<sort_order>3</sort_order>
|
261 |
<show_in_default>1</show_in_default>
|
262 |
<show_in_website>1</show_in_website>
|
263 |
<show_in_store>1</show_in_store>
|
264 |
+
<comment>Provide Margin in PX</comment>
|
265 |
+
</buttonmargin>
|
266 |
+
<buttoneffect translate="label">
|
267 |
<label>Social Media Button Effect</label>
|
268 |
<frontend_type>select</frontend_type>
|
269 |
<source_model>adminhtml/system_config_source_Diyoptions13865676038</source_model>
|
271 |
<show_in_default>1</show_in_default>
|
272 |
<show_in_website>1</show_in_website>
|
273 |
<show_in_store>1</show_in_store>
|
274 |
+
<comment>Select Effect</comment>
|
275 |
+
</buttoneffect>
|
276 |
+
</fields>
|
277 |
+
</mediasetting>
|
278 |
+
<aboutus translate="label">
|
279 |
+
<label>About Us</label>
|
280 |
+
<frontend_type>text</frontend_type>
|
281 |
+
<sort_order>3</sort_order>
|
282 |
+
<show_in_default>1</show_in_default>
|
283 |
+
<show_in_website>1</show_in_website>
|
284 |
+
<show_in_store>1</show_in_store>
|
285 |
+
<fields>
|
286 |
+
<info>
|
287 |
+
<frontend_model>hssocialmedia/about</frontend_model>
|
288 |
+
<sort_order>10</sort_order>
|
289 |
<show_in_default>1</show_in_default>
|
290 |
<show_in_website>1</show_in_website>
|
291 |
<show_in_store>1</show_in_store>
|
292 |
+
</info>
|
293 |
+
</fields>
|
294 |
+
</aboutus>
|
295 |
+
</groups>
|
296 |
+
</hsmedia>
|
297 |
+
</sections>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
</config>
|
app/design/frontend/default/default/template/hssocialmedia/hsmedia.phtml
CHANGED
@@ -1,75 +1,117 @@
|
|
1 |
-
<?php if(Mage::helper('hssocialmedia')->getModuleStatus()!=0)
|
2 |
-
<?php if(Mage::helper('hssocialmedia')->getJsStatus()!=0) :
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
<?php
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
24 |
</span>
|
25 |
</a>
|
26 |
-
|
27 |
-
|
28 |
-
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getLinkidinUrl()?>"
|
29 |
-
|
30 |
-
|
|
|
|
|
31 |
</span>
|
32 |
</a>
|
33 |
-
|
34 |
-
|
35 |
-
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getTwitterUrl()?>"
|
36 |
-
|
37 |
-
|
|
|
|
|
38 |
</span>
|
39 |
</a>
|
40 |
-
|
41 |
-
|
42 |
-
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getYoutubeUrl()?>"
|
43 |
-
|
44 |
-
|
|
|
|
|
45 |
</span>
|
46 |
</a>
|
47 |
-
|
48 |
-
|
49 |
-
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getGoogleUrl()?>"
|
50 |
-
|
51 |
-
|
|
|
|
|
52 |
</span>
|
53 |
</a>
|
54 |
-
|
55 |
-
|
56 |
-
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getPinterestUrl()?>"
|
57 |
-
|
58 |
-
|
|
|
|
|
59 |
</span>
|
60 |
</a>
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
});
|
69 |
-
|
70 |
-
|
71 |
-
|
|
|
72 |
});
|
73 |
});
|
74 |
-
|
75 |
-
|
|
1 |
+
<?php if (Mage::helper('hssocialmedia')->getModuleStatus() != 0) : ?>
|
2 |
+
<?php if (Mage::helper('hssocialmedia')->getJsStatus() != 0) :
|
3 |
+
?>
|
4 |
+
<script src="<?php echo $this->getSkinUrl('js/hsmedia/jquery.js'); ?>"></script>
|
5 |
+
<script src="<?php echo $this->getSkinUrl('js/hsmedia/hssocial.js'); ?>"></script>
|
6 |
+
<?php else: ?>
|
7 |
+
<script src="<?php echo $this->getSkinUrl('js/hsmedia/hssocial.js'); ?>"></script>
|
8 |
+
<?php endif; ?>
|
9 |
+
<?php if (Mage::helper('hssocialmedia')->getButtonPosition() == 2) : ?>
|
10 |
+
<link rel="stylesheet" type="text/css" href="<?php echo $this->getSkinUrl('css/hsmedia/hsmedia-left.css'); ?>"
|
11 |
+
media="all"/>
|
12 |
+
<?php endif; ?>
|
13 |
+
<?php
|
14 |
+
if (Mage::helper('hssocialmedia')->getMargin() != ''):
|
15 |
+
$margin = "style=margin-top:" . Mage::helper('hssocialmedia')->getMargin() . "px";
|
16 |
+
else :
|
17 |
+
$margin = "";
|
18 |
+
endif;
|
19 |
+
?>
|
20 |
+
<div class="social-icons" <?php echo $margin; ?>>
|
21 |
+
<?php if (Mage::helper('hssocialmedia')->getFacebookUrl() != ''): ?>
|
22 |
+
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getFacebookUrl(); ?>"
|
23 |
+
id="facebook-btn">
|
24 |
+
<span class="social-icon">
|
25 |
+
<span
|
26 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getFacebookTitle()) ?></span>
|
27 |
</span>
|
28 |
</a>
|
29 |
+
<?php endif; ?>
|
30 |
+
<?php if (Mage::helper('hssocialmedia')->getLinkidinUrl() != ''): ?>
|
31 |
+
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getLinkidinUrl() ?>"
|
32 |
+
id="linkedin-btn">
|
33 |
+
<span class="social-icon">
|
34 |
+
<span
|
35 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getLinkidinTitle()) ?></span>
|
36 |
</span>
|
37 |
</a>
|
38 |
+
<?php endif; ?>
|
39 |
+
<?php if (Mage::helper('hssocialmedia')->getTwitterUrl() != ''): ?>
|
40 |
+
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getTwitterUrl() ?>"
|
41 |
+
id="twitter-btn">
|
42 |
+
<span class="social-icon">
|
43 |
+
<span
|
44 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getTwitterTitle()) ?></span>
|
45 |
</span>
|
46 |
</a>
|
47 |
+
<?php endif; ?>
|
48 |
+
<?php if (Mage::helper('hssocialmedia')->getYoutubeUrl() != ''): ?>
|
49 |
+
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getYoutubeUrl() ?>"
|
50 |
+
id="youtube-btn">
|
51 |
+
<span class="social-icon">
|
52 |
+
<span
|
53 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getYoutubeTitle()) ?></span>
|
54 |
</span>
|
55 |
</a>
|
56 |
+
<?php endif; ?>
|
57 |
+
<?php if (Mage::helper('hssocialmedia')->getGoogleUrl() != ''): ?>
|
58 |
+
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getGoogleUrl() ?>"
|
59 |
+
id="google-btn">
|
60 |
+
<span class="social-icon">
|
61 |
+
<span
|
62 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getGoogleTitle()) ?></span>
|
63 |
</span>
|
64 |
</a>
|
65 |
+
<?php endif; ?>
|
66 |
+
<?php if (Mage::helper('hssocialmedia')->getPinterestUrl() != ''): ?>
|
67 |
+
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getPinterestUrl() ?>"
|
68 |
+
id="pintrest-btn">
|
69 |
+
<span class="social-icon">
|
70 |
+
<span
|
71 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getPinterestTitle()) ?></span>
|
72 |
</span>
|
73 |
</a>
|
74 |
+
<?php endif; ?>
|
75 |
+
<?php if (Mage::helper('hssocialmedia')->getInstagramUrl() != ''): ?>
|
76 |
+
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getInstagramUrl() ?>"
|
77 |
+
id="instagram-btn">
|
78 |
+
<span class="social-icon">
|
79 |
+
<span
|
80 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getInstagramTitle()) ?></span>
|
81 |
+
</span>
|
82 |
+
</a>
|
83 |
+
<?php endif; ?>
|
84 |
+
<?php if (Mage::helper('hssocialmedia')->getFlickrUrl() != ''): ?>
|
85 |
+
<a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getFlickrUrl() ?>"
|
86 |
+
id="flickr-btn">
|
87 |
+
<span class="social-icon">
|
88 |
+
<span
|
89 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getFlickrTitle()) ?></span>
|
90 |
+
</span>
|
91 |
+
</a>
|
92 |
+
<?php endif; ?>
|
93 |
+
<?php if (Mage::helper('hssocialmedia')->getMailUrl() != ''): ?>
|
94 |
+
<a class="socialitems" target="_blank" href="mailto:<?php echo Mage::helper('hssocialmedia')->getMailUrl() ?>"
|
95 |
+
id="mail-btn">
|
96 |
+
<span class="social-icon">
|
97 |
+
<span
|
98 |
+
class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getMailTitle()) ?></span>
|
99 |
+
</span>
|
100 |
+
</a>
|
101 |
+
<?php endif; ?>
|
102 |
+
</div>
|
103 |
+
<script>
|
104 |
+
$mtkb(window).load(function () {
|
105 |
+
$mtkb('.social-icons .social-icon').mouseenter(function () {
|
106 |
+
$mtkb(this).stop();
|
107 |
+
$mtkb(this).animate({width: '160'}, 500, '<?php echo Mage::helper('hssocialmedia')->getEffect();?>', function () {
|
108 |
});
|
109 |
+
});
|
110 |
+
$mtkb('.social-icons .social-icon').mouseleave(function () {
|
111 |
+
$mtkb(this).stop();
|
112 |
+
$mtkb(this).animate({width: '43'}, 500, '<?php echo Mage::helper('hssocialmedia')->getEffect();?>', function () {
|
113 |
});
|
114 |
});
|
115 |
+
});
|
116 |
+
</script>
|
117 |
+
<?php endif; ?>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Helios_Hssocialmedia</name>
|
4 |
-
<version>0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
@@ -9,11 +9,11 @@
|
|
9 |
<summary>Helios solutions provide you a social follow buttons to get more fans and followers.</summary>
|
10 |
<description>Helios solutions provide you a social follow buttons to get more fans and followers for your social media profiles on Facebook, Twitter, and other popular social networks. Helios social follow buttons work on your site, blogs, and even newsletters.</description>
|
11 |
<notes>This is second stable Version.
|
12 |
-
We
|
13 |
<authors><author><name>Helios</name><user>auto-converted</user><email>hsmagento.support@heliossolutions.in</email></author></authors>
|
14 |
-
<date>2014-01-
|
15 |
-
<time>
|
16 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Helios_Hssocialmedia.xml" hash="0a049f59ac3553d3a7d6f18eb6f14533"/></dir></target><target name="magecommunity"><dir name="Helios"><dir name="Hssocialmedia"><dir name="Block"><file name="About.php" hash="0da9597fdd450a22c05da7dfbc31684b"/><file name="Index.php" hash="6a01edcbc1227fdad2a96447c8e10315"/></dir><dir name="Helper"><file name="Data.php" hash="
|
17 |
<compatible/>
|
18 |
<dependencies/>
|
19 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Helios_Hssocialmedia</name>
|
4 |
+
<version>0.2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>Helios solutions provide you a social follow buttons to get more fans and followers.</summary>
|
10 |
<description>Helios solutions provide you a social follow buttons to get more fans and followers for your social media profiles on Facebook, Twitter, and other popular social networks. Helios social follow buttons work on your site, blogs, and even newsletters.</description>
|
11 |
<notes>This is second stable Version.
|
12 |
+
We Include New Social Media Buttons like FIickr, Mail To, Go to and Instagram.</notes>
|
13 |
<authors><author><name>Helios</name><user>auto-converted</user><email>hsmagento.support@heliossolutions.in</email></author></authors>
|
14 |
+
<date>2014-01-24</date>
|
15 |
+
<time>14:39:54</time>
|
16 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Helios_Hssocialmedia.xml" hash="0a049f59ac3553d3a7d6f18eb6f14533"/></dir></target><target name="magecommunity"><dir name="Helios"><dir name="Hssocialmedia"><dir name="Block"><file name="About.php" hash="0da9597fdd450a22c05da7dfbc31684b"/><file name="Index.php" hash="6a01edcbc1227fdad2a96447c8e10315"/></dir><dir name="Helper"><file name="Data.php" hash="3f3cee8ad72fcd3d3a762e37163abbb8"/></dir><dir name="controllers"><file name="IndexController.php" hash="6f9cca6aafc998b60757435c31dfaabe"/></dir><dir name="etc"><file name="adminhtml.xml" hash="575b9f0b79558b2b2f2031fc15001f16"/><file name="config.xml" hash="3ecd9f22c8bd0678eeb60ef8ff1636b7"/><file name="system.xml" hash="e63318b0a7b62ae6eddb2628f61ee236"/></dir></dir></dir><dir name="Mage"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Diyoptions13865676036.php" hash="144fc288e3ecae18bdc245faaf750f2a"/><file name="Diyoptions13865676038.php" hash="ec48d10ca816dbca0c79ff2db0a52798"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="hssocialmedia.xml" hash="e8047c8cf24c2d4f929cc59c76cd62d4"/></dir><dir name="template"><dir name="hssocialmedia"><file name="hsmedia.phtml" hash="fa7f9cafee4dea5567ac1295aeaa7400"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="hsmedia"><file name="hsmedia-left.css" hash="7fea46378be04e30b35b75a922d4e04b"/><file name="hsmedia.css" hash="b0332cc0f180f184cb588dc2ea490c88"/></dir></dir><dir name="images"><file name="social-icons.png" hash="a0bb6cc5bdd04685a1fb50b56ff593d8"/><file name="social-icons-left.png" hash="6b1a84fe8664437bfe5a05a0c5587199"/></dir><dir name="js"><dir name="hsmedia"><file name="hssocial.js" hash="949830ef9759e0208a2f39f1953fff14"/><file name="jquery.js" hash="4385e689716cb278c892b26cfde8a3c4"/></dir></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies/>
|
19 |
</package>
|
skin/frontend/default/default/css/hsmedia/hsmedia-left.css
CHANGED
@@ -35,7 +35,18 @@ text-decoration:none;
|
|
35 |
#google-btn span {
|
36 |
background-position: 12px -127px;
|
37 |
}
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
.social-icon {
|
40 |
transition: background-color 0.4s ease-in 0s;
|
41 |
-webkit-transition: background-color 0.4s ease-in 0s;
|
@@ -67,7 +78,19 @@ background-color: #DB4A39;
|
|
67 |
#youtube-btn:hover .social-icon {
|
68 |
background-color: #C4302B;
|
69 |
}
|
70 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
display:inline;
|
72 |
}
|
73 |
.social-text {
|
35 |
#google-btn span {
|
36 |
background-position: 12px -127px;
|
37 |
}
|
38 |
+
#instagram-btn span {
|
39 |
+
background-position: 10px -300px;
|
40 |
+
}
|
41 |
+
#flickr-btn span {
|
42 |
+
background-position: 10px -335px;
|
43 |
+
}
|
44 |
+
#web-btn span {
|
45 |
+
background-position: 10px -403px;
|
46 |
+
}
|
47 |
+
#mail-btn span {
|
48 |
+
background-position: 10px -369px;
|
49 |
+
}
|
50 |
.social-icon {
|
51 |
transition: background-color 0.4s ease-in 0s;
|
52 |
-webkit-transition: background-color 0.4s ease-in 0s;
|
78 |
#youtube-btn:hover .social-icon {
|
79 |
background-color: #C4302B;
|
80 |
}
|
81 |
+
#instagram-btn:hover .social-icon {
|
82 |
+
background-color: #D2C5B3;
|
83 |
+
}
|
84 |
+
#flickr-btn:hover .social-icon {
|
85 |
+
background-color: #E4006B;
|
86 |
+
}
|
87 |
+
#web-btn:hover .social-icon {
|
88 |
+
background-color: #000;
|
89 |
+
}
|
90 |
+
#mail-btn:hover .social-icon {
|
91 |
+
background-color: #2A056F;
|
92 |
+
}
|
93 |
+
#instagram-btn:hover .social-text,#twitter-btn:hover .social-text ,#linkedin-btn:hover .social-text,#facebook-btn:hover .social-text ,#youtube-btn:hover .social-text,#pintrest-btn:hover .social-text ,#google-btn:hover .social-text,#flickr-btn:hover .social-text ,#web-btn:hover .social-text,#mail-btn:hover .social-text {
|
94 |
display:inline;
|
95 |
}
|
96 |
.social-text {
|
skin/frontend/default/default/css/hsmedia/hsmedia.css
CHANGED
@@ -28,7 +28,18 @@
|
|
28 |
#google-btn span {
|
29 |
background-position: 12px -127px;
|
30 |
}
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
.social-icon {
|
33 |
transition: background-color 0.4s ease-in 0s;
|
34 |
-webkit-transition: background-color 0.4s ease-in 0s;
|
@@ -60,6 +71,18 @@ background-color: #DB4A39;
|
|
60 |
#youtube-btn:hover .social-icon {
|
61 |
background-color: #C4302B;
|
62 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
.social-text {
|
64 |
float: left;
|
65 |
font-size: 11px;
|
@@ -68,4 +91,4 @@ background-color: #C4302B;
|
|
68 |
white-space: nowrap;
|
69 |
color: #FFFFFF;
|
70 |
font-family: Arial;
|
71 |
-
}
|
28 |
#google-btn span {
|
29 |
background-position: 12px -127px;
|
30 |
}
|
31 |
+
#instagram-btn span {
|
32 |
+
background-position: 10px -300px;
|
33 |
+
}
|
34 |
+
#flickr-btn span {
|
35 |
+
background-position: 10px -335px;
|
36 |
+
}
|
37 |
+
#web-btn span {
|
38 |
+
background-position: 10px -403px;
|
39 |
+
}
|
40 |
+
#mail-btn span {
|
41 |
+
background-position: 10px -369px;
|
42 |
+
}
|
43 |
.social-icon {
|
44 |
transition: background-color 0.4s ease-in 0s;
|
45 |
-webkit-transition: background-color 0.4s ease-in 0s;
|
71 |
#youtube-btn:hover .social-icon {
|
72 |
background-color: #C4302B;
|
73 |
}
|
74 |
+
#instagram-btn:hover .social-icon {
|
75 |
+
background-color: #D2C5B3;
|
76 |
+
}
|
77 |
+
#flickr-btn:hover .social-icon {
|
78 |
+
background-color: #E4006B;
|
79 |
+
}
|
80 |
+
#web-btn:hover .social-icon {
|
81 |
+
background-color: #000;
|
82 |
+
}
|
83 |
+
#mail-btn:hover .social-icon {
|
84 |
+
background-color: #2A056F;
|
85 |
+
}
|
86 |
.social-text {
|
87 |
float: left;
|
88 |
font-size: 11px;
|
91 |
white-space: nowrap;
|
92 |
color: #FFFFFF;
|
93 |
font-family: Arial;
|
94 |
+
}
|
skin/frontend/default/default/images/social-icons-left.png
CHANGED
Binary file
|
skin/frontend/default/default/images/social-icons.png
CHANGED
Binary file
|