Forum Replies Created
-
AuthorPosts
-
May 14, 2014 at 11:16 pm in reply to: Icon List: the titles are presented half on the website #264972
looks strange.
but this would fix it
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/.iconlist_title { line-height: 1.3em !important; }
You can change the footer settings in the enfold theme option -> footer layout.
To edit the content, you have to go to the widget customization.
You’ll find it on the left side under “appearance”.There you can place widgets inside your footer areas.
The “go to top”-button in the bottom right corner has nothing to do with that.
It could be dissabled by using:
#scroll-top-link { display: none; }
Also i dont see the header background changing and the onlything with a black background is the area that contains “agreements”, “payments”, “reminders” and the form to get future updates.
And thats because you have the following in your quick css:
.main_color { background-color: #000000 !important; }
try to turn off all 3rd party plugins.
thats really a mess, do you use any 3rd party plugins?
do you have a test environment with the website running on enfold 2.7.1 that we can access?
Have you modified any other files in the enfold theme?
creating a thread: https://kriesi.at/support/forum/enfold/
Scroll down all the way to the bottom, there you can create a new thread.For the other issue we’d need to see the website to see whats wrong
!!!! i dont recommend setting it to 766.!!!! unless you want the visitors of your website to be able to modify your website
644 is enough for all files while folders should have 755.Also i can see that the quick CSS is added to the website. So you dont have to do anything about the file permission
Looks fine for me. what are you expectations?
changing this:html.html_boxed { background-color: #ffffff !important; }
into
`html.html_boxed {
background-color: #000000 !important;
}
will make the background black.
And i am sure it will workusing firefox 29.0.1 and i dont see the problem
Do you have a link to the site?
You might have to check the file permissions.
Maybe you dont have the right to write the filesthere are alot of nice new features :)
Guess its the server the website is on.
You might want to check/increase the allocated memory http://www.bubbleindia.com/check-increase-php-memory-limit-wordpress/
If you go to Appearence > Menus
When editing your menu, on the left side you can choose to add a custum link. “Link”
you can increase the header height in the general styling options of enfold.
That should fix the problem.Change the header height to 130px and your custom css should work again.
that video explains everything you need.
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
First solution was moving both (logo and menu) to the center.Only moving menu to the left:
#header_main .main_menu {
position: relative ! important;
margin-left: 200px ! important;
}As far as i understand you want to do something like this:
.responsive #header_main >.container { width: 900px; }
but you need more specific about what you want.
Hmm, another option of yours that does not apply.
I think you really should check the file permissions
as far as i know it’s not possible.
You’d have to hire a freelancer to write the code for you.
2 ideas: switch to stretched layout and then back to boxed layout and choose a background color
Also check your file permissions of the .css files. they should be 664
got the wrong idea, sorry, ill come up with something else
So the number of the menu item changed?edit:
here you go:
li#menu-item-3187>a>.avia-menu-text { display:inline-block; background-color: red; color: white; border-radius: 10px; line-height: 28px; padding: 0px 10px; }
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
you can turn off the animation with
.avia-progress-bar div.progress .bar { animation: none; }
To change the color of them you need to add (enter the color you want for each one):
.grey-bar .bar { background: #FFFFFF !important; } .blue-bar .bar { background: #FFFFFF !important;; } .green-bar .bar { background: #FFFFFF !important;; } .orange-bar .bar { background: #FFFFFF !important;; } .black-bar .bar { background: #FFFFFF !important;; } .red-bar .bar { background: #FFFFFF !important;; } .teal-bar .bar { background: #FFFFFF !important;; } .aqua-bar .bar { background: #FFFFFF !important;; } .purple-bar .bar { background: #FFFFFF !important;; } .pink-bar .bar { background: #FFFFFF !important;; } .silver-bar .bar { background: #FFFFFF !important;; }
Not possible.
Only option for you to not mess with the code is to get someone who does it for you.
May 14, 2014 at 1:03 pm in reply to: Still having huge problems with responsive layers in slider #264611see Devin’s answer.
There you can edit such things for the layer slider.
you might want to set your reply to private, so not everyone can see the login details ;)
I guess your are looking for
.image-overlay { visibility: visible !important; }
But that should not be needed. do you have a link to you site with an example?
The overlay should be allways activated, even on small screens.correct, i should have written my code with 0px. i’ll change that so you just have to copy it.
That code will affect all color sections. it will reduce the minimum height to 0px.
.avia-section{ min-height: 0px; }
targets all color sections (class name)
you could change such properties of elements that have and id with:
#about { min-height: 0px; }
to change only the minimum height of the color section with the ID “about”
min-height is currenty set to 100px
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
.avia-section { min-height: 0px; }
site looks good so far, i’d suggest to look at the transparent menu since its hard to read it with some of the background images.
Maybe some decent text effects like a white shadow might help. would need some testing to see what looks good :)May 14, 2014 at 11:51 am in reply to: Changing button and font color of "submit" button in contact form #264587http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
quick / custom CSS:
.avia_ajax_form fieldset p .button{ background-color: #00000; border-bottom-color: #000000; border-left-color: #000000; border-right-color: #000000; border-top-color: #000000; color: #000000; }
color is the font color
-
AuthorPosts