Jump to content

custom CMS icons


hainefaine

Recommended Posts

How can I change the red  round icons from Custom CMS Block module? 

 

I found in the source code

------------------------------------------------------------

<ul>
<li><em class="icon-truck" id="icon-truck"></em>
<div class="type-text">
<h3>Transport gratuit pentru cumparaturi peste 500 lei</h3>
<p>Lorem ipsum dolor sit amet conse ctetur voluptate velit esse cillum dolore eu</p>
</div>
</li>
<li><em class="icon-phone" id="icon-phone"></em>
<div class="type-text">
<h3>Dolor Sit Amet</h3>
<p>Lorem ipsum dolor sit amet conse ctetur voluptate velit esse cillum dolore eu</p>
</div>
</li>
<li><em class="icon-credit-card" id="icon-credit-card"></em>
<div class="type-text">
<h3>Ctetur Voluptate</h3>
<p>Lorem ipsum dolor sit amet conse ctetur voluptate velit esse cillum dolore eu</p>
</div>
</li>
</ul>
------------------------------------------
where can I find a list with icons name??

post-1434198-0-79441300-1504201192_thumb.jpg

Edited by hainefaine (see edit history)
Link to comment
Share on other sites

1) open this block in module

2) in text area select tools -> source code

There you can find <em class="icon-truck" id="icon-truck"></em>,<em class="icon-phone" id="icon-phone">, <em class="icon-credit-card" id="icon-credit-card"></em> - they are responsive for this icons

Link to comment
Share on other sites

1) open this block in module

2) in text area select tools -> source code

There you can find <em class="icon-truck" id="icon-truck"></em>,<em class="icon-phone" id="icon-phone">, <em class="icon-credit-card" id="icon-credit-card"></em> - they are responsive for this icons

i want to change them but i dont know what kind of icons set is used.

Link to comment
Share on other sites

but how can i change the icons size?

 

 

In the theme folder css in the file global.css
 
Need to find
 
#cmsinfo_block em {
    float: left;
    width: 60px;
    height: 60px;
    margin: 3px 10px 0 0;
    font-size: 30px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    background: #6f6d6d;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px; }

And change - font-size: 30px;

Link to comment
Share on other sites

 

In the theme folder css in the file global.css
 
Need to find
 
#cmsinfo_block em {
    float: left;
    width: 60px;
    height: 60px;
    margin: 3px 10px 0 0;
    font-size: 30px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    background: #6f6d6d;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px; }

And change - font-size: 30px;

 

changed to 20px, saved, cleared browser cache but no effect

Link to comment
Share on other sites

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...