Eric

Forum Replies Created

Viewing 50 posts - 51 through 100 (of 2,091 total)
  • Author
    Posts
  • in reply to: AMBITION THEME / Responsive Background & Menu #20108
    Eric
    Customer

      If the reply field doesn’t show up, and you’re already logged in, then click Reload (on your Browser) and it will show up instantly – https://appfinite.com/topic/having-trouble-logging-in/

      Do you have a link that I can take a look at? I’ll be able to point directly to the part of the CSS that you can adjust to do this.


      I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

      in reply to: How to disable feature in single post in theme Elevate? #20107
      Eric
      Customer

        Look in your functions file and remove (or comment out) the code for the Featured Images –

        //* Add featured image above the entry content
        add_action( 'genesis_entry_header', 'elevate_featured_photo', 5 );
        function elevate_featured_photo() {
        
        	if ( is_attachment() || ! genesis_get_option( 'content_archive_thumbnail' ) )
        		return;
        
        	if ( is_singular() && $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
        		printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
        	}
        
        }

        This code is for the Featured Images to show on your Single Pages. Once you remove this code, it won’t show up on your Single pages, but it will still show on your Homepage as well as the Blog like normal.


        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        in reply to: Pictures zoomed in and blurry #20106
        Eric
        Customer

          Can you post a link to your site so we can see the issue?

          Also, not sure where you got the 1600 by 1050 size from, but the recommended size is `1800px width and 1200px height….That’s the size in the Demo. Your image doesn’t necessarily have to be this size exactly, you can use whatever size you want just make sure it fits and looks right.


          I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

          in reply to: Right Sidebar Issue #20012
          Eric
          Customer

            If your sidebar works fine before you add the testimonials, then it’s possible there’s an error inside the code you’re adding. Double check your opening and closing div containers. If you have one without the other it can distort the rest of the HTML code and order it shows on the site.


            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

            in reply to: How to update to latest theme version #20011
            Eric
            Customer

              If you haven’t made customizations to your theme files directly, then you can simply delete and re-install the new version of the theme. Backup everything first!

              If you’ve made customizations to your theme files and you want to keep them, then just manually update the code if needed. You probably won’t need to do this as most of their updates were minor.


              I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

              in reply to: Some issues #20004
              Eric
              Customer

                Hi Ola,

                As mentioned in the Forum Rules (#5) it’s recommended to create each topic/issue into there own separate Threads due to the “One question per thread policy“. This helps keep everything organized and makes it easier for us to find similar issues through the Search Results.

                Let’s start with the first Hamburger Icon. The Hamburger Menu is actually supposed to show up under the logo when viewed on Mobile Devices. That’s how it was designed as you can see here – http://demo.appfinite.net/ambition/

                The Logo and the Menu are on 2 completely separate Div Containers, so that’s why the menus shows under the Logo.

                “2. In my opition there´s lot of whitespace (margin) around the widgets. It´s hard to get the first CTA to appear om the first screen on a mobile. Is this somethng I could change.”

                Yes you can adjust the padding for the widgets. When viewing the First Front-Page-1 widget on a mobile device, this is the code that you can change to adjust the spacing (line 2349) –

                	.front-page-1 .flexible-widgets {
                	    padding: 150px 0 130px;
                	}

                For the other widgets, they mostly use this code on line 1624 –

                .flexible-widgets {
                	overflow: hidden;
                	padding: 120px 0 100px;
                }

                …unless they are overrided with their own custom code like the front-page-1 widget above.

                “3. Widget Front page 2: The inner background has the same color as the buttons.”

                Thats weird. Judging from the source code it looks like an error coming from the Customizer code. I assume you added a custom color using the Customizer right? I’ll send this over to have Wes take a look.


                I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                in reply to: Logo not showing on mobile #20014
                Eric
                Customer

                  “How do I remove a featured image from my pages but not my posts? My images are displaying twice on my pages and I have no ability to edit the placement of the one showing up as ‘featured’.”

                  It sounds like you’re using the Featured Image and a Post image at the same time. You would need to either remove the Featured Image, or remove the Post image (from inside your content) and it will appear just like the demo.

                  Just so you know, there was a small update made to the Featured Image code/section in the functions.php file in your theme. You may or may not already have this update (not sure since I can’t see your functions file.)

                  Just in case you don’t have the udpate, here’s the code that needs to be changed (old version) –

                  //* Add featured image above the entry content
                  add_action( 'genesis_entry_header', 'ambition_featured_photo', 5 );
                  function ambition_featured_photo() {
                  
                  	if ( is_attachment() || ! genesis_get_option( 'content_archive_thumbnail' ) )
                  		return;
                  
                  	if ( is_singular() && $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
                  		printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
                  	}
                  
                  }

                  Replace that code with the new updated version –

                  // Add featured image above the entry content
                  add_action( 'genesis_before_entry', 'ambition_featured_photo' );
                  function ambition_featured_photo() {
                  
                      if ( ! ( is_singular() && has_post_thumbnail() ) ) {
                          return;
                      }
                  
                      $image = genesis_get_image( 'format=url&size=single-posts' );
                  
                      $thumb_id = get_post_thumbnail_id( get_the_ID() );
                      $alt = get_post_meta( $thumb_id, '_wp_attachment_image_alt', true );
                  
                      if ( '' == $alt ) {
                          $alt = the_title_attribute( 'echo=0' );
                      }
                  
                      printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', esc_url( $image ), $alt );
                  }

                  That fixes issues for some users having trouble deleting Featured Images that wouldn’t go away. This should already be included in the latest version as I’ve used it myself.

                  “Also, still am unclear about how to patch the front-page.php file above. I know how to access this file, but is there a new line of code to stick in there? How exactly do I replace the old with the new? “

                  What @Jessy is saying is to replace the entire file itself with the new version. There was much more than one line changed so it would be easier to just replace the whole file with the new version since it would be much faster rather than going through making adjustments to each and every line. This is assuming you haven’t edited this file of course. You can swap it out using FTP (Recommended Method), or Copy/Paste the new file into the old one if you’re using the WP admin.


                  I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                  in reply to: Logo not showing on mobile #19986
                  Eric
                  Customer

                    @Stephanie your logo is showing up fine for me. (using an iPhone 6)


                    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                    in reply to: Portfolio Template #19941
                    Eric
                    Customer

                      “I’ve got one category (blog) that has posts which I want to show on the portfolio page but I don’t want to exclude those posts from the blog page.”

                      By default they won’t be excluded from your Main Blog page. The only way they’ll be excluded from your Blog page is if you manually add your Category ID’s under Exclude Categories in the Blog Page Template section from your Genesis Theme Settings page. If you don’t do that then those same posts in your Portfolio will show up on your Blog page since they are all considered Posts.

                      “I was wondering if I could use something apart from categories to filter the posts that will go to the portfolio page.”

                      Only Category ID’s will work for this type of Portfolio. WordPress (in addition to Genesis) allows you to show specific Categories only, there’s no code/option to show regular Tags.


                      I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                      in reply to: Portfolio Template #19938
                      Eric
                      Customer

                        Yes this can be done with Categories. I mentioned how to do that in one of your previous threads (in case you missed it) – https://appfinite.com/topic/portfolio-page-template/#post-19826

                        They have Portfolio Tutorials that show you how to display a specific category on your Portfolio page. You can have Multiple portfolio pages that display separate categories individually…..AND you can even exclude the posts that show up on your Portfolio pages from showing up on your regular Blog page if you wanted to as well.

                        You can find all of these here – https://appfinite.com/tutorials/ and this link can be accessed from the Tuts link in the menu.


                        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                        in reply to: Author Box Arrangement #19922
                        Eric
                        Customer

                          @B_David if your layout shows up distorted it could be an HTML error. If you’re missing open/close divs or any other containers in HTML, it will cause the rest of your site to show up improperly (in reference to your reply earlier about the sidebar, etc).

                          I can see tables in a gray box right under the Author Box with inline custom code added. Is that the part you’re trying to edit? Because I don’t see any code added to the CSS for that. If you make edits to the Author Box in the CSS it should show up.


                          I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                          in reply to: Fade Not Working #19862
                          Eric
                          Customer

                            My post should be visible now. If not, here it is just in case –

                            “I’ve never seen that happen before. I wonder if there is another plugin or javascript conflict somewhere else on the site.

                            Have you tried temporarily disabling your plugins?

                            Have you modified or added any custom code to the Theme or any other part of your site?

                            That would help us get closer to finding out where the issue is coming from.”


                            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                            in reply to: WooCommerce? #19861
                            Eric
                            Customer

                              Check this out – http://baltimoredrew.com/integrating-woocommerce-genesis/


                              I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                              in reply to: Author Box Arrangement #19860
                              Eric
                              Customer

                                Couldn’t you just use the After Entry widget? It should already be included in the theme, and it shows up under the Author Box.


                                I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                in reply to: Optimal Theme Documentation #19864
                                Eric
                                Customer

                                  It’s located here – https://appfinite.com/theme-setup/optimal-theme-setup/ You can access it through the Tutorials and Resources link in the menu.


                                  I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                  in reply to: Fade Not Working #19845
                                  Eric
                                  Customer

                                    I’ve never seen that happen before. I wonder if there is another plugin or javascript conflict somewhere else on the site.

                                    Have you tried temporarily disabling your plugins?

                                    Have you modified or added any custom code to the Theme or any other part of your site?

                                    That would help us get closer to finding out where the issue is coming from.


                                    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                    in reply to: Fade Not Working #19830
                                    Eric
                                    Customer

                                      Have a link to your site?


                                      I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                      in reply to: Aspire homepage showing "Latest from the Blog" below widgets #19827
                                      Eric
                                      Customer

                                        @ArtistClara The Site title/Logo is an image, so if you want similar you’ll have to either create an image for your logo or increase the font-weight for the site title of your theme.

                                        For the Menu, she added font-weight: 600; to the .genesis-nav-menu

                                        .genesis-nav-menu > .menu-item > a {
                                        	font-family: 'Open Sans', 'sans-serif';
                                        	text-transform: uppercase;
                                        	font-weight: 600;
                                        }

                                        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                        in reply to: Portfolio Page Template #19826
                                        Eric
                                        Customer

                                          The Aspire Portfolio template can only display Posts. Think of it as your blog redesigned in a portfolio format. You can assign certain categories to only show on the Portfolio page and exclude them from showing up on your regular Blog page. See here – https://appfinite.com/tutorials/

                                          It’s designed to be simple to avoid overloading too much code which would make the theme too slow. For what you’re needing to do, it would be better to search for a dedicated portfolio plugin to use with the theme. I haven’t used any myself, but you can search for a free plugin through the WordPress repository – http://wordpress.org


                                          I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                          in reply to: Discovery theme #19742
                                          Eric
                                          Customer
                                            This reply has been marked as private.
                                            in reply to: Aspire Pro image above title problem #19598
                                            Eric
                                            Customer

                                              I saw a few posts where other users asked about this here in the forum. Check out your functions.php file and look for some code that looks like this –

                                              //* Add featured image above the entry content
                                              add_action( 'genesis_entry_header', 'aspire_featured_photo', 5 );
                                              function aspire_featured_photo() {
                                              
                                              	if ( is_attachment() || ! genesis_get_option( 'content_archive_thumbnail' ) )
                                              		return;
                                              
                                              	if ( is_singular() && $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
                                              		printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
                                              	}
                                              
                                              }

                                              That’s the code they used to have Featured Images show on single posts. If you want to remove it, then remove that code above…..you can also comment it out as well.


                                              I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                              in reply to: Portfolio Questions #19599
                                              Eric
                                              Customer

                                                There were updates made that fixed that issue a long time ago in the Portfolio file (a year or 2 ago I think). Although, it’s completely fixed in the new version so it would probably be best to just use that instead. I wonder if you could temporarily swap out the entire Portfolio file with the new one to see if that helps?

                                                You’d also need to add the same CSS that’s used in the new version as well. The new portfolio CSS can be found at line 2930 in the style.css. If I were you, I’d just copy/paste that over the old code to see if that fixes it. Make sure and BACKUP your files first!

                                                This is all assuming you want to continue using the older version of the theme, while adding in the bits and pieces of the new theme without having to fully upgrade. Is that correct? It looks like you’ve made some edits that you’ll want to keep, so that’s why I figured you’d want to keep the version you’re using.


                                                I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                in reply to: Top image cut in half in mobile version #19621
                                                Eric
                                                Customer

                                                  Hey, just wanted to see if you came up with anything? Did you get the image size right? Or are you still experiencing the same issues?


                                                  I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                  in reply to: Top image cut in half in mobile version #19484
                                                  Eric
                                                  Customer

                                                    I could do either or. If the issue only appears on Portrait, then I can add code that will call the smaller image when being viewed from that particular size.


                                                    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                    in reply to: Reinstalling Theme #19483
                                                    Eric
                                                    Customer

                                                      Huh? That’s weird, it should download to your computer as a zip file first. Then you should be able to take that zip file and install it in WordPress through your Plugins page. What type of computer are you using, Mac or PC?

                                                      That’s one way to do it, you can still upload/install this plugin by using the WordPress Plugin area by going to Plugins > Add New and then search for the plugin from your Plugins page instead. Just type in Genesis eNews Extended and it will show up. Click install, and then activate.


                                                      I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                      in reply to: Top image cut in half in mobile version #19469
                                                      Eric
                                                      Customer

                                                        That’s pretty much how any site or theme would display a large background image of that size when it’s designed to be responsive. The browser scales the image to fit the screen the best it can without distorting or destroying the quality of the image (stretching or shrinking too much).

                                                        Since your image shows 2 people standing more towards the right of the image instead of the center, it will appear more cut off on smaller devices.

                                                        What some sites do is create a smaller version of their image to show up when the site is being viewed on a smaller mobile device. If you are able to make a smaller version that will fit the size of a mobile device then I can show you where to add code in your CSS to make your site show the smaller image on mobile. It’s pretty easy to do, just need that smaller image.


                                                        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                        in reply to: Top image cut in half in mobile version #19452
                                                        Eric
                                                        Customer

                                                          Hi, I would need a link to your site in order to see what’s going on.


                                                          I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                          in reply to: Word wrap splits the words in half on mobile version #19451
                                                          Eric
                                                          Customer

                                                            Do you have a link to your site so we can see the issue?


                                                            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                            in reply to: Download Epik 1.4? #19449
                                                            Eric
                                                            Customer

                                                              @eddieb Huh? Their support is perfectly fine. Matter fact, it’s AWESOME! I’ve never had a complaint, every question has been answered with no issue.

                                                              I’m not the only one responding to posts. Wes provides the majority of the Support here on the entire forum. I and a few others agreed to help out as well. So saying the support is “non existent” is not true whatsoever, a simple search would show you that.

                                                              Keep in mind, you’re asking how to download something in the Community Forum.

                                                              If you needed to download a specific version the right thing to do is contact them directly on the Contact Page, not here.


                                                              I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                              in reply to: Changing colors #19444
                                                              Eric
                                                              Customer

                                                                I just did a quick check and it looks like it’s still working fine for me. I’m using the Customizer (that comes with the Theme) to control my Theme Colors/Scheme.

                                                                If you go to Appearance > Customize > Colors you’ll be able to change the colors from there. That will change the hyperlinks and all of the default colors of the theme to whatever you choose to be the Main color.

                                                                Is that not working for you? If not, what version are you running?


                                                                I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                in reply to: Changing colors #19436
                                                                Eric
                                                                Customer

                                                                  Yep, @eddieb is right, you can now make those color changes through the Customizer, without code! Much easier now.


                                                                  I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                  in reply to: Gallery has jumpy or misaligned images #19435
                                                                  Eric
                                                                  Customer

                                                                    Hi Matthew,

                                                                    Have a link to your site? I’m pretty sure I can figure out what’s going on once I take a quick look.


                                                                    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                    in reply to: Reinstalling Theme #19432
                                                                    Eric
                                                                    Customer

                                                                      Sorry, I’m not sure what you mean.

                                                                      Are you downloading the plugin to your computer or through the WordPress Admin itself? It’s much easier to just add/install the plugin through the WordPress Plugin installer.

                                                                      Once you have all the plugins that the demo uses FIRST (mentioned in the Documentation/Tutorial) then you should be able to upload the Import file from the Docs and it should load everything perfectly.

                                                                      That’s IF you want to upload all of the content from the Demo. If not, then you can manually add in the widgets you want from the demo once the required plugins are installed.


                                                                      I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                      in reply to: Reinstalling Theme #19415
                                                                      Eric
                                                                      Customer

                                                                        Hey Mike,

                                                                        I won’t say you’ll need to start completely over or anything since this theme is “Plug and Play” and allows you to add whatever you want. However you can start from where you are and add the content in that you want if you DON’T want to start from scratch…..you should be fine.

                                                                        If you want similar look, try the Docs first – https://appfinite.com/theme-setup/aspire-theme-setup/


                                                                        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                        in reply to: Primary Navigation font color #19413
                                                                        Eric
                                                                        Customer

                                                                          If you adjust this code on line 1646 in your Style.css file, it will change the color –

                                                                          .genesis-nav-menu a {
                                                                          	color: #000;
                                                                          	display: block;
                                                                          	font-size: 13px;
                                                                          	font-weight: 300;
                                                                          	letter-spacing: 2px;
                                                                          	padding: 26px 12px;
                                                                          	text-transform: uppercase;
                                                                          }

                                                                          That should change it, if not let us know and we can tell you what needs to be changed 🙂


                                                                          I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                          in reply to: Change Post Title Location for Single Posts #19411
                                                                          Eric
                                                                          Customer

                                                                            Hi,

                                                                            This code should work –

                                                                            // Move image above post title in Genesis Framework 2.0
                                                                            remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
                                                                            add_action( 'genesis_entry_header', 'genesis_do_post_image', 8 );

                                                                            Source – http://bit.ly/2crzVEw


                                                                            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                            in reply to: Download Epik 1.4? #19429
                                                                            Eric
                                                                            Customer

                                                                              You should have it downloaded on your computer right? You would have needed to download it in order to upload it to your site. If not, you can download the version you’re using on your site currently by using FTP, that’s how I’d do it.

                                                                              Keep in mind, as you may have seen already mentioned, there were lots of updates made to the code structure entirely. It’s practically a brand new theme. However, the widget areas are labeled the same, so if you upgraded to the new theme, then your old widgets should transfer just fine since they are labeled the same. The rest of the CSS and other areas of the theme will look different design wise (only slightly though).


                                                                              I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                              in reply to: Content Archive Featured Image Sizes inSync #19405
                                                                              Eric
                                                                              Customer

                                                                                Does this tutorial help at all? – http://wpsites.net/web-design/how-to-change-the-image-size-in-genesis-blog-archives/ I haven’t tested it myself, but it was one of the only things I found when doing a quick Google search. I’m sure there are more tutorials out there, but I ran out of time.


                                                                                I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                in reply to: Page Post – Full Frame Responsive Image #19354
                                                                                Eric
                                                                                Customer

                                                                                  It may be possible to do, but the only way to know is if I have a link so I can inspect the Source Code. Just let me know when you have your site ready and available (with the image installed) and I can see if it will be a simple Customization. If not, then it could require hiring a Developer to Customize it for you. But before you hire anyone let me take a look first just in case it’s something easy to do.


                                                                                  I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                  in reply to: No /blog url in multiuser #19299
                                                                                  Eric
                                                                                  Customer

                                                                                    Do you have your Blog page setup as a “Page” using the Blog template?


                                                                                    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                    in reply to: Page Post – Full Frame Responsive Image #19298
                                                                                    Eric
                                                                                    Customer

                                                                                      Do you have a link to your site with the exact location it’s supposed to show in?


                                                                                      I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                      in reply to: Header/Navigation menu disappears when scrolling? #19260
                                                                                      Eric
                                                                                      Customer

                                                                                        That’s actually how it’s supposed to work. The header is supposed to be transparent with the front-page-1 image showing in the background until you scroll down. If you want to customize it so the black background shows at all times, then you can change this code located around line 1178 in your CSS –

                                                                                        .featured-section .site-header {
                                                                                        	background-color: transparent;
                                                                                        	border:  none;
                                                                                        }

                                                                                        To look like this –

                                                                                        .featured-section .site-header {
                                                                                        	background-color: #000;
                                                                                        	border:  none;
                                                                                                padding: 0;
                                                                                        }

                                                                                        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                        in reply to: Upper and Lower Bar Color and Front page image Movement #19257
                                                                                        Eric
                                                                                        Customer

                                                                                          The link you posted takes us back here to this page 🙂 Do you have a link to your site so I can see what needs to be changed?


                                                                                          I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                          in reply to: Anchor Text #19231
                                                                                          Eric
                                                                                          Customer

                                                                                            Do you have a link where this is already setup?


                                                                                            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                            in reply to: Upper and Lower Bar Color and Front page image Movement #19229
                                                                                            Eric
                                                                                            Customer

                                                                                              Gotta link we can check out?


                                                                                              I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                              in reply to: Adjustment to Category "Home" Pages #19157
                                                                                              Eric
                                                                                              Customer

                                                                                                Do you have a link?


                                                                                                I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                                in reply to: Blog READ MORE link #19110
                                                                                                Eric
                                                                                                Customer

                                                                                                  Here’s a tutorial link on how to change the Read More text – http://my.studiopress.com/snippets/post-excerpts/#content-more-link


                                                                                                  I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                                  in reply to: Navbar Color #19099
                                                                                                  Eric
                                                                                                  Customer

                                                                                                    You’ll need to edit your style.css file to do this. Open up your CSS and search for .site-header.light { which should be on line 1183. You’ll see the background color and be able to change the color from there –

                                                                                                    .site-header.light {
                                                                                                    	background-color: #000;
                                                                                                    	padding-top: 0;
                                                                                                    }

                                                                                                    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                                    in reply to: Aspire Pro Comment Field #18852
                                                                                                    Eric
                                                                                                    Customer

                                                                                                      Hi, do you have a link to your site so I can take a look?


                                                                                                      I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                                      in reply to: New Epik 1.5 release.. #18795
                                                                                                      Eric
                                                                                                      Customer

                                                                                                        Yep, I looked through the code and noticed so many updates! I love this new version so much!

                                                                                                        Can’t wait to get started.

                                                                                                        I have so many clients that are going to love this 🙂


                                                                                                        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                                                                                                      Viewing 50 posts - 51 through 100 (of 2,091 total)