Helios_Hssocialmedia - Version 0.2.0

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 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.1.2</version>
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
- <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
- <comment>Enter Facebook URL like https://www.facebook.com</comment>
35
- </facebookurl>
36
- <facebooktitle translate="label">
 
37
  <label>Facebook Title</label>
38
- <frontend_type>text</frontend_type>
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
- <comment>Enter Facebook Title </comment>
44
- </facebooktitle>
45
- <linkedinurl translate="label">
46
  <label>Linkedin URL</label>
47
- <frontend_type>text</frontend_type>
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
- <comment>Enter Linkedin URL like https://www.linkedin.com</comment>
53
- </linkedinurl>
54
- <linkedintitle translate="label">
 
55
  <label>Linkedin Title</label>
56
- <frontend_type>text</frontend_type>
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
- <comment>Enter Linkedin Title</comment>
62
- </linkedintitle>
63
- <twitterurl translate="label">
64
  <label>Twitter URL</label>
65
- <frontend_type>text</frontend_type>
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
- <comment>Enter Twitter URL like https://www.twitter.com</comment>
71
- </twitterurl>
72
- <twittertitle translate="label">
 
73
  <label>Twitter Title</label>
74
- <frontend_type>text</frontend_type>
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
- <comment>Enter Twitter Title</comment>
80
- </twittertitle>
81
- <youtubeurl translate="label">
82
  <label>Youtube URL</label>
83
- <frontend_type>text</frontend_type>
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
- <comment>Enter Youtube URL like https://www.youtube.com</comment>
89
- </youtubeurl>
90
- <youtubetitle translate="label">
 
91
  <label>Youtube Title</label>
92
- <frontend_type>text</frontend_type>
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
- <comment>Enter Youtube Title</comment>
98
- </youtubetitle>
99
- <googleplusurl translate="label">
100
  <label>Google + URL</label>
101
- <frontend_type>text</frontend_type>
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
- <comment>Enter Google + URL like https://www.plus.google.com</comment>
107
- </googleplusurl>
108
- <googleplustitle translate="label">
 
109
  <label>Google + Title</label>
110
- <frontend_type>text</frontend_type>
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
- <comment>Enter Google + Title</comment>
116
- </googleplustitle>
117
- <pinteresturl translate="label">
118
  <label>Pinterest URL</label>
119
- <frontend_type>text</frontend_type>
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
- <comment>Enter Pinterest URL like https://www.plus.pinterest.com</comment>
125
- </pinteresturl>
126
- <pinteresttitle translate="label">
 
127
  <label>Pinterest Title</label>
128
- <frontend_type>text</frontend_type>
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
- <comment>Enter Pinterest Title</comment>
134
- </pinteresttitle>
135
- </fields>
136
- </hsmediashare>
137
- <mediasetting translate="label">
138
- <label>Social Media Setting</label>
139
- <frontend_type>text</frontend_type>
140
- <sort_order>0</sort_order>
141
- <show_in_default>1</show_in_default>
142
- <show_in_website>1</show_in_website>
143
- <show_in_store>1</show_in_store>
144
- <fields>
145
- <hsmedia_enabled translate="label">
146
- <label>Enbaled HS social Media Plugin</label>
147
- <frontend_type>select</frontend_type>
148
- <source_model>adminhtml/system_config_source_enabledisable</source_model>
149
- <sort_order>0</sort_order>
150
- <show_in_default>1</show_in_default>
151
- <show_in_website>1</show_in_website>
152
- <show_in_store>1</show_in_store>
153
- <comment>Enbaled Request For Quote</comment>
154
- </hsmedia_enabled>
155
- <jquery_yesno translate="label">
156
- <label>Include Jquery</label>
157
- <frontend_type>select</frontend_type>
158
- <source_model>adminhtml/system_config_source_Yesno</source_model>
159
- <sort_order>1</sort_order>
160
- <show_in_default>1</show_in_default>
161
- <show_in_website>1</show_in_website>
162
- <show_in_store>1</show_in_store>
163
- <comment>Enbaled Request For Quote</comment>
164
- </jquery_yesno>
165
- <buttonposition translate="label">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
- <comment>Enter Social Media Button Position</comment>
174
- </buttonposition>
175
- <buttonmargin translate="label">
176
  <label>Social Media Button Margin Top</label>
