Hey Courin!
Edit header.php, find this code:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Below, add this code:
echo "<div class='header-search'>";
get_search_form();
echo "</div>";
Add this on your custom.css or Quick CSS:
.header-search {
position: absolute;
top: 30px;
left: 250px;
}
Modify the main menu font using this:
.header_color .main_menu ul:first-child > li > a {
color: red;
}
.main_menu ul:first-child > li > a {
display: block;
text-decoration: none;
padding: 0 13px;
font-weight: normal;
font-size: 15px;
}
Cheers!
Ismael
Hi,
Can you create an administrator account and post it here as a private reply?
Regards,
Josue
This reply has been marked as private.
Hey guys,
1. I have a little problem with created layersliders. I want to display them on my shop landing page. I use Enfold in combination with woocommerce. Because I can post any other content above the shop page, I cant find the reason why the sliders wont be displayed. The only thing is that I can see a frame in size of the slider which I have created and chosed. This frame is placed where the slider supposed to stand – but not displayed. If I post the same slider on another page its no problem. How can I fix this? I think its nothing special, but I’ve already tried different settings in layer slider, like different slider sizes and so on.
2. Whats the quick CSS Code, to disable the smaller getting logo if you scroll up page. It just happens sometimes, but I would like to have a fixed logo size all the time.
3. How can I change the colour of product variations font? I mean the window where you can choose the different variations for the main product. It seems a bit to bright for me.
4. Whats the Quick CSS Code, to get a equal font colour for prodcut variations title. Its always alternating from a darker colour to a brighter colour in the next row and so on.
5. Is there a possibilty to get logos in partner slider with link and transparent background? If I connect a link to the partner logo the transparent background disapears and a white background comes. Doesnt matter whether the logo is png8,24 or gif. As soon as I put a link to it the transparent background is gone….
6. I created a blog on my page. Unfortunately the blog pictures are always smaller than the fixed given picture frame. Is there a possibilty to set the background of blog page into simple white, to avoid that problem? The other pages should stay with the chosen background, just blog page should get a white background.
Thank you very much!!
milatch
Hi!
Glad it worked. Please don’t forget to remove browser cache then reload the page a few times to see the changes.
Regards,
Ismael
I’m getting the same. Doesn’t seem to be working.
* Disregard. Is working
-
This reply was modified 12 years, 2 months ago by
zerozendesign. Reason: change
Hi!
Please add following code to Quick CSS as well
#advanced_menu_toggle:after { content: 'Indice'; font-size: 15px; }
#advanced_menu_toggle:before { display: none; }
Best regards,
Yigit
Hey!
As i understand you do not want to change the font size only. If so, please go to wp-content\themes\enfold\config-templatebuilder\avia-shortcodes folder and open slideshow.php file and find h2 tag and change it to h1. It should be on 484th line http://i.imgur.com/EAtxqW8.jpg
Regards,
Yigit
Hey NaturaIntegrativeMedicine!
Please add following code to Quick CSS in Enfold theme options under Styling tab
body { font-size: 16px; }
as written here http://kriesi.at/documentation/enfold/change-the-default-font-size/
You can take a look at new Enfold documentation here http://kriesi.at/documentation/enfold/
Regards,
Yigit
-
This reply was modified 12 years, 2 months ago by
Yigit.
Hello again,
Thanks for all your help!
How do I change the SIZE of the text on the body of my site? I see under Theme Options > Styling that I can change the font itself, but where can I make it bigger/smaller?
Cheers.
Hi!
You can change font size by adding following code to Quick CSS
.home li.slide-1 h1 { font-size: 25px; }
Cheers!
Yigit
Hey!
Sure, you can simply add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
.main_menu ul:first-child>li>a { font-size: 17px; }
Cheers!
Yigit
Hi Yigit,
I can’t seem to figure out how to change the main menu’s font size. Can you please tell me the code for that?
Thanks!
Hi!
These are for screen width starting from 1920px down to 786px. Then menu switches to mobile menu. Menu font size was smaller previously that is why you should remove this line right: 30%; as i mentioned in my previous post.
After applying the code, please flush browser cache and refresh your page a few times
Regards,
Yigit
Hey!
1) You should try the solution under “Fonts not loading in Firefox or IE9”
2) You are going to need to modify the custom CSS code depending on the tallest box in that case. CSS code can be applied only on certain screen sizes.If that is what you would like to achieve, you can use something like
@media only screen and (min-width: 767px) and (max-width: 989px) {
.iconbox_top .iconbox_content { min-height: 190px; } }
so it will be applied on screens that are wider than 767px and smaller than 989px. You can adjust it as needed
3) Yes, you should add the code Josue posted there
4) Have you checked your website on another computer? If not, please try it
Regards,
Yigit
Hi!
Please add following code to Quick CSS as well
.main_menu { right: 30%;
top: 42%; }
.main_menu .menu ul { top: 65%; }
then you can increase the font size with following code
.main_menu ul:first-child > li > a { font-size: 16px; }
Regards,
Yigit
Hi!
The mega menu structure is still not correct. You must some empty items (which just contain a dash – instead of a title) to the second level and then drag your other menu items to the right (third menu level). The empty items create new columns and the dash prevents WordPress from showing the column titles. The structure must look like

