Placing social icons in a row instead of a column
Permalink 1 user found helpful
I'm wondering if it is possible to place the social icons in a row instead of a column.
I think i have to edit header.php but i'm not sure about that.
Who can help a starting concreter? :)
I think i have to edit header.php but i'm not sure about that.
Who can help a starting concreter? :)
What social icons are you referring to? Is it from an add-on or a theme? Have you added them yourself?
adajad is right we need to know more.
However, when it comes to aligning pictures, it's usually a question of css not something for Concrete5 to be responsible for
However, when it comes to aligning pictures, it's usually a question of css not something for Concrete5 to be responsible for
Its about the add-on social icons.
With this icon you can place all your social media links on your site.
http://www.concrete5.org/marketplace/addons/social-icons/...
The add-on places them on top off each other and i want them next to each other....
Oh and i installed with the market and the dashboard
With this icon you can place all your social media links on your site.
http://www.concrete5.org/marketplace/addons/social-icons/...
The add-on places them on top off each other and i want them next to each other....
Oh and i installed with the market and the dashboard
Hey there,
first, go read:
http://www.concrete5.org/documentation/how-tos/designers/custom-blo...
Read the text "Creating your new template folder structure".
This will prevent you from messing up the original add-on.
Then, open view.css of the social icons add-on and find "display: block;" for .block-socialprofiles li a then change it to "inline" and add "float: left".:
first, go read:
http://www.concrete5.org/documentation/how-tos/designers/custom-blo...
Read the text "Creating your new template folder structure".
This will prevent you from messing up the original add-on.
Then, open view.css of the social icons add-on and find "display: block;" for .block-socialprofiles li a then change it to "inline" and add "float: left".:
.block-socialprofiles li a { float: left; display: inline; color: #CCCCCC; font-size: 14px; padding: 8px 5px; text-decoration: none; border-bottom: 1px solid #ececec; }
Tnx so far but i cant find what youre telling from memmory ;)
Her is the contents of de css, wich part needs fixing?:
Her is the contents of de css, wich part needs fixing?:
/*************************************************************************
* Block stylesheet
* Originally developped by Defunct (http://www.concrete5.org/profile/-/view/2162/)
* Modified and enhanced by mnakalay (http://www.concrete5.org/profile/-/view/75201/)
* Class Names:
* - .large for 32px icons, no class name for 16px icons
* - .icons for links with icons only no class name for icons + text
* The links follow these conventions:
* - Width same as the container's width if using text.
* - Width depending on the number of icons if using only icons.
* For large icons:
* - Height of 44px.
* - Font-size 16px.
* For small icons:
* - Height of 40px.
Viewing 15 lines of 91 lines. View entire code block.
Just check above, I've extended my post and it works.
But from the code you pasted, it looks different than the view.css I just downloaded. Are we referring to the same Add-On? Or did you employ "Social Icons Reloaded"?
Well, anyway, same thing. Just change "block" to "inline" and add "float" to the classes of the links and it should work :-)
But from the code you pasted, it looks different than the view.css I just downloaded. Are we referring to the same Add-On? Or did you employ "Social Icons Reloaded"?
Well, anyway, same thing. Just change "block" to "inline" and add "float" to the classes of the links and it should work :-)
i will do some editing :) Looks promising.
Tnx
Tnx
I have a bunch of custom templates in the marketplace here:http://www.concrete5.org/marketplace/addons/performance-c5-custom-t...
and Im pretty sure I have that done already.
and Im pretty sure I have that done already.
Hi,
Think there is a problem here. The link you have provided is to the add-on "Social Icons" but the css you are showing is from the add-on "Social Icons reloaded" (http://www.concrete5.org/marketplace/addons/social-icons-reloaded/) which is a fork of the first one with more options.
If you are using "Social Icons Reloaded", by using the options to hide the text and show only the icons, they will be automatically aligned horizontally.
Other than that, advice you received so far about using using templates is correct.
Since I developped the "Social Icons Reloaded" add-on, if you're using it feel free to issue a request for support on the add-on page and I'll be happy to help.
Think there is a problem here. The link you have provided is to the add-on "Social Icons" but the css you are showing is from the add-on "Social Icons reloaded" (http://www.concrete5.org/marketplace/addons/social-icons-reloaded/) which is a fork of the first one with more options.
If you are using "Social Icons Reloaded", by using the options to hide the text and show only the icons, they will be automatically aligned horizontally.
Other than that, advice you received so far about using using templates is correct.
Since I developped the "Social Icons Reloaded" add-on, if you're using it feel free to issue a request for support on the add-on page and I'll be happy to help.