Yulian
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need to change theme's template for leaving commentsI’ve just downloaded and installed Admired theme from https://www.ads-software.com/extend/themes/admired
The default comment form looks pretty standard. The picture bellow shows what comment form looks like in my testing server.
https://img341.imageshack.us/img341/3518/20130124224005.pngI checked the code you posted above, it is not related to the elements of comment form. It only auto-fills your credanitals in comment form if you are loged-in user
Check once again plugins you are using and even clear the browser cache.
Forum: Themes and Templates
In reply to: Need to change theme's template for leaving commentsAh, I see, you are using JetPack or some other plugin. If it’s so you can ask in plugins section about its behavior.
I would recommend you to deactivate the plugin and use default comment form built in the theme. It has got exactly what you wantForum: Themes and Templates
In reply to: Need to change theme's template for leaving commentsI can’t understand. You want area “Comment” to be called “What do you want to say”? If you are talking about this theme https://www.ads-software.com/extend/themes/admired the comment fields are arranged exactly in the way you’ve written above – name, email, website, comment.
Forum: Themes and Templates
In reply to: Add dotted line between posts in Recent PostsTry with
.widget_recent_entries li { border-bottom: 1px dashed #F00; }
P.S. color #F00 is just as example, the actual link color in your theme is #800080
Forum: Themes and Templates
In reply to: Header image and title alignmentI’m the author of RedLine. Thank you for choosing the theme for your site.
As far as your questions:
1. Header image – If you don’t want to use default image size 960×200, then you have to set the size you want (85px) in theme’s functions.
In Admin panel > Appearance > Editor open Theme Functions (functions.php), at the top you’ll see the parameters of custom_header function. Change argument
'height' => 200
with a value you desire (85), save the changes and you are done.2. Date and time a.k.a infoarea ?? – Again in Admin panel > Appearance > Editor open Header (header.php) find the following code
<!--Begin infoarea--> <section id="siteinfo"><div id="feedarea"> <dl><dt><span style="float:left;"><?php bloginfo( 'description' ) ?></span> <?php echo date_i18n( __( 'l, j F Y - G:i', 'redline' ) ); ?></dt> </dl></div></section> <!--End infoarea -->
It is placed after <body> tag, delete it (from Begin to End) save the changes and you are done.
Hope it helps ??
Forum: Fixing WordPress
In reply to: full-width header and footerFor menus – Edit the selectors with putting a width and margin 0
for top menu
#topmenu { height: 24px; margin: 0 auto; width: 960px;
for second menu – make a new selector
#sec_nav
#sec_nav { margin: 0 auto; width: 960px;
Forum: Fixing WordPress
In reply to: full-width header and footerRemove
padding
or make it only for top and bottompadding: 10px 0;
Forum: Fixing WordPress
In reply to: full-width header and footerDefault settings for the logo are in functions.php
// The height and width of your custom header define( 'HEADER_IMAGE_HEIGHT', 85 ); define( 'HEADER_IMAGE_WIDTH', 960 ); define( 'HEADER_TEXTCOLOR', 'FFFFFF' ); define( 'HEADER_IMAGE', '%s/library/media/images/header.jpg' );
Take in mind that the values are in pixels, you cannot make the logo flexible (like width:100%) because it’s intended to be an image file.
Forum: Fixing WordPress
In reply to: full-width header and footer?? I’m the author of RedLine
The layout is structured like so:
container -header -content --primary --secondary -footer
So as Fill suggests above, make
#container
width 100% and put width 960px to#content
, along withmargin: 0 auto;
also thereForum: Themes and Templates
In reply to: [Theme: Redline]Hi @proof_fairy I’m the author on RedLine theme ??
The basic fonts are described in style.css row 63 combined selectors
body, input, textarea
So the change there will (and have to) affect all theme’s text areas, except the titles.But in case you want different styling: the content is divided in two main parts – primary (left column, for the main articles) and secondary (the right, widgets area)
So you can use selectors #primary and #secondary do define precisely the styling.Forum: Themes and Templates
In reply to: I18n WP theme: advice neededGreat! It works as I wanted. Thanks esmi!