Forum Replies Created
-
AuthorPosts
-
Either a cache plugin, cache function from hoster, any other plugin or file permissions
Make sure that your hoster has no cache function active and the file permissions on the enfold.css are set correctly
he allready linked it. And with your solution the icon wont be centered inside the circle anymore.
can you please post a link to your website so we can check it out?
.page-id-99 .main_menu { display: none; }
I’d guess it’s either the file permissions, the hosters volume limit (some hosters only allow like 50mb for small websites) or some php conficurations from the hoster.
Can you post any of the error messages?
And you don’t have to be a great developer to work with CSS.
I’d say you can get the basics within an hour and learn all you need within 1 day.You can learn everything here: http://www.w3schools.com/css/default.asp
All chapters you need are on the left side “CSS Home” to “CSS How to” Everything after that are more like examples of what you can do.If you learn that, you can do pretty much anything you need using those 2 references:
http://www.w3schools.com/cssref/css_selectors.asp
http://www.w3schools.com/cssref/default.asphttp://kriesi.at/documentation/enfold/custom-css-and-quick-css/
For the table headings:
.page-id-3198 .avia-table th { font-size: 10px; font-weight: normal; padding: 3px; text-transform: none; }
For others:
.page-id-3198 .avia-table td { font-size: 10px; padding: 3px; text-transform: none; }
The page ID is to make the changes for this page only.
You can simply remove, add or edit the properties above.For more about properties to change your text see:
http://www.w3schools.com/css/css_text.asp
http://www.w3schools.com/cssref/pr_font_font.aspFor the padding see:
http://www.w3schools.com/css/css_padding.aspYou are using WordPress 3.8.2.
Please update to version 3.9.1
No difference between firefox and chrome for me
Might be because they all just show:
“http://www.rachelcochrane.com
is coming soon “They allready get an ID.
So you can use:
#tab-id-1-container { background-color: #CCCCCC; }
the next tab container then hast the ID “tab-id-2-container”
If you want it only on one page, then you have to add the page id:
#page-id-869 #tab-id-1-container { background-color: #CCCCCC; }
You can get the page ID when editing the page and click the button “get shortlink”. the number at the end of the link is the ID.
For more background options such as background-image see: http://www.w3schools.com/cssref/css3_pr_background.asp
Sorry, but i dont get whats your problem.
for th “WEB” section you are using an image for the text.
Why dont you write the text like in the other sections? like the technology and commercial section?It’s very simple to add a semi transparent background to those text sections and Text scales way bettern then images.
the problem is mostly cause by cache.
Make sure that you either bypass or deactivate your web browser cache.
Also make sure that you dont have wordpress plugins with cache functions active.And last but not least make sure that the hoster you#re using has no cache functions active
May 26, 2014 at 10:40 pm in reply to: Dropdown menu font seams quite large… Larger than the theme demo #270267Edit your menu and remove the check on “mega menu” for Live events.
the button is inside a div container with the class “clear”
looking at your site, the class is setting the height/width to 0 and sets the visibility to hidden:
.clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0px; height: 0px; }
You can create more layers on your slide and give them a class under “attributes”.
Then you should be able to use quick CSS:
`.yourclass {
opacity: 0;
}.yourclass:hover {
opacity: 0.7;
}hope that helps
Did you load the dummy data?
I think the page is called something like “transparent menu” and not “home v11: transparent menu”And to remove the link after the copy right, you can add “[nolink]” after your copyright.
May 26, 2014 at 12:59 pm in reply to: fullscreen slider the anchor #next-section is not fully visible #270059cann you post the URL as private reply?
Only the support members would be able to see it then.for me it’s under 1.5 seconds.
You can use the firefox developer tools for a network analisis to see if everything loads slow or if there is a certain file and stuff like that.
But i dont think it’s a theme related problemyou’re welcome.
You might want to check the width setting of your text elements in those columns.There is some inline CSS in the HTML code that sets a fix size to the element:
<p style="height: 200px; width: 100%; font-size: 16px; padding-top: 10px; text-align: left; background-repeat: no-repeat no-repeat; color: #ffffff;"><strong style="color: #ffffff;">Smart Warehousing will occupy 575,000 square feet at intermodalpark</strong><br> Kansas City Business Journal</p>
Not sure if you entered it like that in the text element but it causes some problems with the layout if you reduce the size of your browser window (or have a smaller screen).
The width should be set to 100% and you dont need the padding there.
Good weather over here so i’m going to have a BBQ and hope that you can get that fixed on your own.
If not, just ask for help.But right now i dont have time left :)
Only on one page or on all?
i would use a tranparent header and then use a color section on my page to get the background.In the demo is an example with a slider instead of the color section:
http://kriesi.at/themes/enfold/homepage/transparent-header/lets start with this:
#top.page-id-10 #av_section_1 .av_one_fourth { background-color: #000000; padding: 10px; }
And about the syntax of your code:
Classes allways have a leading dot in CSS. So it would be:
.flex_column .av_one_fourth first .avia-builder-el-2 .el_before_av_one_fourth .avia-builder-el-first
And if you want to target multiple elements, you have to seperate them with a comma:
.flex_column, .av_one_fourth first, .avia-builder-el-2, .el_before_av_one_fourth, .avia-builder-el-first
If you dont use the comma like
.class1 .class2 { }
Then you target all elements with class2 that are inside an element that has the class1 instead of targeting bothshould be possible to use this: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Then edit a page to place an icon, switch to the standard editor and copy the shortcode for the icon.
Then you should be able to paste it into your menu name.for me it looks fine, how long does it load for you?
May 25, 2014 at 1:03 pm in reply to: Google maps is showing a white line in the middle of it.. #269668using firefox and chrome
only way to get white lines for me is to use chrome and zoom out on the page (not the map)
Hello again :)
That is because the table heading font is to big. So the table can not shrink any further.
you can use quick/custom css to reduce the font size and the padding:
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/@media only screen and (max-width: 430px) { .avia_codeblock th { font-size: 12px; padding: 9px 5px; } }
That reduces the font size and padding when the display/window is less then 430px wide.
.page-id-2 .avia-builder-el-9 .entry-title { font-size: 18px; }
ich empfehle auch custom classes: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
dann würde das so aussehen:.your_class .entry-title{ font-size: 18px; }
Und es wäre unabhänging von der page und element ID.
You can simply adjust the text size with CSS: http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
#top .av_toggle_section .toggler { font-size: 18px !important; }
you can add other properties as well:
http://www.w3schools.com/css/css_text.asp
http://www.w3schools.com/css/css_font.aspThere is an accordion slider element in the advanced layout builder.
I suggest the use of custom classes.
First you have to enable them with this tutorial: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Then you write your CSS class (you can choose to put it into quick css, custom.css or use a child theme)
quick/custom css: http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
child theme: http://vimeo.com/67221517You have to write something like this:
#top .my_bordered_box { border:1px solid #000000; }
Then edit the text element on that page.
There will be a new field called “Custom Css Class”.
Enter the name of the class you created (my_bordered_box)You can simply put in more properties into your custom class like this:
#top .my_bordered_box { border:1px solid #000000; background-color: #cccccc; box-shadow: 5px 5px 5px #888888; }
yes, It is a slider.
You simply have to create a layer slider and then place it on your page where ever you want.
The green one is included in the enfold theme as an example so you can see the settings.You can access the layer slider through your admin sidebar on the left.
-
AuthorPosts