Note that the second level items (which just use a dash – as title) will not show up in the menu. You can use any custom links or pages for these menu items.
Cheers!
Peter
I’m confused. If I un check mega menu, the drop down is vertical. I want the sub menu to be like the demo when you hover over shortcodes. How do I achieve that?
Hey!
You can remove the breadcrumb using this on Enfold > Styling > Quick CSS:
.breadcrumb.breadcrumbs.avia-breadcrumbs {
display: none;
}
To change the button to circle, first, you need to add a unique selector for each Avia Elements. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_template_builder_custom_css');
Edit any avia elements like Buttons then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-button”.
You can add something like this on your custom.css or Quick CSS:
.awesome-button .avia-button {
border-radius: 40px;
padding: 20px;
font-size: 12px;
text-decoration: none;
display: inline-block;
border-bottom-style: solid;
border-bottom-width: 1px;
margin: 3px 0;
line-height: 0;
position: relative;
font-weight: normal;
text-align: center;
width: 40px;
min-width: 40px !important;
}
Regards,
Ismael
Hey!
According to the screenshot provided they are set as Mega Menu, try unchecking the “Use as a Mega Menu” option in the parent element.
Best regards,
Josue
Hey!
You can upload your screenshots on imgur.com or Dropbox and post the links here
Regards,
Yigit
I got your email. My sub menus were already set exactly as the link shows.
Is there a way for me to send you a screenshot?
Hey totofunk!
You can clear out the styles by adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.special_amp {
font-family: inherit;
font-style: normal;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
color: inherit !important;
}
Or in the functions-enfold.php you can comment out the avia_ampersand function.
Best regards,
Devin
Looks like you are having the same issue as in this topic: https://kriesi.at/support/topic/maga-menu/#post-203932
The menu structure just needs to be adjusted so that those aren’t at the column header level and instead are on level down to be the actual sub menu items.
Devin,
here’s the link
http://muse2.easterndrive.com/
thanks
Hey gdeadtoo!
Can we see the site and error live? By default this isn’t the case.
Cheers!
Devin
I’ve configured a layerslider with a div layer that contains text and the positioning on the layer itself which produces the following:
<div class="cta_button" style="width: 200px; height: 40px; font-size: 20px; line-height: 40px; white-space: nowrap; padding: 0px; border-width: 1px;"> Sign Up for Free </div>
The rest of the styles are located on the external class, with style as follows
.alternate_color div.cta_button,
.cta_button{
color:#fff;
font-family:arial, sans-serif;
font-weight: bold;
text-align:center;
vertical-align:middle;
background:#7cc423;
border-style:solid;
border-width:1px;
border-color:#279621;
}
when it loads on my nexus4 on chrome, the button shows up blurry as if the responsive calculation is stretching it by 10x. it does not repro on a small window on desktop, nor on nexus 4 firefox. Any thoughts?
If you’d like to take a look at the site, its here: http://www.avidretail.com
This reply has been marked as private.