Jump to content

How Can Edit Social Networking Block V1.2.1


Recommended Posts

Hello,

 

How can edit Social Networking Block Modules.When I'm in the B/O> Social Networking Block v1.2.1>Configure. I have added URL links to both Pinterest and YouTube. But there is no Social links that show up in the footer.  I would also like to how I can change the Social media buttons. Please let me know if this can be done? 

 

Natebc

post-358095-0-28513900-1453086957_thumb.jpg

post-358095-0-34450400-1453086958_thumb.jpg

Link to comment
Share on other sites

Hello,

 

How can edit Social Networking Block Modules.When I'm in the B/O> Social Networking Block v1.2.1>Configure. I have added URL links to both Pinterest and YouTube. But there is no Social links that show up in the footer.  I would also like to how I can change the Social media buttons. Please let me know if this can be done? 

 

Natebc

 

At first this was the same for me when adding additional URL's to Social block the icons did not show in the footer.

So after turning cache OFF and Force Compile to ON Clearing cache all icons show, did you try this.

  • Like 1
Link to comment
Share on other sites

At first this was the same for me when adding additional URL's to Social block the icons did not show in the footer.

So after turning cache OFF and Force Compile to ON Clearing cache all icons show, did you try this.

 

 

Hi tdr170, I will try that and let you all know. Dose any one of you know how to change the buttons?

 

Natebc

Link to comment
Share on other sites

Hi Nemo1 and tdr170,

 

So I tried the turning cache OFF and Force Compile to ON. The new links work now and you see the new buttons/icons on the footer. Dose any one of you know where the buttons/icons are saved? I would link to change them.

 

Thanks

Natebc

Link to comment
Share on other sites

They are not saved buttons or images but Fontawsome fonts you can find a complete list here

 

http://fortawesome.github.io/Font-Awesome/icons/

 

Then once you find the icon you like in the top section look for the unicode   Example:  Unicode: f230      This is a Facebook code.

Copy the code and replace it in the global.css file should be around line 7360 in the .footer-container section.

 

change this:

          .footer-container #footer #social_block ul li.facebook a:before {

 

            content: "\f09a"; }
 
like this (or your code)
          .footer-container #footer #social_block ul li.facebook a:before {
            content: "\f230"; }

 

You will need to do this for each social block you want to change the icon for.

 

 

​Then snazzy is up a little by adding a text shadow with this code   text-shadow: 1px 1px 0px #fff;     add this to the section as below around line 7341.

As you can see I have changed the color to blue and added the text shadow, you can change either color to your liking.

 

 .footer-container #footer #social_block ul li a {

            display: inline-block;
            color:blue;
            font-size: 32px;
            text-shadow: 1px 1px 0px #fff; }
  • Like 1
Link to comment
Share on other sites

 

They are not saved buttons or images but Fontawsome fonts you can find a complete list here

 

http://fortawesome.github.io/Font-Awesome/icons/

 

Then once you find the icon you like in the top section look for the unicode   Example:  Unicode: f230      This is a Facebook code.

Copy the code and replace it in the global.css file should be around line 7360 in the .footer-container section.

 

change this:

          .footer-container #footer #social_block ul li.facebook a:before {

 

            content: "\f09a"; }
 
like this (or your code)
          .footer-container #footer #social_block ul li.facebook a:before {
            content: "\f230"; }

 

You will need to do this for each social block you want to change the icon for.

 

 

​Then snazzy is up a little by adding a text shadow with this code   text-shadow: 1px 1px 0px #fff;     add this to the section as below around line 7341.

As you can see I have changed the color to blue and added the text shadow, you can change either color to your liking.

 

 .footer-container #footer #social_block ul li a {

            display: inline-block;
            color:blue;
            font-size: 32px;
            text-shadow: 1px 1px 0px #fff; }

 

 

 

Hi tdr170,

 

Thanks for the reply and info. I had no idea that they where Fontawsome fonts. That explains why I can't find any information on this. I would like to use our own buttons / images. would you know of any free Modules that will allow us to do that?

 

Thanks for the help

Natebc

Link to comment
Share on other sites

For this you will need to upload the images, create a folder in the root named social and upload your images there.

Then in the global.css file instead of using the content "\f230";} you would change to background-image: url (see below)

 

Change this:

 

 .footer-container #footer #social_block ul li.facebook a:before {
            content: "\f082"; }

 

To This: (remove a:before-change to image url) obviously change url to your folder and image name.

 

 .footer-container #footer #social_block ul li.facebook  {          
            background-image: url("/social/facebook32.png");}
 
 
Now you will most likely need to edit the css for the image to show properly, in this case the image is 32x32px, added height  removed text-align and added margin-top.
 
Changed this:
.footer-container #footer #social_block ul li {
          float: left;
          width: 40px;
          text-align: center; }
 
To this:
.footer-container #footer #social_block ul li {
          float: left;
          width: 32px;
          height:32px;
          margin-top:-3px; }
Link to comment
Share on other sites

  • 4 months later...

Hi,

 

I have a similar issue with my social networking block in my front page (check: www.transmisionacardan.es).

 

I am able to see the facebook icon, but when I hover on it nothing happens (stays on grey). I checked the source code and a href  tag atribute points to the correct facebook link.

 

Best

 

 Apnow

Link to comment
Share on other sites

  • 5 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...