Eric

Forum Replies Created

Viewing 50 posts - 151 through 200 (of 2,091 total)
  • Author
    Posts
  • in reply to: How to add H1 to homepage #17799
    Eric
    Customer

      Where exactly are you trying to add h1 tags?


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

      in reply to: Add a Header Right #17656
      Eric
      Customer

        Try adding width: 300px; to your .site-title code. That should make it the normal size again.


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

        in reply to: Selecting an Appfinite theme #17625
        Eric
        Customer

          Yes this can definitely be done. I can’t remember any example sites, but I do know it’s possible to do. You can set the Portfolio as the homepage in your WP admin settings page.


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

          in reply to: appearance > editor missing #17604
          Eric
          Customer

            Are you logged in as the Admin with all privileges/access on your account?

            How did you setup your WP install? Sometimes when people install WP through their Hosting Companies Custom Software (usually referred to as a 1 Click Install) they can be limited depending who you go with.

            If you upload and install WP through FTP then this issue shouldn’t be happening.


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

            in reply to: Background Images Whiting-out #17599
            Eric
            Customer

              Hello Ike, do you have a link to your site so I can check it out?


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

              in reply to: Home Features In Columns Not across #17566
              Eric
              Customer

                Do you have a link to your site so we can see what’s going on?


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

                in reply to: Need help with two things #17551
                Eric
                Customer

                  You could either add word-wrap: break-word; to the .genesis-nav-menu .sub-menu a in your css –

                  .genesis-nav-menu .sub-menu a {
                      background-color: #222;
                      font-size: 12px;
                      padding: 20px;
                      position: relative;
                      word-wrap: break-word;
                      width: 200px;
                  }

                  Or you could increase the width in that same code above ^

                  There are a lot of tutorials out there for adding search to your menu. If you do a Google search you’ll see some pop up.

                  Here are a couple –

                  http://my.studiopress.com/snippets/nav-extras/

                  http://wpsites.net/web-design/3-ways-to-customize-genesis-search-form-input-box-button/

                  http://www.petersenmediagroup.com/genesis-framework/adding-simple-social-icons-search-form-genesis-menu/


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

                  in reply to: image takes up whole widget #17481
                  Eric
                  Customer

                    Yes you can remove the padding on the .welcome-features .wrap section by changing it to 0 –

                    .welcome-features .wrap {
                        margin: 0 auto;
                        overflow: hidden;
                        padding: 0;
                        width: 1140px;
                    }

                    You’ll also need to remove the margin that shows up at the bottom of each widget that you add as well. You can do it like this (line 1346) –

                    .welcome-features .widget {
                    	line-height: 0;
                            margin: 0;
                    	overflow: hidden;
                    }

                    I would also add line-height: 0; to the code above so that there is no space under the images.


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

                    in reply to: image takes up whole widget #17472
                    Eric
                    Customer

                      I’d probably remove the parallax features if that’s what you’re trying to do. They can be accessed from the front-page.php file.

                      I would also shrink the image to a smaller size. Last time I checked it was around 8000px….try and aim for a round 1800px width and 1200px height….doesn’t have to be this exactly, but start there.

                      To show the entire image height…..you’d need to add more space inside the widget area so it shows more of the background. You can do this by either adding padding for that particular widget background….or you could add a minimum height to that widget area. Both ways should work.


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

                      in reply to: image takes up whole widget #17470
                      Eric
                      Customer

                        It looks like everything is already setup. I forgot that the code is already included in this theme. If you look at line 1594 in your style.css file you’ll it –

                        .hf1,
                        .hf3,
                        .hf4,
                        .hf5,
                        .hf6,
                        .hf7,
                        .hf8,
                        .hf9,
                        .hf14 {
                        	-webkit-background-size: cover;
                        	-moz-background-size: cover;
                        	background-attachment: fixed;
                        	background-position: 50% 0px;
                        	background-repeat: no-repeat;
                        	background-size: cover;
                        }
                        

                        I don’t think that would work with the slider, but every other area you add a Background image to will automatically use that code above.

                        I looked at the image of the plane near the bottom, and it appears to be working.


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

                        in reply to: image takes up whole widget #17468
                        Eric
                        Customer

                          Oh yes, you mean like this – http://demo.appfinite.net/guru/

                          To do this, you can add this to your style.css file –

                          background-attachment: fixed;

                          Just add it to the widget area that you plan to use it for. I could tell you the exact line in your css to adjust, but the link you’re posting doesn’t seem to work whenever I click it.


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

                          in reply to: Responsive issue w/ Slider Wide #17465
                          Eric
                          Customer

                            Yeah I wouldn’t use tables, use divs instead. Tables don’t show up consistently across browsers. Also don’t use inline code unless you have to. It’s much better to use classes or ID’s and then link them to your CSS stylesheet.


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

                            in reply to: full width (image) homepage widget #17463
                            Eric
                            Customer

                              Closing since this is a Duplicate Post.

                              You can continue on your original thread started here – https://appfinite.com/topic/image-takes-up-whole-widget/

                              If you have any trouble replying (example: if the Reply box doesn’t show up), just hit your reload button on your browser and the fields should show up again. Here is more info just in case – https://appfinite.com/topic/having-trouble-logging-in/


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

                              in reply to: image takes up whole widget #17462
                              Eric
                              Customer

                                What @Andykev wrote is exactly how you can achieve that. The Customizer has options to add background images that take up the entire background. You could use the customizer, or you could manually add them in through CSS.

                                The link to your site isn’t working by the way.


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

                                in reply to: reduce content width on full width page #17093
                                Eric
                                Customer

                                  Are you just trying to shrink the content area or the entire site all together? If it’s just the Content area, then you could adjust the .full-width-content .content in your CSS like this –

                                  .full-width-content .content {
                                      float: none;
                                      margin: 0 auto;
                                      width: 80%;
                                  }

                                  That removes the float, centers it, and decreases the width by 20%. If that’s what you want, you can decrease the width even more if you need to.


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

                                  in reply to: reduce content width on full width page #17051
                                  Eric
                                  Customer

                                    Do you have a link to your site? I can take a look at your site and let you know the best way to do this.


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

                                    in reply to: Guru documentation? #16967
                                    Eric
                                    Customer

                                      @Terri, you could still add featured posts/pages if you wanted to. All you would have to do is add a little bit of css to make them float on the side of each other.


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

                                      in reply to: After Entry CSS #16965
                                      Eric
                                      Customer

                                        Hi, if you have a link to your site I can inspect it and help you figure out exactly what to fix.


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

                                        in reply to: White space when shrinking browser #16916
                                        Eric
                                        Customer

                                          Sorry for the late response, I have no idea why I’m not getting notifications….probably something to do with my email.

                                          I looked at the link now and it appears to be working. Did you get this fixed? It’s looking good on my end.


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

                                          in reply to: Adding a browser wide image under the header on homepage. #16914
                                          Eric
                                          Customer

                                            Basically the Slider WIDE is a full width widget location.

                                            The regular Slide widget area is 1140px wide.

                                            On the demo they are using the regular Slider widget location. If you want a FULL WIDTH image or slider to fill both ends of the browser, then you would use the Slider WIDE location.


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

                                            in reply to: thumbnail on post category listings #16911
                                            Eric
                                            Customer

                                              Do you have a link to your site? There must be a way to have it set to a certain size. I could take a look and see if it’s possible with CSS


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

                                              in reply to: Change Header Color Only #16720
                                              Eric
                                              Customer

                                                Add this piece of code to change it to white –

                                                .epik-pink .head-wrap {
                                                	background: #fff !important;
                                                }

                                                Or you could change this in your css –

                                                .epik-pink .head-wrap, .epik-pink .welcome, .epik-pink .home-feature-bg-dark, .epik-pink .author-box, .epik-pink .footer-widgets {
                                                    background: #008c82;
                                                    color: #eee;
                                                }

                                                That is where it’s coming from. They are all grouped together, so if you want to style just one of them individually, then you would have to separate them.


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

                                                in reply to: Is there a styles plugin and and license key I am missing? #16719
                                                Eric
                                                Customer

                                                  No you don’t need a license or any other plugin in order to make Epik work. That video you’re talking about wasn’t created by Appfinite, that is a 3rd party plugin that someone made, but you don’t need it for Epik.

                                                  The tutorials to get Epik setup and working are located at the top of the Epik Forum page here – https://appfinite.com/forum/epik-theme-support/

                                                  You can use this link in order to import all the widget content from the Epik demo automatically – https://appfinite.com/topic/easy-way-to-setup-the-epik-homepage-in-one-click/ …you can add them in manually if you want to, there are tutorials that help with that.


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

                                                  in reply to: URGENT – Visual editor doesn't work anymore! #16665
                                                  Eric
                                                  Customer

                                                    I just had your login info removed. In the future, you have to check the box that says “Set as Private Reply” when posting your login or any other Private information.

                                                    As Andy mentioned, you should definitely reset your passwords immediately, just in case the wrong person saw it.


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

                                                    in reply to: URGENT – Visual editor doesn't work anymore! #16664
                                                    Eric
                                                    Customer
                                                      This reply has been marked as private.
                                                      in reply to: White space when shrinking browser #16594
                                                      Eric
                                                      Customer

                                                        No that’s not a mistake that is exactly how you would add it to your css. You can use background OR background-image depending on the situation. You also don’t need to use quotes.

                                                        I just took a look at your site but it looks like you’re using a different theme now. The code I posted would only work for Appfinite’s Epik theme.


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

                                                        in reply to: Adding slider to Square One #16588
                                                        Eric
                                                        Customer

                                                          “Wow…over a year with no response!”

                                                          LOL I guess not too many people have used that plugin with that particular theme. Either that or they haven’t seen this particular post.

                                                          Anyways, I have the plugin and it will work with pretty much any theme sold on this site. All you have to do is set it up and add it to a widget area. Pretty easy πŸ™‚

                                                          If you haven’t bought it already, see if they have a refund policy so if you do decide to purchase the plugin and you don’t like it, then you can get your money back. But it definitely works with the theme.

                                                          Here it is with Appfinite’s Ally theme – http://demo.appfinite.net/ally/


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

                                                          in reply to: Button Colors #16562
                                                          Eric
                                                          Customer

                                                            Ahh, yes that would be the Cache. When you originally made your adjustments, it probably didn’t show up for you immediately because of your browser cache.

                                                            Anytime you make adjustments to your Style.css or any file in your theme, I would highly recommend clicking your RELOAD button on your browser because it will Instantly Clear that Browser Cache and show your recent changes immediately.

                                                            Other than that, everything is looking great! I’ll go ahead and close this thread since everything is working. If you run into any other issues feel free to create a new thread and let any of us know πŸ™‚


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

                                                            in reply to: Button Colors #16557
                                                            Eric
                                                            Customer

                                                              I just took a look at that page, but it seems to be working? I’m guessing you got it fixed, or am I missing something?

                                                              I’m looking at the button that says “Book Voice Talent”….which is showing up blue

                                                              <a class="button large loyelblue" hreff="book-voice-talent">Book Voice Talent</a>

                                                              It seems to work even if the !important is removed, so the way you did it should work fine in the future if you want to create new button colors.


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

                                                              in reply to: Need to add drop shadow around wrap #16555
                                                              Eric
                                                              Customer

                                                                @ephraimdov Thanks for sharing, I’ll make sure and re-share that if another user needs it.


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

                                                                in reply to: White space when shrinking browser #16551
                                                                Eric
                                                                Customer

                                                                  Sorry about that, I didn’t see your reply.

                                                                  It would actually be better to add that image as a Background image in your CSS rather than an inline image. If you make it a background image in your css, then it will adjust to your browser size and there should be no white space.

                                                                  Do a search for .slider-wide in your css file and add it like this –

                                                                  .slider-wide {
                                                                      background: url(http://www.talkingapemedia.com/wp-content/uploads/2015/09/TAM-Homepage-Photo-0001-2280pixels-cropped.jpg);
                                                                      clear: both;
                                                                      width: 100%;
                                                                  }

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

                                                                  in reply to: Removing Link on Custom Logo #16552
                                                                  Eric
                                                                  Customer

                                                                    Do you have a link where you’re trying to do this at? I was going to see if CSS modifications would do it, if not, then I’m sure there are some PHP codes we could add.


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

                                                                    in reply to: xml sample files #16478
                                                                    Eric
                                                                    Customer

                                                                      I’m not the admin πŸ™‚ but the file is located inside your theme folder. Have you checked it yet?

                                                                      Also, check out the Tutorials on the Epik forum page (first several sticky posts at the top). This tutorial specifically shows how to add the widget content on the homepage to look exactly like the demo – https://appfinite.com/topic/easy-way-to-setup-the-epik-homepage-in-one-click/

                                                                      WordPress by default can only upload XML data like Posts, Pages, Menus, etc….but it won’t upload the Widget content on the homepage of the Epik theme, so you can use that plugin to automatically add them in if you want to.

                                                                      Be sure to take a look at all the other tutorials as well.


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

                                                                      in reply to: White space when shrinking browser #16480
                                                                      Eric
                                                                      Customer

                                                                        Hi, we would need a link to see what’s going on.


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

                                                                        in reply to: xml sample files #16476
                                                                        Eric
                                                                        Customer

                                                                          You can find the XML file inside your theme folder. Just unzip the theme file and you’ll see it inside the theme.


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

                                                                          in reply to: Extra spacing above the slider wide #16548
                                                                          Eric
                                                                          Customer

                                                                            @leah you would have to provide a link in order for any of us to be able to see your site so we can figure out what’s going on. I would suggest creating a New/Separate thread so you can get your issue fixed.


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

                                                                            in reply to: Button Colors #16426
                                                                            Eric
                                                                            Customer

                                                                              Hi, do you have a link? I can check out what’s going on.


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

                                                                              in reply to: Custom body class for background images #16402
                                                                              Eric
                                                                              Customer

                                                                                Hi, what is the link to your site where this is all taking place?


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

                                                                                in reply to: Problem in Menu #16398
                                                                                Eric
                                                                                Customer

                                                                                  Hi!

                                                                                  The thing is we would really need a link in order to see what’s going on…..otherwise there’s no way we would know. Also, if you are having an issue with a 3rd Party plugin that wasn’t created by Appfinite, then you would need to contact the Original Plugin developer in order to get a solution to your issue. Since most of us here in the community are most likely unfamiliar with that particular plugin, it would definitely be better to speak with the Plugin Creator to get a solution for this.


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

                                                                                  in reply to: Primary Sidebar Showing on Home Page #16396
                                                                                  Eric
                                                                                  Customer

                                                                                    Cool! Glad you got it fixed!


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

                                                                                    in reply to: Slider not working #16399
                                                                                    Eric
                                                                                    Customer

                                                                                      You have to have the Genesis Responsive Slider Plugin Installed in order for that to work. That widget importer just imports what the demo uses. So if you don’t have the Genesis Responsive Slider installed, then it won’t show up on it’s own, you need to install it first. So Install and Activate the slider and then it should work as long as you have everything installed properly.

                                                                                      The slider wide is a full width widget which means you can add an image or video and it will reach both ends of your browser regardless of how wide your browser is. The Slider widget is set at 1140px width, so it won’t go beyond 1140px in the center of the site/browser.


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

                                                                                      in reply to: Adding background image to home feature #16394
                                                                                      Eric
                                                                                      Customer

                                                                                        This can be done by just adding a Text Widget in the widget area you want to use. Once you do that let us know and I (or whoever sees it first) will be able to tell you how to adjust the margin/padding so it has enough space/height to be seen.


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

                                                                                        in reply to: Primary Sidebar Showing on Home Page #16380
                                                                                        Eric
                                                                                        Customer

                                                                                          @mjones@ravecommunications.com Can you try disabling all of your plugins and taking a look to see if it works then? That’s usually what it is, as long as you haven’t added any Custom PHP code to your theme.

                                                                                          So if you haven’t added any custom code to your theme, it could possibly be a plugin that is interfering with what you are trying to do.


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

                                                                                          in reply to: Adjusting Logo Size on Mobile #16379
                                                                                          Eric
                                                                                          Customer

                                                                                            What if you added this to your responsive section of the CSS (in the mobile area) –

                                                                                            	.header-image .site-header,
                                                                                            	.header-image .site-header .wrap {
                                                                                            		background-size: contain !important;
                                                                                            	}

                                                                                            Let me know if that fixes it…..if not, we’ll have to use another method.


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

                                                                                            in reply to: Mobil Menu not showing #16378
                                                                                            Eric
                                                                                            Customer

                                                                                              @tlctara AH! Somehow we replied at the same time! Where did you purchase the theme from? If you purchased from StuioPress, then you can download it from your account. If you purchased from here (Appfinite) then you can download it from here – https://appfinite.com/my-account


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

                                                                                              in reply to: Mobil Menu not showing #16377
                                                                                              Eric
                                                                                              Customer

                                                                                                @tlctara Hi, in the future can you please not upload and link to the Entire theme files of the theme directly. Non-Paying users will see it and download it which isn’t fair to those who actually paid for it (such as yourself) πŸ™‚

                                                                                                Anyways, I can definitely assist if you’re still having any issues with your menu. There was no response from you in a couple days so I wasn’t sure if you got it working or not. If you haven’t I can definitely assist πŸ™‚


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

                                                                                                in reply to: Navigating between widget areas #16361
                                                                                                Eric
                                                                                                Customer

                                                                                                  Do a Google Search for “Jquery Smooth Scrolling” that’s the exact terms you’ll need to look for when searching for that type of effect. Since the theme doesn’t come with that feature, you’ll have to add it yourself as a customization. I’m sure there are some WordPress plugins that do it automatically for you, but you could also manually do it by adding code in yourself if you want.

                                                                                                  Here is an example – https://wordpress.org/plugins/jquery-smooth-scroll/ But you can do a search on Google or WordPress.org if you want more options or plugins.


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

                                                                                                  in reply to: Image on full width page not mobile responsive #16275
                                                                                                  Eric
                                                                                                  Customer

                                                                                                    @Rainbowsurfer Try adding this to your CSS –

                                                                                                    .wp-caption img {
                                                                                                        width: 100% !important;
                                                                                                    }

                                                                                                    Although, that will only work if you’re able to remove the Width that is being added inline in your code. When I look at your Source Code, I can see the first image on this link – http://www.carbidoff.com/car-repair/ has a Fixed Size added Inline in your code. If you add it Inline then it sort of Overrides the Responsive CSS features. So that’s why the Responsive Features aren’t working properly. Once you remove those it should work back to normal.


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

                                                                                                    in reply to: error in the theme #16226
                                                                                                    Eric
                                                                                                    Customer

                                                                                                      It looks like the customizations that you’ve made to the theme have caused the issues that you are experiencing. When you make customizations to a theme and there are errors, it creates issues on your website. Do you have a list of what you’ve edited so you can go back and adjust what didn’t work?

                                                                                                      The logo isn’t showing up because the image/link doesn’t link to any images. That’s why it’s not showing anything.

                                                                                                      Also, I’m not seeing the issue of the “Essays” word appearing on your website. I checked some pages but none of them had that word/error displayed on any of them.


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

                                                                                                      in reply to: Update #16177
                                                                                                      Eric
                                                                                                      Customer

                                                                                                        @jasmendoza

                                                                                                        “My question is if I have this theme version 1.0 and I want to update my wordpress to version 3.9.8. it won’t work, because the theme works in a lower WordPress version”

                                                                                                        Generally this isn’t how Genesis Child themes work. The Theme itself will still work perfectly fine regardless if you update WordPress. There isn’t much code in Genesis Child themes that would be affected by WordPress updates. Most Genesis Child themes (Especially Appfinite’s Themes) are created with the EXACT Same standards as StudioPress. And StudioPress makes sure everything in the FRAMEWORK is up to date, and future proof….meaning old themes will still work perfectly fine on newer updates.

                                                                                                        That is the beauty of Child Themes πŸ™‚ Child themes are mostly design/CSS and a basic functions.php file which doesn’t really need to be updated that often unless the framework itself has made changes to the functions/code etc. But that rarely happens.

                                                                                                        You’ll be fine updating your site as long as you’re using a recent version of the theme…..if not, I would just check the functions file of the theme and compare it with the latest version. The functions file isn’t that big, so this can easily be done if needed. You could use a site like https://www.diffchecker.com/ to compare old versions to new versions.

                                                                                                        I think you’ll be fine updating to the latest version of WordPress. Before you do, as @Andykev said, just make sure and backup everything. Your hosting company should have a way to revert your site back just in case you make a mistake or if there is an error in the update process. Ask them about that before you update if you’re concerned……But I think you’ll be fine πŸ™‚


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

                                                                                                      Viewing 50 posts - 151 through 200 (of 2,091 total)