kronos

Forum Replies Created

Viewing 40 posts - 301 through 340 (of 340 total)
  • Author
    Posts
  • in reply to: Additional Button Colors? #5421
    kronos
    Customer

      I’d love to help, but you should keep in mind, that the purpose of the forums is to lead you in the right direction so that you can write your own code, we can’t always do it for you. Hopefully I can help lead you to “Learn How to Fish” rather than just “giving you the fish”….That’s just something to keep in mind when using any forum……If you were hiring someone, well, then that’s different 🙂

      To edit your css file you should be able to access that under Appearance > Editor….then select the style.css file. You can also log in by FTP and access your files directly and you could edit the css that way. The FTP way is the preferred way, for many reasons…..you can do a Google search on what FTP is and how to set it up. There should be plenty of tutorials out there, especially for whatever host you’re using.

      For the buttons, you can look here at this tutorial if you haven’t already – http://demo.appfinite.com/optimal/buttons-boxes/ ….as mentioned before, you can just copy one of them in your css and replace the color code with the code that you want. The code that you want is around line 1696 in your css file. If for any reason you can’t access it (assuming you’re using Jetpack or something) here is the optimal css from the demo (which is the same as yours) – http://demo.appfinite.com/optimal/wp-content/themes/optimal/style.css?ver=1.9.1 You can search for the button codes under the “Buttons” section –

      /* Buttons
      ------------------------------------------------------------ */

      To find the color that you want, just use a color picker. Here is one for example – http://www.colorpicker.com/ After you select your color look at the top for the 6 digit hex code which should be on top right after the “#

      Here is a site that will allow you to create your own buttons with a button generator – http://www.cssbuttongenerator.com/ there are many more you could search for as well.

      This should be more than enough info to get you going. Hope that helps.

      in reply to: Additional Button Colors? #5411
      kronos
      Customer

        Please see my previous comment above – https://appfinite.com/topic/additional-button-colors/#post-5275 and you can add whatever color you want when you create it. Just use an online color picker to get the code for whatever color you want.

        in reply to: Footer Disclaimer Widget Question #5391
        kronos
        Customer

          You can read some of the tutorials on StudioPress about adding and registering hooks – http://www.studiopress.com/resources and http://my.studiopress.com/snippets/

          You could copy one of the widgets on the homepage and rename it since you only want it to show on the homepage. You’ll also need to do the same for the functions.php file since you’ll need to register that newly created widget at the bottom.

          When you create your widget for the homepage, you’ll need to wrap it with your class or ID and you can control the css by adding it to your style.css file of the theme.

          If this all seems to difficult, I’d recommend hiring a dev to handle it all for you.

          in reply to: Change title color on hover as the Epik demo #5302
          kronos
          Customer

            You’re Welcome

            in reply to: Change title color on hover as the Epik demo #5292
            kronos
            Customer

              Yes just do the same thing but add #header a:hover

              in reply to: Additional Button Colors? #5291
              kronos
              Customer

                You marked your recent post as private which means I’m unable to view it. I think only admins/moderators are able to view private messages with bbpress forums. I’m just a regular customer (like you)…so you’d have to repost it in order for me to see it.

                in reply to: Additional Button Colors? #5275
                kronos
                Customer

                  If you look in your css file around line 1696 you’ll see the buttons colors and classes. Just copy one of them and rename it to what you want…..then of course you can edit the colors and things.

                  in reply to: Text on the widgets area #5260
                  kronos
                  Customer

                    They have a some tutorials/code snippets located here – https://appfinite.com/forum/epik-theme-support/ at the top.

                    in reply to: Change title color on hover as the Epik demo #5259
                    kronos
                    Customer

                      Since you’re using the dark blue color scheme, you’ll need to add this for the hover –

                      .epik-darkblue #title-area a:hover {
                      	color: #aaa;
                      }
                      in reply to: Categories and SEO in Epik #5244
                      kronos
                      Customer

                        I would just do a google search on how to create a category template with Genesis….it would probably be too difficult to explain here in the forums.

                        Yes you can use the Ubermenu with Genesis, I’m currently using it myself and it works great.

                        in reply to: Optimal update #5042
                        kronos
                        Customer

                          @Eric, I know Wes has been pretty busy lately, but do you know when he’ll have it ready?

                          in reply to: Optimal update #5041
                          kronos
                          Customer

                            I’ve been wondering the same thing as well. Can’t wait to see it when its ready.

                            in reply to: Fixing Header to accordion properly… #5038
                            kronos
                            Customer

                              From what it looks like, you don’t have a width defined for those two areas….which is why it expands with no limit. You should probably wrap those in a div and add a width to it.

                              in reply to: custom about page #4973
                              kronos
                              Customer

                                My pleasure!

                                in reply to: custom about page #4951
                                kronos
                                Customer

                                  Brian Gardner has a tutorial on how to create landing pages here – http://www.briangardner.com/create-landing-page/

                                  in reply to: Narrow the Sidebar #4817
                                  kronos
                                  Customer

                                    You’re Welcome!

                                    in reply to: Narrow the Sidebar #4802
                                    kronos
                                    Customer

                                      I think the main issue is the fact that your sidebar floats to the left…..which is why it shows up so close to the content. It’s supposed to float to the right. I’m guessing you changed this since the Epik theme has it to the right by default. So if you look around line 618, just change it to float: right like this –

                                      .content-sidebar-sidebar #sidebar-alt,
                                      .footer-widgets-3,
                                      .sidebar,
                                      .sidebar-content #content,
                                      .sidebar-content-sidebar #content-sidebar-wrap,
                                      .sidebar-sidebar-content #content,
                                      .sidebar-sidebar-content #content-sidebar-wrap,
                                      #footer .creds,
                                      #header .widget-area {
                                      	float: right;
                                      }

                                      To change the width you have to use the code I gave above. That is the sidebar, so it will change, just make sure you’re editing the right part.

                                      in reply to: Disable Fade on Images On Mouseover #4799
                                      kronos
                                      Customer

                                        Awesome!

                                        My pleasure

                                        in reply to: Replicate home page look/layout on multiple pages #4784
                                        kronos
                                        Customer

                                          Since the homepage is designed to show widgets only on the homepage, you’ll have to copy the home.php file and turn it into a page template. You can do so by adding this right under the first <?php

                                          // Template Name: Homepage

                                          This will take some effort on your end if you want the widgets to show different content on separate pages. You could either recreate all of the widgets and have each template show completely separate widgets (hard way)…..or you could try using a plugin called Genesis Simple Sidebars, or the Custom Sidebar plugin to show different content for the widgets on different pages. Other than that, you’d probably have to hire someone to do this all for you if you’re unable to figure it out…..but give the plugins a try first to see if that helps.

                                          in reply to: Disable Fade on Images On Mouseover #4783
                                          kronos
                                          Customer

                                            Take a look around line 1776 in your style.css file and remove the opacity –

                                            #content a:hover img {
                                            	-moz-transition:all .5s ease;	
                                            	-o-transition:all .5s ease;	
                                            	-webkit-transition:all .5s ease;
                                            	transition:all .5s ease;
                                            	opacity: .5;
                                            	padding: 0;
                                            }
                                            in reply to: Change title color on hover as the Epik demo #4782
                                            kronos
                                            Customer

                                              That is called the #title-area and can be located and adjusted around line 656 in your style.css file –

                                              #title-area {
                                              	width: 30%;
                                              }
                                              
                                              #title-area a {
                                              	color: #fff;
                                              	font-weight: 300;
                                              }
                                              
                                              #title-area a:hover {
                                              	color: #aaa;
                                              }
                                              in reply to: Narrow the Sidebar #4781
                                              kronos
                                              Customer

                                                You’re changing the wrong part of the css and in the wrong section. The part that says – “/* 176px/ 1152px */” is a comment, not actual css that is being used. You’re not supposed to edit that since it won’t change anything, it’s just a note. You’re supposed to change the width to the left of that. But, that is still the wrong sidebar. You should be editing the sidebar around line 527 in your css. It will look like this –

                                                .sidebar {
                                                    width: 30.555555555%;
                                                }
                                                in reply to: Side-by-Side Widgets in Epik Theme #4658
                                                kronos
                                                Customer

                                                  My pleasure!

                                                  in reply to: Positioning 2 elements #4655
                                                  kronos
                                                  Customer

                                                    First you’re going to need to figure out if you’re going to use tables or div’s….I’d recommend div’s, tables aren’t recommended since they are considered the “old outdated way” and div’s + css are much better and up to date.

                                                    There are a lot of tutorials that already explain how to do this on Google, so I’d recommend searching for – “how to add 2 floating divs” since this is a basic question. Here is the first result from StackOverflow – http://stackoverflow.com/questions/446060/css-two-divs-next-to-each-other There are many more that should explain how to do this.

                                                    in reply to: How to use Videos #4654
                                                    kronos
                                                    Customer

                                                      This isn’t something we can necessarily help you with, but you can search for a plugin that will give you this functionality. Try searching WordPress.org, CodeCanyon, or you can do a Google search for a plugin as well.

                                                      in reply to: What content for each widget #4653
                                                      kronos
                                                      Customer

                                                        You can add it in manually or you can use one of the widgets like the featured page, or post widget. Most people just add in the code manually in a text widget.

                                                        You can Google – “How to add images in html” Here is the first result – http://www.w3schools.com/html/html_images.asp

                                                        in reply to: Featured image not showing #4652
                                                        kronos
                                                        Customer

                                                          Did you make sure that your featured image is actually uploaded to the post/page?

                                                          in reply to: What content for each widget #4630
                                                          kronos
                                                          Customer

                                                            You can use any content/widget you want inside of the widget areas. Most of the widgets used in the demo are Text Widgets….which means the text was manually added. They are using the Genesis Featured Posts widget inside the Home Featured Posts widget area…..everything else is just text.

                                                            Genesis doesn’t have demo content for widgets, the XML file that comes with the theme is just for Posts and Pages.

                                                            in reply to: Gallery TYPE not showing on Genesis/Epik? #4593
                                                            kronos
                                                            Customer

                                                              Yeah, it’s working fine for me as well. Did you check to see if you are looking in the right place?

                                                              in reply to: Full Width Page Issue #4592
                                                              kronos
                                                              Customer

                                                                If you look in your style.css file, you’ll see something like this around line 898 –

                                                                .full-width-content #content {
                                                                    padding: 0;
                                                                    width: 100%;
                                                                }

                                                                You can change the width to 960px or whatever you want.

                                                                For the other question you’ll have to create a separate topic/thread for it. Forum Policy – https://appfinite.com/topic/forum-rules/

                                                                Whenever you test it let me know if that fixes the issue.

                                                                in reply to: Slider Header colors are different on each slide #4591
                                                                kronos
                                                                Customer

                                                                  The highlighted links are the links that you’ve visited. For example, since I’ve never been on your site, they all show up as gray for me, and any new user visiting your site.

                                                                  in reply to: Make image responsive #4590
                                                                  kronos
                                                                  Customer

                                                                    If you’re using a plugin that’s not responsive (fixed width) then it won’t be responsive inside the theme, or any theme. You can see if the plugin creators have any code that you could add to make it responsive…..some developers offer this as an option.

                                                                    in reply to: Blog images #4583
                                                                    kronos
                                                                    Customer

                                                                      My pleasure!

                                                                      in reply to: Blog images #4574
                                                                      kronos
                                                                      Customer

                                                                        You can turn the Featured Images on or off in your Genesis Theme settings under “Content Archives“. The second image under all of your featured images aren’t showing up at all, as if the images don’t exist, or the filename was changed or something…..but that doesn’t really have to do with the theme though, it’s your post images.

                                                                        in reply to: Footer Menu #4572
                                                                        kronos
                                                                        Customer

                                                                          Are you talking about the footer widgets section? If so, you can just add a custom menu widget to any of the three available footer widget areas. If you’re talking about the bottom footer, then you would have to manually add menu links. You can learn how to do this from StudioPress here – http://my.studiopress.com/snippets/footer/

                                                                          in reply to: Side-by-Side Widgets in Epik Theme #4571
                                                                          kronos
                                                                          Customer

                                                                            Yes it sounds like you’re on the right track, you just need to look in your home.php file to make the changes to the html/php code. The widgets are wrapped inside of the different backgrounds that you see. So you would need to create an extra widget next to the ones that are already there (just duplicate and rename) and that should be it. Make sure and register your new widgets in your functions file. There is a lot of info on how to create widgets on the StudioPress tutorial pages.

                                                                            in reply to: Problem Making Images On Homepage Linkable #4483
                                                                            kronos
                                                                            Customer

                                                                              Hello @Abigailjane,

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

                                                                              in reply to: Center Align Featured Images #4328
                                                                              kronos
                                                                              Customer

                                                                                I had a similar issue with another Genesis theme, but decided to just make all of my images the same size.  It’s the Genesis Framework that controls this functionality, so you could probably ask someone over at the StudioPress community forums if they have ever done something like this.

                                                                                in reply to: Events Plugin Recommendations? #4327
                                                                                kronos
                                                                                Customer

                                                                                  I also highly recommend Event Espresso.  Can’t go wrong, it works great!

                                                                                  in reply to: Guessing on home php #4322
                                                                                  kronos
                                                                                  Customer

                                                                                    “As a ‘feature request’ it would be cool if you had home page layout option, which allowed a person to optionally select where/how they wanted the home page components layed out. Just a thought.”

                                                                                    It would be cool, but that would definitely need to be a plugin, not a theme feature. Wes (and StudioPress) are known for keeping Themes simple, adding functionality like that would make them become way too bloated.

                                                                                    I personally like Genesis for the fact that its simple without a ton of bloated unnecessary options like Thesis, Woothemes and other frameworks. The child theme should only be a functions file, css, images, and maybe one or two other files, maybe. Anything beyond that should be created with a plugin in my opinion. Just do a Google search for – “bloated wordpress themes” and you’ll understand where I’m coming from.

                                                                                    I don’t know, maybe I’m just old school :p

                                                                                  Viewing 40 posts - 301 through 340 (of 340 total)