Forum Replies Created
-
AuthorPosts
-
January 15, 2013 at 3:01 pm in reply to: Executive Theme – Changed font for title in CSS – Not working on Home Page #12111
Have you tried “font-weight: 500;” in the “#title a, #title a:hover” section located around line 212 of the style.css?
I believe this link below will provide a how-to for what you would like to accomplish -
http://www.briangardner.com/blog-page-single-category/
And this plugin, if you are not already using it, will help you more easily with getting the Category IDs you will need -
http://wordpress.org/extend/plugins/reveal-ids-for-wp-admin-25/
Widget Logic is (depending upon the exact nature of the task) is also useful. Might find it simpler, again depending on the nature of the task.
http://wordpress.org/extend/plugins/widget-logic/
Regarding Prose 1.5.1 and Genesis 1.9.1 I just received an email from Daisy at Support. She wrote that the “patch” to Prose is supposed to be posted today Jan/10/2013.
Just find the section below in the CSS at about line number 1355, and add the rule “display: none;”
It will look something like this, depending upon any previous edits -
#footer {
clear: both;
font-size: 14px;
margin: 0 auto;
text-shadow: 1px 1px #fff;
width: 100%;
display: none;
}
Are you inserting plain text? Often an issue like you describe will present when text is copied and pasted from a formatted document from a word processing application like MS Word. You need plain text as WordPress’ HTML formatting is not compatible with programs like MS Word.
Excellent! Resolved! (at least for now)
It appears there are many issues with Prose 1.5.1 and Genesis 1.9.1. On the 8th of January I received an email from Daisy at CopyBlogger support which reads in part “The exact cause of the problem has been identified and a fix will be pushed out in Genesis very soon. ”
In the meantime she suggested a workaround that seemed to provide at least of some of the Design settings to present accurately (in my sites) and that was to turn on the “Minify” option. Your mileage may vary but it is worth a try.
1) Recognizing that you are Canada based, I am not sure why it is important to use .ca? I would be disinclined to use .ca based on the observation that few if any smartphones and tablets have a .ca key, but virtually all have a .com key. http://www.newmediatrendwatch.com/markets-by-country/11-long-haul/45-canada%3Fstart%3D2
2) Few of my clients outside the US still use or find marketing value in their geographic related TLD, and instead are adopting .com domain names.
3) With what seems like the ongoing decreasing search marketing value of having keywords in a domain name, I would use your brand as the domain name and through constant quality content associate your brand as analogous to the keywords related to your service and specialty(ies). I feel that this is the best value and ROI option. Plus on verbal referrals it will mean that your site will always come up first.
4) If you still want to use one of your three options use the Google keyword tool and see what terms are highest in search usage. Then use the domain you have with the terms with the highest counts or craft a new one with the highest count terms.
</my.02>
Hopefully there will not be too many changes degrading the shared hosting service of Bluehost/Hostmonster and Hostgator now that Endurance International Group owns them both.
As a long time Hostgator customer though it seems that most things following the sale to EIG so far are good.
January 3, 2013 at 4:17 pm in reply to: Suggestion: Add ability to embed Gists here on the forum using this function #9299Thank you, Nick! Very good to have the Syntax Highlighter Evolved plugin installed in the forum! Would you possibly enable the plugin’s options like line numbers, tool bar and tab manager?
It would be really great too if there is any chance you could install/enable a SyntaxHighlighter TinyMCE button for the post editor? It seems annoying to make people refer to the FAQ for posting code how-to info when it is possible for the Syntax Highlighter Evolved to have that in the editor making it easy and eliminating the need to go to the FAQ to review what is needed for each of the codes.
http://wordpress.org/extend/plugins/syntaxhighlighter-tinymce-button/
Your images need to be the same size as set in the Slider settings. Currently the images are 920px wide but they need to match the the width of the 1040px setting of the Slider.
Yes there is a way to avoid using simple Hooks! Depending on exactly how you may want it appear (or not appear) below are some slightly different methods -
http://my.studiopress.com/snippets/post-meta/
http://wpsmith.net/2011/genesis/remove-or-change-post-info-or-post-meta/
http://www.billerickson.net/genesis-quick-tips/
Below is the selector that aligns the menu items to the left or right. It should be around line 301 in the CSS.
.menu-primary li, .menu-secondary li, #header .menu li {
float: left;
list-style-type: none;
}As you can see it floats all three menus to the left, so you will need to break-out the secondary menu. You could do this by replacing that section with these two sections -
.menu-primary li, #header .menu li {
float: left;
list-style-type: none;
}.menu-secondary li {
float: right;
list-style-type: none;
}
@Darlene Darragh exact match domain names (EMD) or keyword rich domain names are becoming much less advantageous due to changes yhis past Fall by Google. For more detail about this – http://resultzdigital.com/2863
-
AuthorPosts