ellp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Smpl Skeleton] Changing FontsHello!
You can force the theme use Georgia doing the follow:
Open your style.css file and add the line:
body{ font-family:Georgia, serif !important; }This code will change ALL TEXTS on your site to Georgia. If you want to change only paragraphs or titles you need to change the css selector properly.
Hope it helps.
Evandro
Forum: Themes and Templates
In reply to: Change background color of H4 based on linked page nameHello Kburrows!
Well, there is a easy way to do it and you will have more control about all the links. The solution name: fixed position 😉
But, if you want to use your actual map you can use the follow construction to change the collors as you like.
In the h4 element:
<h4 class="northwest"><a>...</a></h4>in the css file:
h4.nortwest a{ display:block; width: change-for-the-size-you-want-in-pixels; heigth: change-for the size you-want-in-pixels; background: change-for-the-color-you-want; }Do this for every sector of your map.
Just let me know if it helps 🙂
Hello!
Is a strange problem. First of all, did you try to re-install the wordpress? Make a clean install on your new hosting?
Second: you just change the domain name or did you change the hosting company also?
Forum: Themes and Templates
In reply to: [Montezuma] Social media on top right MontezumaHello again 🙂
Well, is not so easy to do it. To do that you will have to modify the header.php file, adding all links manually. After that you will need to style them using CSS.
But, you will have a problem. Your theme is responsive. It will be necessary a solution to display (or hide) those icons from your mobile visitors.
Hope it helps.
Evandro
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Child theme not showing changesHello!
Try a simple test: change the body color.
body{ background: red !important; }If the background change to red the problem is not your child theme, because it is loading the modified css. Its a good way to start to tracking down the issue.
Let me know if it helps.
Evandro
Forum: Themes and Templates
In reply to: [Theme: Unite] How to change post topic title size ?Hello!
You need to add in your css file:
h1.entry-title{ font-size:12px!important. }Let me know if it helps.
Evandro
Forum: Themes and Templates
In reply to: [Montezuma] Widget title and post/page title same height?Hello Zaralene!
You will need to change your style.css file. Find the follow lines:
.hentry > h1{ color: #13a89e; font-size: 50px; line-height: 45px; margin: 0 0 20px 0; }Here you need to change the line “font-size” and insert a value that you whant.
Then you need to change the line:
.widget > h3{ color: #13a89e; margin: 0 0 15px 0; font-size: 32px; line-height: 29px; }And change the font size to the same size as the previous code. And done 🙂
Let me know if it helps you.
Evandro
Forum: Themes and Templates
In reply to: [Customizr] Adding Payment Icons/ Changing color of menu fontsHello Jaydiz!
Well, to do that you will need to know some HTML and CSS.
I’ve tried to look at your site, but it isn’t load for me. It is running for you?
Thanks
Evandro
Forum: Themes and Templates
In reply to: Moving my Header Title onto one line rather than twoHello!
To solve this issue you need to change a couple lines on your style.css file.
On line 543 on your css file you will have someting like:
h1.site-title a{ text-decoration: none; font-weight: bold; font-size: 36px; color: #484848; display: block; margin: 20px 0px; }You need just add a line bellow margin:20px 0px:
width:1000px;Let me know if it’s helps.
Evandro.
Forum: Themes and Templates
In reply to: [Carton] How do I change the favicon?Hello Amy!
If you what to change the favicon, the best way is use a plugin like this one:
http://wordpress.org/plugins/custom-favicon/
Let me know if it’s helps.
My best,
Evandro
Forum: Plugins
In reply to: [Brazilian Market on WooCommerce] CNPJ and CPF values doesn't appearNice Claudio!
I’ve tested the plugin and is working. Question: there is a way to display those info (CPF, CNPJ, INSCRICAO ESTADUAL, etc.) on the purchase confirmation emails and in page purchase order?
Thanks
Forum: Plugins
In reply to: [WooCommerce] Problem with email notification in WoocommerceSame issue here… The system doesn’t send emails at all. I have 2 sites with the same problem. Any ideas to solve this issue?
Forum: Themes and Templates
In reply to: [MesoColumn] The featured sliders doesn't workWell try to leave some comment on the theme site
Forum: Themes and Templates
In reply to: [MesoColumn] The featured sliders doesn't workCheck the theme developer site.
Forum: Themes and Templates
In reply to: How do I make the main content container wider?Your theme uses a css framework (look ad the divs inside the content). You have to investigate the code to find out the best way to do it.