Forum Replies Created
-
AuthorPosts
-
December 8, 2014 at 4:01 pm in reply to: Same height for text block under product image on shop overview page #364677
you have Enfold Version: 2.9.2. Please update to the newest version.
And when i click on your link, all i see a logo, a form field and a button. I guess thats some kind of news letter?
So you mean, you want to be able to click the footer to collapse and expand it, or do you just want the footer to be smaller/not shown in mobile version?
http://en.support.wordpress.com/pages/#how-to-find-the-page-id
CSS selector would be:
.page-id-xxx { }
But i guess that might not be your problem.
I dont see the site so i cant tell you whats wrong.
If you use firefox you can right click, inspect element and check the height / margin / padding of the elements.If you linked your site in the private section, i guess the support will tell you what to do.
December 8, 2014 at 9:03 am in reply to: Change color and opacity of hover (caption on image) #364494http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
.av-image-caption-overlay { background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.4); color: #FFF; }
Background is for color and opacity rgba = red green blue alpha
color is text colorDecember 8, 2014 at 7:17 am in reply to: Move default menu horizontal lines directly under menu items? #364466http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
.avia-menu-fx { bottom: -1px; }
you can change the value to move it up or down (standard is negative 1)
Hello Pianogirl,
I am not part of the support, but that should not be their job since this is not a theme related problem.
The problem is most likely caused because the website was not well protected.To solve this problem i guess you’d have to hire a professional.
It can be realy hard to get rid of all security holes after something got in.I dont know who created the website, but another option is to read up on wordpress security, delete everything, change passwords for everything, recreate the website with a new and fresh wordpress and enfold install, create a backup and protect the website.
There are alot of things you can do to increase the security for your wordpress website.
Here is a first link to read up on some basics: http://codex.wordpress.org/Hardening_WordPressAnd if you have a backup, it is easy to get the website back running.
You can also wait for a support member to comment on this.
Greetings
FlikkHello,
Can’t see the site but i’d guess you could check the options on the right side when you’re editing a page.
There you can chose if you want to use the standard sidebar setting or something else.
Regards
FlikkI now use the following code to prevent the mega menus width to get screwed up:
.avia_mega_div { max-width: 60vw; }
I dont know how that would look in other web browsers.
And i wonder if that would cause any problems … for mee it seems like nobody wants to talk about the vh and vw lenght units.nevermind still have the problem
- This reply was modified 9 years, 11 months ago by Flikk.
Here you go:
#menu-item-2752 a span{ color: white !important; }
also “color” is for font color. for the background color you use: “background-color”.
Let me see if i can tinker some CSS for you.
edit: re read your question and i first thought you want the background changed, shame on me.
- This reply was modified 9 years, 11 months ago by Flikk.
maybe because Günter forgot a semicolon :D
one of the most common errors when programming / coding.Also if you use firefox, you can right click on an element and chose “inspect element”
youll see a new area at the bottom showing the source code.
if you inspect a menu item, you should see multiple lines starting with:
<li id="menu-item-2477"
if you mouse over each line, it will highlight the menu item. this way you can find the number.
#menu-item-2752 a span{ color: white; }
content of the socket is in:
Enfold Theme Options -> footer -> copyrightTo remove the link from the socket you can add
[nolink]
in the fieldThis reply has been marked as private.December 5, 2014 at 3:16 pm in reply to: header/logo area background / Can background remove when the mobile menu activat #363568Inside your custom.css there is an area that reads:
@media only screen and (max-width: 767px) { }
You can add custom CSS inside those brackets to apply for the mobile view.
Or you can cope the code into the custom css field inside the enfold options and then add your CSS code to hide the background.
Then you should be able to remove the background with the following CSS:@media only screen and (max-width: 767px) { #header_main { background: none; } }
For the background you also can define a color in hex instead of the “none” if you prefer that. http://www.w3schools.com/tags/ref_colorpicker.asp
Hallo Welti,
Ich ghöre zwar nicht zum Kriesi team aber ich helf dir auch gerne weiter :)
Zuerst einmal brauchst du die page-id von der Seite auf der du die anpassungen machen möchtest: http://en.support.wordpress.com/pages/#how-to-find-the-page-id
Dann musst du für folgenden Code einfach die page-id anpassen.
#top.page-id-200 #header_main{ Background: #FFFFFF; }
Das färbt den Hintergrund des Headers weiß.
Sollen noch weitere Bereiche des Headers, wie z.B. das Menu gefärbt werden, muss man diese im CSS code dazu schreiben:
Du kannst auch sagen das alle div container im header einen weißen Hintergrund bekommen sollen:#top.page-id-200 #header div{ Background: #FFFFFF; }
Sollten andere spezifische Elemente gefärbt werden, dann müssen wir den CSS code noch etwas anpassen :)
you can use simple HTML tags inside the button.
So for the button label, you should be able to simply write:
Personal Injury Portal<br>to learn more
<br> is for a line break in HTML.
<b> is for bold
<p> is for paragraph
and so on.For all HTML tags see: http://www.w3schools.com/tags/default.asp
You also could put in images, tables or even forms inside a button if you wanted to.
i think the best bet would be to edit the image like Elliott said.
Having the gap as part of the image would cause it to shrink as well when the logo shrinks.why dont you just link directly to the answer?
here you go:
http://kriesi.at/documentation/enfold/change-the-default-font-size/You can use the page id to specify custom CSS for a specific page.
How to get the page ID: http://en.support.wordpress.com/pages/#how-to-find-the-page-idExample:
#top.page-id-200 #header_main_alternate { background-color: #ff00ff; }
I hope that helps.
December 5, 2014 at 2:58 am in reply to: hotspots point to the different paragraph of the same page #363396To link to something on the same page you need anchors:
http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
Since i can’t see your site i can’t say any more specific.
But i hope the link will help you.
Thx for the response.
Unfortunately your CSS is doing exactly the same that mine does.
When you add the CSS in Firebug it looks fine since the page does not reload.I guess the width for the mega menu is calculated on pageload based on the width of .container or something like that?
Any other ideas?
December 4, 2014 at 3:23 pm in reply to: Increase space below main menu and bottom of header #362892I dont completely understand what you want. And i’m just a normal user like you.
But if you want to get some spece between the header and the main content you can try to add the following to your quick CSS:
div#main{
padding-top: 140px !important;
}If you want to get rid of the white space on smaller screens, you have to write it like this and adjust the min-width:
@media only screen and (min-width: 768px) {
div#main{
padding-top: 140px !important;
}
}I’m just a normal user.
But the Support would write something like:“Hey!
Please update the theme to the latest version. That should fix any issues you are currently experiencing :)
To update to the latest version follow the instructions here:
http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!”
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
h1, h2, h3 { text-transform: none !important; }
Nevermind, i just forgot to allow the script for the google fonts ^^’
strange. in firefox the font looks like arial. But in chrome i can see your problem.
You can use the following css code to fix the line height so it wont get cut off:
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/.page-id-58 .av-special-heading-tag { line-height: 1.3em !important; }
Ich empfehle auf enfold Version 2.7.1 zu updaten.
Und für die Formularfelder kannst du mit folgendem CSS code ändern:
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/.page-id-51391 .avia_ajax_form input, .page-id-51391 .avia_ajax_form select{ color: #000000 !important; }
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
#footer { border: none; }
You can use it to speed up the load times to some degree.
But it can mess with you when you try to edit stuff and dont see the changes.
-
AuthorPosts