Prasanna SP
Forum Replies Created
-
Yes, I have the same issue with WordPress SEO plugin on my site. A quick fix would be great. I couldn’t write posts without HTML QuickTags Toolbar buttons! ??
Forum: Plugins
In reply to: [Tiny URL] [Plugin: Tiny URL] The output of this pluginThank you for using this plugin.
Forum: Plugins
In reply to: [Tiny URL] [Plugin: Tiny URL] The output of this pluginIt means the text Tiny URL for this post: is placed within
<p>
and</p>
with classnametiny-url
. So, you can use Custom CSS to style it. Example,.tiny-url { color: #FF0000; }
will give you – https://i.imgur.com/GAfTt.png
Forum: Fixing WordPress
In reply to: How to do a simple sale in WordPress with PayPal ?No plugin is required. Get “Buy Now” code from PayPal and put it in a Text/HTML widget.
I tried editing several php files with no success. If you know which file is the one to edit, let me know.
It’s your theme’s
404.php
fileForum: Fixing WordPress
In reply to: Widget for each page of site?You can use Widget Logic or Widget Logic Visual to limit the widgets to certain pages.
Random posts from specific categories option will be available in version 1.7
Forum: Fixing WordPress
In reply to: Aligning social media in header [Graphene Theme]It’s okay. If you have any graphene theme issues, ask the questions at Graphene Theme Support Forum. Chances of getting solutions will be more if you ask there. Me and a few volunteers will always be there to help the people.
Forum: Fixing WordPress
In reply to: Aligning social media in header [Graphene Theme]Oh! Are you referring that set of icons?
Add this to make them appear inline with the menu,
.social-profiles img { float: right; margin-top: -23px; }
It’ll give https://i.imgur.com/HG7hd.png
Forum: Fixing WordPress
In reply to: Aligning social media in header [Graphene Theme].at15t_wordpress { margin-left: 760px; }
Gives,
Change the margin value to position it according to your needs.
Use captcha along with contact from to filter out spam comments/messages.
Forum: Fixing WordPress
In reply to: Aligning social media in header [Graphene Theme]Add this to your child theme’s style sheet or in Graphene Options –> Display –> Custom CSS
.sociable ul { float: right; }
Forum: Themes and Templates
In reply to: [Graphene] [Theme: Graphene] Issue woth "Homepage Panes" GridURl please..
Forum: Fixing WordPress
In reply to: How to make author comments stand out from guest comments#comments li.bypostauthor, #comments li.bypostauthor.comment.depth-1 { background; #123456; }
Change the colour of course!
Forum: Themes and Templates
In reply to: [Graphene] change some things in graphene theme headerAdd this to your child theme’s functions.php
function graphene_custom_header_width(){ return 960; } function graphene_custom_header_height(){ return 250; } add_filter('graphene_header_image_width', 'graphene_custom_header_width'); add_filter('graphene_header_image_height', 'graphene_custom_header_height');
And this to your child theme’s style sheet or in Graphene Options –> Display –> Custom CSS
#header { height: 250px; width: 960px; }