Hi adworks!
When you say menu type, are you talking about the font type of the menu items? You can use this on your Quick CSS:
.main_menu ul:first-child > li > a {
font-size: 13px;
font-family: 'Raleway', sans-serif;
}
Change the Raleway font to something else. Change the menu color using this:
.header_color .main_menu ul:first-child > li > a {
color: blue;
}
Best regards,
Ismael
Update – Had a chance to view on a tablet and the menu sits over the logo (on an ipad mini it was overlapping in both portrait and landscape). I’ve looked at so many solutions on here to what sound like similar issues but none work. It seems as though the menu is staying as-is until it resizes for mobile layout. At no point do I see the the dropdown for tablet.
Just in case my custom CSS is affecting this please see it below:
.main_menu ul:first-child>li a {
font-size: 16px!important;
}
#top .ls-wp-container { margin-top: 40px!important; }
.social_header .phone-info {
line-height: 12px;
font-size: 22px;
font-weight: bold;
}
body {
font-size: 15px;
}
.your-message textarea { height: 80px; }
.title_container .main-title {
margin: 0;
font-size: 30px;
position: relative;
z-index: 2;
min-height: 36px;
line-height: 2.3em;
top: 0;
font-weight: 400;
}
.js_active .tab { font-size: 22px;}
.tab {
background-color: black;
color: white;
}
Each element above has been taken from the corresponding forum solution for the required change.
Thanks
Mark
-
This reply was modified 12 years, 3 months ago by
MKW270210.
Hi!
You are welcome! Glad we could help :)
Cheers!
Yigit
It works ! yeeeaah ! You’re the best !
Thanks a lot Yigit !
Hey!
Please try adding following code to Quick CSS
#footer, #footer p, #footer a { font-size: 12px !important; }
That should work, if not please post a screenshot and we can try to help you out using it as a reference. If we cannot, we are going to need to wait until you launch your website
Regards,
Yigit
I wish I could but I’m working locally for the moment ! :(
I can come back later with this issue as soon as I’ll be able to send you a link… but that’s not soon.
If you can help before, if not, I’ll come back later !
Thanks anyway Yigit !
Marie
Hi marienoisette!
Can you post the link to your website?
Cheers!
Yigit
Hi !
Well it worked well before, but then I decided do increase a little the font size for main content.
Since then, in my footer, some widgets stayed at 12 and some turned to 14px… really strange.
Any idea ? Thanks !
Marie
My Quick CSS :
/* Font size change for main content */
body p, body {
font-size: 14px;
}
/* Font size footer change */
#footer { font-size: 12px !important; }
Hi, great theme but I’m having an issue with the main menu overlapping the logo when the browser window is resized. Our website doesn’t work like the demo on Themeforest. There is no switch in the menu until we are pretty much at mobile screen size. On the demo you lose the main menu and get the clickable menu box much sooner. In fact we don’t get that box at all.
We have set the menu font size at 17px in the Custom css using code from the support forum:
.main_menu ul:first-child>li a {
font-size: 16px!important;
}
We have tried some remedies given in the forum eg the solution suggested on Post (hash)134332 but nothing we have tried has worked. Using this solution we changes the 3 instances of ‘767’ to 867 and 967 but nothing changed at all. Everything in that particular suggestion has now been removed/changed back.
We have a property show running so really need to fix this and any help would be appreciated. The site is http://www.fbmproperty.co.uk
Thanks
Mark
-
This topic was modified 12 years, 3 months ago by
MKW270210.
Hey!
To change font size of job title, see H3 font size in my previous post and add following code to change its color
.main_color h3 { color: red; }
it will change color of all H3 elements using main color you can also use
.alternate_color h3 { color: blue; }
Blog titles are H2 elements, you can see font size in my previous post as well. You can add following code to Quick CSS to change color
#top h2 a { color: purple; }
Regards,
Yigit
Hey!
Default heading sizes are as following
h1 { font-size: 34px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
You can adjust them as needed
Best regards,
Yigit
For some reason, the styling from both applies to my #footer .widget title. Here is what it looks like in my custom.css:
#footer .widgettitle {
color: #E0DFFF !important;
margin-bottom: 21px;
font-weight: 900;
font-size:16px;
letter-spacing: 1px;
text-shadow:1px 1px 1px rgba(10,10,10,0.68);
text-transform: uppercase;
}
.widgettitle {
font-size: 16px;
background-color: rgb(51, 144, 145);
box-shadow: 0 8px 6px -6px black;
color:#fff !important;
text-shadow:1px 1px 1px rgba(10,10,10,0.68);
font-weight:bold;
padding: 11px 0 0 0px;
text-align: center;
border-radius: 7px !important;
padding-bottom: 12px;
text-transform: uppercase;
}
Hey!
I tested this rule and it works:
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description, .gform_wrapper .instruction {
font-size: 13px !important;
}
Try adding the !important rule.
Best regards,
Josue
Hi Josue,
Yes the heading is correct, but the paragraph text under each heading is different spacing, font etc.
.main_color .pricing-table.avia-desc-col .avia-pricing-row {
border-color: #e1e1e1;
font-size:10px !important;
}
.gform_wrapper .gform_heading .gform_title {text-transform:uppercase}
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description, .gform_wrapper .instruction {
clear: both;
letter-spacing: normal;
}
This works fine for me
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
text-transform: none;
letter-spacing: 1px;
}
h1 {font-size: 25px};
h2 {font-size: 20px;line-height: 1.1em;margin-bottom: 10px;}
h2 {font-size: 20px;line-height: 1.1em;margin-bottom: 10px;}
h3 {font-size: 17px};
h4 {font-size: 15px};
h5 {font-size: 12px};
h6 {font-size: 10px};
Sorry, I continue the thread again
Here is my previous thread
https://kriesi.at/support/topic/how-to-change-the-font-size-in-the-certain-part-of-a-page/
I barely check on chrome, the H2 span that given to me doesn’t work in chrome
The H2 font are all in uppercase
in Firefox, safari and IE it works just fine
Any idea? Thanks
Hi!
Enfold bietet diese Funktion nicht standardmäßig an, aber es gibt viele Plugins – zB http://wordpress.org/plugins/search.php?q=font+resize
Cheers!
Peter
it works, thanks a lot Ismael
Hi guys,
I’ve been trying to get the styling of my Gravity Forms to match the Enfold theme. The font, size and headings.
Here is the page with the form,
http://bit.ly/19Or1Jd
I’ve tried adding the following to the Custom CSS to see if it would work to change the Form title to uppercase, but it didn’t
.gform_wrapper .gform_heading .gform_title {text-transform:uppercase}
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description, .gform_wrapper .instruction {
clear: both;
letter-spacing: normal;
}
Could you please advise how to achieve this?
Many thanks,
Dave
-
This topic was modified 12 years, 3 months ago by
davemgraham.
Hi!
You can add this on your custom.css or Quick CSS:
h2 span {
text-transform: none;
font-weight: 300;
}
You can also add a special css selector for the heading then apply css modifications to it.
Best regards,
Ismael
Hi,
I’d like to change the fonts on my site. My favorite fonts are the following from Wunderlist.com. I copied some code from the site. I probably didn’t get the correct parts of the code. How can I change the fonts on my site to this, font type, weight, size, etc? Quick CSS? I don’t know much about coding so please speak slowly ;)
-webkit-font-smoothing: antialiased;
font-family: “proxima-nova-1″,”proxima-nova-2”,sans-serif;
margin-bottom: 20px;
font-size: 18px;
line-height: 28px;
font-weight: 300;
color: #414141;
I know about that but the heading style is too bold and if I use heading the text will be all in capital mode
Is there any way to just enlarge the body text? Thanks
Hey!
You can simply highlight the text and choose to display it as a heading element as shown here http://i.imgur.com/MWdNPVg.jpg
Cheers!
Yigit
like in here http://www.getushotel.com/
I want to enlarge this sentence:
“GetUsHotel memberikan jaminan harga terbaik!”
Is that possible?
Hi andri7luck!
Can you point out the font on demo site or on your website so we can provide you accurate custom CSS code?
Regards,
Yigit
Hello,
Please help
Is there any way to enlarge the font size in the certain part of a page?
For example in the middle or bottom of a page, I want to use larger font
FYI, I already read this post https://kriesi.at/support/topic/easily-change-font-sizes-enfold/
but I think my request bit different, kerin01 want to apply bigger font for whole page while I just want to apply it on certain area only.
Please help
Regards,
Andri
Hi dkiessling!
Your css needs to be more specific for the menu:
.main_menu ul:first-child > li > a {
font-size: 1em;
font-weight: bold;
font-family: Open Sans Condensed, Arial, Helvetica, sans-serif;
}
For the tabs, they aren’t targeting the tab classes so it would need to be more like:
#top.home .tab_titles .tab{
color: white;
}
#top.home .tab_counter_0 {
width: 150px;
background-color: #045783;
font-family: Open Sans Condensed, Arial, Helvetica, sans-serif;
color: white;
}
#top.home .tab_counter_1 {
width: 150px;
background-color: #faa61a;
font-family: Open Sans Condensed, Arial, Helvetica, sans-serif;
color: white;
}
#top.home .tab_counter_2 {
width: 150px;
background-color: #008a4b;
font-family: Open Sans Condensed, Arial, Helvetica, sans-serif;
color: white;
}
Regards,
Devin
Hi!
Please use this on Quick CSS:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.portfoliotypeheader {
letter-spacing: -2px;
font-weight: bold;
font-size: 40px;
line-height: 50px;
width: 100%;
display: block;
}
}
Regards,
Ismael