Forum Replies Created
-
AuthorPosts
-
Doug EdgingtonMemberDoug EdgingtonMember
It appears that you are running a previous version of the Executive Pro theme. It is possible that your version did not contain the hamburger menu. You may want to contact StudioPress support and verify. The newest version of the theme has a hamburger menu built-in.
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberYou can compare your stylesheet to the theme's original stylesheet.
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberFor the "Case Studies" title, you want to target widget-title. If you increase the font-size for widget-title, it will apply to all widget titles. If you want to single out this particular title, you can use something like the following:
.home-portfolio .widget-title { font-size: 18px; }
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberThe Metro Pro theme has style rules in place that add spacing to the right of the image when align left is applied. Did you possibly remove the style rules? Example of what the style rules might look like below:
a.alignleft { margin: 0 24px 12px 0; }
Doug Edgington
http://www.dougedgington.comSeptember 30, 2016 at 6:18 am in reply to: Image will not appear when site is viewed with Firefox #193944Doug EdgingtonMemberOne possibility is the time range of cleared browser history. When clearing the history in FireFox it offers a time range. By default the time range is only 1 hour.
The host typically sets up the digital certificate, but I am not sure it they will help with getting the site running over https. Maybe it depends on the host.
I haven't converted an entire site to https before, but it likely requires applying WordPress settings. And you may need to set up redirects. Or you may be able to find a plugin to force everything over to https. I am not sure what the best approach is for this.
Doug Edgington
http://www.dougedgington.comSeptember 29, 2016 at 3:50 pm in reply to: Image will not appear when site is viewed with Firefox #193918Doug EdgingtonMemberI am on the same set-up. The only thing I can think is that is a caching issue with your browser. When you cleared your browser cache did you completely "quit" FireFox to shut it down and restart it?
I noticed that your site uses http, but the images are referenced over https. I thought this might be causing the issue with FireFox for some reason, but then you wouldn't be able to see the other images either.
Doug Edgington
http://www.dougedgington.comSeptember 29, 2016 at 12:26 pm in reply to: Image will not appear when site is viewed with Firefox #193903Doug EdgingtonMemberSeptember 29, 2016 at 11:58 am in reply to: Image will not appear when site is viewed with Firefox #193898Doug EdgingtonMemberI am using FireFox on a Macbook, and the image is showing up for me under "Connect with Us".
Doug Edgington
http://www.dougedgington.comSeptember 22, 2016 at 6:27 am in reply to: 2 widgets below each other in Smart Passive Income Pro #193518Doug EdgingtonMemberNo problem. Using the classic footer sidebars is probably the best solution if you want to be able to stack items. This type of issue never crossed my mine. I switched back over to the classic footer sidebars in a theme I am working on.
Doug Edgington
http://www.dougedgington.comSeptember 21, 2016 at 6:56 pm in reply to: 2 widgets below each other in Smart Passive Income Pro #193498Doug EdgingtonMemberI think this particular theme is using flexible footer widgets, meaning there is one sidebar, and the columns and rows are determined by the number of widgets. So there likely isn't a way to place two widgets in a column together. Does the social icon plugin that you are using offer a shortcode to output the icons? If so, this could likely be placed into the text widget along with text.
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberDo they provide you with any type of copy and paste code snippet to add t your site? If so, you can place the snippet in a text widget within one of your sidebars. A good place might be in a footer sidebar.
Doug Edgington
http://www.dougedgington.comSeptember 19, 2016 at 6:50 am in reply to: When does theme modification become a custom theme? #193345Doug EdgingtonMemberYou can also use the Genesis Sample Theme as a starting point for your projects. Or you can use the Genesis Sample theme as a starting point to create your own starter theme. Then you can pick a part existing Genesis Child themes to learn how things are done such as registering sidebars, creating a front-page template, etc...
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberOne thing I have noticed is that you are querying a custom post type ( portfolio ). But you don't have it included within your query arguments. Example below:
$args = array( 'post_type' => 'portfolio', 'post_per_page' => 12 );
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberHow many portfolio items should it be showing? That is, how many portfolio posts do you have on the site?
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberBy the way, one of your replies is marked as private for some reason. Not sure if it was something that was intended for me.
Last time we talked you were having image size problems. That is what I addressed in my previous reply.
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberSorry, I didn't know you replied until now. In a previous post you mentioned that you declared the following mage size:
add_image_size( 'portfolio-image', 330, 230, true );
But in looking at your portfolio template, within genesis_get_image() you are calling the lp-portfolio image size. If this image size does not exist, I think it will default to the full-size image. I didn't look through all of the code. I was only looking for the image size that you are calling. The portfolio-image is the one you should be calling. As long as you added the add_image_size declaration before you uploaded images, that image size should exist. Otherwise you would have to regenerate the thumbnails.
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberNo problem.
Are you referring to the hamburger menu icon color?
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberYou would change it within the 1023px media query:
@media only screen and (max-width: 1023px) { .front-page .site-header { background-color: #fff; } }
Doug Edgington
http://www.dougedgington.comDoug EdgingtonMemberYou can use something like the following:
.nav-primary .genesis-nav-menu a { color: #000; }
Keep in mind, that this is also going to change it in responsive mode. It appears that you made the header background white. Your header is still black in responsive mode. So you won't be able to see the text, unless you switch the color of the text back to white or also change this header background to white.
Doug Edgington
http://www.dougedgington.com -
AuthorPosts