Forum Replies Created
-
AuthorPosts
-
August 21, 2015 at 12:47 pm in reply to: Move or reposition directional arrows in genesis slider #163088frobnMember
The code I referred to is not your style as I thought, it is in in the genesis slider css which is loaded after your main style.css.
Try this in your style.css
#genesis-responsive-slider .flex-direction-nav li a {display:none}
August 21, 2015 at 11:47 am in reply to: Which theme is the best one to use to mold into your own theme? #163086frobnMemberPerhaps it is.
I have a question. Once you build a site with Dynamik and export it, will the export work alone as a Genesis child theme or is it dependent on Dyamick?
August 21, 2015 at 6:31 am in reply to: How to move secondary sidebar above content on mobile devices #163070frobnMemberDid you fix the code? It appears to be working perfectly in firefox.
I just found that there is a wp function to detect mobile so you may be able to eliminate the plugin.
<?php if ( wp_is_mobile() ) { /* Display and echo mobile specific stuff here */ } ?>
frobnMemberYour source is showing 2 paragraphs.
What code are you using in the wp editor?
frobnMemberTo enable Compression add to your .htaccess
<ifModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file .(html?|txt|css|js|php|pl)$ mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>To leverage browsing use a catching plugin such as WT3C
For images use a plugin such as EWWW Image Optimizer
There are plugins to minify js, css and html
The render blocking is due to google fonts, not much you can do about it.
frobnMemberYour header is already full width:
.header-full-width #title-area, .header-full-width #title, .header-full-width #title a { width: 100%; }
What do you want to do? If you want the title wider you can adjust the font-size in #title a
August 20, 2015 at 9:56 pm in reply to: Which theme is the best one to use to mold into your own theme? #163056frobnMemberI like the idea but why not take it further. Here are some of my thoughts.
To lessen complexity use the sample theme as it contains only the basic code. I would want a lot of options and I don't want to be manually adding and deleting a lot of code for each design concept. I'd start with lists of design elements that I like and categorize them into 1. headers and navigation, 2. js. 3. css and 4 front page. There would have to be a naming scheme for each category for intuitive inclusion. Write the code for each element on the lists and place the coded elements into respective folders. Elements for each design would be called in with include in functions.php and front-page.php. If I were really ambitions I would create a php file of menus for all the items to check each item to be used and automatically include them in the appropriate file. In effect it would be a super set of child themes. Admittedly, this is a rough draft and the conceptualization needs some work. My problem is I don't have the discipline to maintain focus for the amount of time necessary for such a project. If a group of developers joined forces then once the conceptualization is teased out the coding could be split up and accomplished quickly.
Just my 2c.
August 20, 2015 at 4:32 pm in reply to: Altitude Pro Menu Appears Odd On Smaller Screen Sizes #163048frobnMemberThe problem is that .title-area and your menu are overlapping. In .title-area change width: 360px to max-width:360px
August 20, 2015 at 1:31 pm in reply to: How to move secondary sidebar above content on mobile devices #163036frobnMemberYou can use conditionals like is_iphone(), is_mobile() and is_tablet(). with the Mobble plugin
August 20, 2015 at 1:27 pm in reply to: Move or reposition directional arrows in genesis slider #163035frobnMemberOpen styles.css , find
`.flex-direction-nav li a
comment out the whole selector
frobnMemberThe change is not showing in your css :
Did you purge style.css in W3TC?
frobnMemberIts best to give a link to the actual site:
Here is your problem:
<s<script src="//www.jacksonrubem.com.br/wp-content/cache/wpfc-minified/d41d8cd98f00b204e9800998ecf8427e/1433590607index.js" type="text/javascript"> cript>
Fix <s<script.
frobnMemberOpen functions.php, look for
wp_enqueue_script( 'agency-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
Comment it out:
//wp_enqueue_script( 'agency-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
If your client changes his mind later just remove //
Before making any changes backup your functions.php
frobnMemberWithout view the actual site it is difficult to know for sure. Inspect your from the dashboard menus to make sure you do not both primary and secondary menus checked.
frobnMemberYou can add a header-left widget and put your add in it, better yet use display:none to remove your logo and float the header-right widget to the left. You may have to fiddle with the css to get it the way you want
frobnMemberThis should work:
/* change text quote color */
.gppro-custom blockquote {
color: #8b6349;}frobnMemberThis will take care of the sub-footer
.sub-footer {background-color:#fff}
Glad you fixed the slider.
frobnMemberThere are a couple of mistakes in your style.css
Remove the stray ' /*' just above /* Media Queries and style="height: 460px"
At the bottom of the css replace:
.home-top .widget { margin: 0; padding: 0 0px 0 0px; background-color: #fff; style="height: 460px" } with .home-top .widget { margin: 0; padding: 0 0px 0 0px; background-color: #fff; padding-right:10px }
That should fix your right margin. It appears that the slider is not properly sized.
frobnMemberYour link did not work.
From your write up about the former designer, I would be suspect of any changes made to genesis and the child theme. To be on the safe side I would reinstall both genesis and the child theme and start clean. You can rename the present child theme and save it for future reference.
You can add an additional widgets by registering the widget in functions.php and adding it to front-page.php. Here is a brief tutorial:
https://www.nutsandboltsmedia.com/how-to-add-a-widget-area-to-a-page-using-genesis/
frobnMemberReduce the margin-bottom for .entry-content p
Present code:
.entry-content ol, .entry-content p, .entry-content ul, .quote-caption { margin-bottom: 26px; }
-
AuthorPosts