-
Search Results
-
Topic: S.E.O. plugin
I don’t know anything about SEO. Could you recommned any good plugin that you know is compatible with Enfold. I’ve read some topics here saying that WordPress SEO plugin makes some pages dissapear.
Thanks in advance for your help.Topic: Inserting Video code warning
Hello,
I have a concern by inserting a video in an article.
It is in MP4 format and displays correctly but there are warning line of code that start at the top.
Here is the location on my website: http://ecoledesvalettes.fr/morphing-cybercentre-cm1/
Here is the code of the line 576:if(!function_exists('avia_is_200')) { function avia_is_200($url) { $options['http'] = array( 'method' => "HEAD", 'ignore_errors' => 1, 'max_redirects' => 0 ); $body = file_get_contents($url, NULL, stream_context_create($options), 0, 1); sscanf($http_response_header[0], 'HTTP/%*d.%*d %d', $code); return $code === 200; } }Thank you in advance
LaureHelp! Enfold is wonderful, I have a client who wanted me to put their site into your theme and has a very specific nav bar request.
I am currently working on:
http://mcadafluidsheating.com/devsite2014/The navigation is suppose to look like this:
http://mcadafluidsheating.com/devsite/The logo won’t resize to what I need, so here’s what I’ve done:
In custom.css I put the following code:
div .logo { position: relative;
width:173;
height:77px;
border-left:5px solid #f0ead6;
border-right:5px solid #f0ead6;
padding:0px !important;
z-index:9999999999; }.header_color {
background-color: #002a5b;
width: 100%;
height:78px;
border-top: 5px solid #f0ead6;
border-bottom: 5px solid #f0ead6;
position: absolute;
top: 11px;
height: 45px;
}In the ubermenu css box I added:
#megaMenu > ul.megaMenu > li.menu-item > a,
#megaMenu > ul.megaMenu > li.menu-item > span.um-anchoremulator{
padding-top:10px;
padding-bottom:0px;
}What am I doing wrong? Why can’t I control the size of the logo? Please help.
Thank you,
Justin C Gordon
Austin, TXTopic: Portfolio help
Hi,
I’m trying to setup a portfolio page as follows:
Each file should be uploaded in a manner that when you click on the image it shows the descriptions on the side.
I want to have 3 separate galleries so when you click on the portfolio tab you see 3 boxes with these photos. Clicking into them will open a new page with a thumbnail of all photos and a large image at top.Please advise.
Thanks.Topic: Loading issues on wpengine
We’ve had issues with the theme load speed on our hosting with wpengine. This is what they said.
One issue that looks to be a primary concern is that your Theme is seen as a “memory hog” on our system…
PROBLEM: Memory Hog
This line of code took 6ms and allocated 256KB of memory.
Original cause was a theme, in /wp-content/themes/enfold/includes/admin/register-admin-options.php:110
Specific culprit is function substr($p[‘func’],0,60), in /wp-content/themes/enfold/includes/admin/register-admin-options.php:110Full stack trace, with the culprit at the top:
#11 – /wp-content/themes/enfold/includes/admin/register-admin-options.php:110
#10 – /wp-content/themes/enfold/framework/php/class-superobject.php:116
#9 – /wp-content/themes/enfold/framework/php/class-superobject.php:86
#8 – /wp-content/themes/enfold/framework/avia_framework.php:97
#7 – /wp-content/themes/enfold/functions.php:77
#6 – /wp-settings.php:323
#5 – /wp-config.php:138
#4 – /wp-load.php:29
#3 – /wp-blog-header.php:12
#2 – /index.php:17
#1 – /index.php:0
and
PROBLEM: Memory Hog
This line of code took 18ms and allocated 112KB of memory.
Original cause was a theme, in /wp-content/themes/enfold/css/dynamic-css.php:709
Specific culprit is function substr($p[‘func’],0,60), in /wp-content/themes/enfold/css/dynamic-css.php:709Full stack trace, with the culprit at the top:
#11 – /wp-content/themes/enfold/css/dynamic-css.php:709
#10 – /wp-content/themes/enfold/includes/admin/register-dynamic-styles.php:122
#9 – /wp-content/themes/enfold/functions.php:410
#8 – /wp-includes/plugin.php:0
#7 – /wp-includes/plugin.php:429
#6 – /wp-settings.php:347
#5 – /wp-config.php:138
#4 – /wp-load.php:29
#3 – /wp-blog-header.php:12
#2 – /index.php:17
#1 – /index.php:0not sure what my issue is here but if you can take a look I sure would appreciate it. The pic in the middle is is taking precedence at top and the other two columns are starting where the pic ends.
There was a thread open for this but it closed and my replies weren’t answered. I am trying to put the logo on top as suggested in the other thread but it didn’t act as it should.
Hello, I am using the header with bottom navigation and the logo is too small so I entered the code that was on the FAQ on Envato (Is there a way to make the header taller and fixed in height?) and made the height 150 which works for the logo but it stretches the bottom navigation, making it taller. How can I keep the bottom navigation the same and keep the area with the logo at 150?
#header_main .container, .main_menu ul:first-child > li > a { height: 150px !important; line-height: 120px !important; } html.fixed_header #main { padding-top: 120px; }Screenshot image of problem:
http://i.imgur.com/ge1OFTu.jpgI searched for this problem on here but didn’t find anything that worked. Thanks for the help.
Running of Yigit’s advice (https://kriesi.at/support/topic/alternate-logo-for-fixed-navigation/#post-230794) I created a class
fixedlogoand placed it inside my header.php file, just above the logo:<div class='container'> <div class="fixedlogo"></div> <?php /* * display the theme logo by checking if the default logo was overwritten in the backend. * the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output */ echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');To allow the fixed logo div to transition, I set its opacity to 0, rather than display: none;.
.fixedlogo { opacity: 0; } .header-scrolled .fixedlogo { display: block; width: 40px; height: 40px; top: 4px; background: url('http://site.com/fixedlogo.png') no-repeat; background-size: 35px 35px; float: left; position: absolute; left: 0; z-index: 1; -webkit-transition: opacity 0.5s ease-in; -moz-transition: opacity 0.5s ease-in; -o-transition: opacity 0.5s ease-in; opacity: 1; } .header-scrolled .logo { display: none; }Hope this helps anyone wondering!
Note: I placed this in my Desktop Styles media query, so I could do something similar for mobile.
Viewing 30 results - 132,961 through 132,990 (of 142,757 total)