177
- <frontend_type>text</frontend_type>
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
- <comment>Provide Margin in PX</comment>
183
- </buttonmargin>
184
- <buttoneffect translate="label">
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
- <comment>Select Effect</comment>
193
- </buttoneffect>
194
- </fields>
195
- </mediasetting>
196
- <aboutus translate="label">
197
- <label>About Us</label>
198
- <frontend_type>text</frontend_type>
199
- <sort_order>3</sort_order>
 
 
 
 
 
 
 
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
- <fields>
204
- <info>
205
- <frontend_model>hssocialmedia/about</frontend_model>
206
- <sort_order>10</sort_order>
207
- <show_in_default>1</show_in_default>
208
- <show_in_website>1</show_in_website>
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
- <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');?>" media="all" />
11
- <?php endif;?>
12
- <?php
13
- if(Mage::helper('hssocialmedia')->getMargin()!=''):
14
- $margin="style=margin-top:".Mage::helper('hssocialmedia')->getMargin()."px";
15
- else :
16
- $margin="";
17
- endif;
18
- ?>
19
- <div class="social-icons" <?php echo $margin;?>>
20
- <?php if(Mage::helper('hssocialmedia')->getFacebookUrl()!=''):?>
21
- <a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getFacebookUrl();?>" id="facebook-btn">
22
- <span class="social-icon">
23
- <span class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getFacebookTitle())?></span>
 
 
 
24
  </span>
25
  </a>
26
- <?php endif;?>
27
- <?php if(Mage::helper('hssocialmedia')->getLinkidinUrl()!=''):?>
28
- <a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getLinkidinUrl()?>" id="linkedin-btn">
29
- <span class="social-icon">
30
- <span class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getLinkidinTitle())?></span>
 
 
31
  </span>
32
  </a>
33
- <?php endif;?>
34
- <?php if(Mage::helper('hssocialmedia')->getTwitterUrl()!=''):?>
35
- <a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getTwitterUrl()?>" id="twitter-btn">
36
- <span class="social-icon">
37
- <span class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getTwitterTitle())?></span>
 
 
38
  </span>
39
  </a>
40
- <?php endif;?>
41
- <?php if(Mage::helper('hssocialmedia')->getYoutubeUrl()!=''):?>
42
- <a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getYoutubeUrl()?>" id="youtube-btn">
43
- <span class="social-icon">
44
- <span class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getYoutubeTitle())?></span>
 
 
45
  </span>
46
  </a>
47
- <?php endif;?>
48
- <?php if(Mage::helper('hssocialmedia')->getGoogleUrl()!=''):?>
49
- <a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getGoogleUrl()?>" id="google-btn">
50
- <span class="social-icon">
51
- <span class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getGoogleTitle())?></span>
 
 
52
  </span>
53
  </a>
54
- <?php endif;?>
55
- <?php if(Mage::helper('hssocialmedia')->getPinterestUrl()!=''):?>
56
- <a class="socialitems" target="_blank" href="<?php echo Mage::helper('hssocialmedia')->getPinterestUrl()?>" id="pintrest-btn">
57
- <span class="social-icon">
58
- <span class="social-text"><?php echo $this->__(Mage::helper('hssocialmedia')->getPinterestTitle())?></span>
 
 
59
  </span>
60
  </a>
61
- <?php endif;?>
62
- </div>
63
- <script>
64
- $mtkb(window).load(function(){
65
- $mtkb('.social-icons .social-icon').mouseenter(function(){
66
- $mtkb(this).stop();
67
- $mtkb(this).animate({width:'160'}, 500, '<?php echo Mage::helper('hssocialmedia')->getEffect();?>',function(){});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  });
69
- $mtkb('.social-icons .social-icon').mouseleave(function(){
70
- $mtkb(this).stop();
71
- $mtkb(this).animate({width:'43'}, 500, '<?php echo Mage::helper('hssocialmedia')->getEffect();?>',function(){});
 
72
  });
73
  });
74
- </script>
75
- <?php endif;?>
 
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.1.2</version>
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.&#xD;
12
- We remove the dependency to include file in header.phtml file.</notes>
13
  <authors><author><name>Helios</name><user>auto-converted</user><email>hsmagento.support@heliossolutions.in</email></author></authors>
14
- <date>2014-01-21</date>
15
- <time>03:28:08</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="f408972266611ad0d6403ef31f42f3b3"/></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="f86f497fdb6dd7c75a29414d0cc7d419"/><file name="system.xml" hash="b622a3c5e037f935dcda84be9a02f729"/></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="32f4d788500fab1d908b55484342fcb3"/></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="7e628ed582d10bb51cfa440f67a3b8b2"/><file name="hsmedia.css" hash="f12abc3c060a069c9488089d9e0604eb"/></dir></dir><dir name="images"><file name="social-icons.png" hash="83525bd27cae8ad3375736490ae0878f"/><file name="social-icons-left.png" hash="086828c3a91ded20262c08c9d1900edc"/></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>
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.&#xD;
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
- #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 {
 
 
 
 
 
 
 
 
 
 
 
 
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