Forum Replies Created
- Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236
gavintfn
ParticipantDeprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 2432Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236Warning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220ok, so stargazer is not very helpful…
first, copy the files before you change them…
to remove posted by etc… apperance – editor – content.php
delete lines like
<li><?php _e( ‘Written by’, ‘minimatica’ ); ?> <?php the_author_posts_link(); ?></li>for the side bar,
get the id of the post that you would like to exclude… this should be a number…
you will go to apperance – editor loop-single.php.look for >?php get_sidebar(); ?<
change for <?php if(!is_page(‘yournumber’)){ get_sidebar(); } ?>
this says that if the page IS NOT your number than get the sidebar.
once again make a copy… hit me back if there is problems.- This reply was modified 12 years, 6 months ago by gavintfn.
AdvertismentDeprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220that part of the code is in kwicks.js… might be a little tough, but what kwicks is doing is animating the position of the div. try adding
-webkit-transition: left .3s, margin .3s;
-moz-transition: left .3s, margin .3s;
-o-transition: left .3s, margin .3s;
transition: left .3s, margin .3s;to .slide .active in the css… Cant say its gonna work, but i will mess with it later and find the correct way.
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220oh… make a copy of header.php and footer.php files first…. just in-case.
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220Just as friendly advice, if you are a beginner with HTML and CSS, You probably dont want to do this.. if just a beginner with PHP… you should be alright…
look in the appearance – editor – footer.php file…
you will want to copy
<nav id=”access” role=”navigation”>
<?php wp_nav_menu( array( ‘theme_location’ =<‘primary_nav’, ‘container_id’ => ‘primary-nav’, ‘container_class’ =>’nav’, ‘fallback_cb’ =>’minimatica_nav_menu’ ) ); ?>
</nav>place it in the header.php according to where and how you would like to style it.
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220depends no what you want to do ….the included wp gallery has setting under appearance editor… after, You will
1. create a “post”,
2. put any number of images in,
3. edit the “page” you would like to display the images in,
4. use the shortcode [gallery id="your post number"] to display the gallery.the gallery for minimatica is what is on the home page, if you want this,
you want to:turn category view to “gallery” in minimatica theme options,
add images to posts,
associate posts to categories,
make your menu buttons go to categories instead of posts…
so go to http://www.yoursite.com/yourcategory/ , instead of http://www.yoursite.com/yourcategory/pics
this will show the posts images from yourcategory in a gallery formator use pages as opposed to posts, and chooses gallery on the right hand side..
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220nice catch…. its really late, so ill double check tomorrow… but here’s a few guesses why thats happening….
one….should probably use %s to specify that strings are text strings, so _(‘%s Comment’) I know daniel already put a conversion in… but it shouldn’t hurt…
a long shot but at a quick glance, your br tag is set up for XHTML, I did not see an XHTML tag… its HTML… so maybe make that switch the br tag to the html version… it does not have to close in html.
but most likely…
if you ftp into your site, go to wp-content/themes/minimatica/languages/minimatica.pot
this is the file that sets up the translation….
for example in french…. your translations should look like this:
#: comments.php:67
msgid “Comments”
msgstr “Commentaire”look for the term you want to translate….and change accordingly..
heres the codex link…
http://codex.wordpress.org/Translating_WordPressreply if ya need more help…
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantDeprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 2432Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236Warning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220guenes.. good job… Im glad you were able to figure it out… I was sure i missed something…
site looks great…heres a couple small css stuff you might like.. unless noted find and replace. in css file dont add in my little notes..that have the asterisks…
#slides {
margin: 0 auto;
overflow: hidden;
box-shadow: 2px 3px 30px 5px rgba(3, 3, 3, 0.66);
-webkit-box-shadow: 2px 3px 30px 5px rgba(3, 3, 3, 0.66);
-moz-box-shadow: 2px 3px 30px 5px rgba(3, 3, 3, 0.66);
transition: box-shadow .3s;
-moz-transition: -moz-box-shadow 0.3s;
-webkit-transition: -webkit-box-shadow 0.3s;
}***need to ad next***
#slides:hover {
position: relative;
box-shadow: 0px 0px 25px 12px rgba(9, 7, 7, 0.83);
-webkit-box-shadow: box-shadow: 0px 0px 25px 12px rgba(9, 7, 7, 0.83);
-moz-box-shadow: box-shadow: 0px 0px 25px 12px rgba(9, 7, 7, 0.83);
}***long one***
#slider {
position: relative;
height: 410px;
padding: 30px 0 30px 0;
margin-bottom: 20px;
-moz-box-shadow: 0px 0px 20px #070404;
-webkit-box-shadow: 0px 0px 20px #070404;
box-shadow: inset 0px -3px 20px #070404;
border-bottom: 1px solid rgba(221, 221, 221, 0.3);
background -image: -moz-linear-gradient(top, rgba(22,22,22,0.3) 0%, rgba(195,195,195,0.3) 25%, rgba(229,229,229,0.32) 30%, rgba(238,238,238,0.35) 37%, rgba(246,246,246,0.37) 43%, rgba(255,255,255,0.4) 50%, rgba(246,246,246,0.37) 57%, rgba(236,236,236,0.35) 65%, rgba(229,229,229,0.32) 70%, rgba(191,191,191,0.3) 75%, rgba(2,2,2,0.3) 100%); /* FF3.6+ */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(22,22,22,0.3)), color-stop(25%,rgba(195,195,195,0.3)), color-stop(30%,rgba(229,229,229,0.32)), color-stop(37%,rgba(238,238,238,0.35)), color-stop(43%,rgba(246,246,246,0.37)), color-stop(50%,rgba(255,255,255,0.4)), color-stop(57%,rgba(246,246,246,0.37)), color-stop(65%,rgba(236,236,236,0.35)), color-stop(70%,rgba(229,229,229,0.32)), color-stop(75%,rgba(191,191,191,0.3)), color-stop(100%,rgba(2,2,2,0.3))); /* Chrome,Safari4+ */
background-image: -webkit-linear-gradient(top, rgba(22,22,22,0.3) 0%,rgba(195,195,195,0.3) 25%,rgba(229,229,229,0.32) 30%,rgba(238,238,238,0.35) 37%,rgba(246,246,246,0.37) 43%,rgba(255,255,255,0.4) 50%,rgba(246,246,246,0.37) 57%,rgba(236,236,236,0.35) 65%,rgba(229,229,229,0.32) 70%,rgba(191,191,191,0.3) 75%,rgba(2,2,2,0.3) 100%); /* Chrome10+,Safari5.1+ */
background-image: -o-linear-gradient(top, rgba(22,22,22,0.3) 0%,rgba(195,195,195,0.3) 25%,rgba(229,229,229,0.32) 30%,rgba(238,238,238,0.35) 37%,rgba(246,246,246,0.37) 43%,rgba(255,255,255,0.4) 50%,rgba(246,246,246,0.37) 57%,rgba(236,236,236,0.35) 65%,rgba(229,229,229,0.32) 70%,rgba(191,191,191,0.3) 75%,rgba(2,2,2,0.3) 100%); /* Opera 11.10+ */
background-image: -ms-linear-gradient(top, rgba(22,22,22,0.3) 0%,rgba(195,195,195,0.3) 25%,rgba(229,229,229,0.32) 30%,rgba(238,238,238,0.35) 37%,rgba(246,246,246,0.37) 43%,rgba(255,255,255,0.4) 50%,rgba(246,246,246,0.37) 57%,rgba(236,236,236,0.35) 65%,rgba(229,229,229,0.32) 70%,rgba(191,191,191,0.3) 75%,rgba(2,2,2,0.3) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(22,22,22,0.3) 0%,rgba(195,195,195,0.3) 25%,rgba(229,229,229,0.32) 30%,rgba(238,238,238,0.35) 37%,rgba(246,246,246,0.37) 43%,rgba(255,255,255,0.4) 50%,rgba(246,246,246,0.37) 57%,rgba(236,236,236,0.35) 65%,rgba(229,229,229,0.32) 70%,rgba(191,191,191,0.3) 75%,rgba(2,2,2,0.3) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#4d161616′, endColorstr=’#4d020202′,GradientType=0 ); /* IE6-9 */
}.nav ul li a {
display: inline-block;
padding: 5px 0;
color: #E2D0CF;
text-decoration: none;
text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.92);
transition: text-shadow .4s ease-in-out;
-webkit-transition: text-shadow .4s;
-moz-webkit-transition: text-shadow .4s;
}***need to add this one..**
#primary-nav ul li a:hover {
text-shadow: 2px 2px 1px black,0px -4px 50px rgba(235, 235, 235, 1), -3px 1px 30px rgba(235, 235, 235, 0.96), 0px 4px 30px rgba(236, 236, 236, 0.97);
transition: text-shadow .4s;
-webkit-transition: text-shadow .4s;
-moz-transition:text-shadow .4s;
color: white;
}#header img {
top: 0px;
left: 0px;
height: 100%;
width: 100%;
z-index: 1;
position: relative;
max-width: 100%;
box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.86);
-moz-box-shadow:0px 0px 14px 3px rgba(0, 0, 0, 0.86);
-webkit-box-shadow:0px 0px 14px 3px rgba(0, 0, 0, 0.86);
border-bottom: 1px solid rgba(204, 204, 204, 0.25);
}- This reply was modified 12 years, 7 months ago by gavintfn.
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220Pcch and guenes…
sorry, been super busy… anyway.. guenes, the images just loaded and run through a gray scale, then they release the grayscale on mouseover and reapply on mouse out. a little java… anyway, here are the directions..btw… do not include the backticks before and after the code. they are the backwards apostrophes… 1st time i have used paste bin..my bad…
http://pastebin.com/yKwSghUBPcch… thanks for the compliment…i think my designing is horrible..lol..but anyway… heres your answer…
let me know if ya need more help..
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220PCCh…
well put!.. Sometimes, there is a css style sheet associated with lightbox, or colorbox. or just an image. After changing the functions files, you will still have to find the css file and make the changes there.. That would account for smaller, but not larger.. If the css was still set smaller, even the functions would check that last and limit the size.. Also, many times when you upload a file to WP, it will create multiple sizes of the same image… I could also be pulling that file, say 600 x 400, best way to insure that this doesnt happen is to upload you photos to your site manually, and reference them manualy.
But in any case, for Colorbox…if thats what we are still talking about, there is a couple functions that will override anything you change in regards to standard height… Ill mess with later tonight but in the meantime, if anyone else wants to check it out, it is located in colorbox.js which is in the wpcontent/themes/minimatica/script file…have a look at:
publicMethod.load = function (launched)
can someone post an example? thx…
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantDeprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 2432Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236Warning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220PCCh, site looks great!! a few little notes, I would push your text content in each slider a little up, and a little right, to line up with the text on each image..use margins… you can do that in style.css i already figured it out for you… here ya go..
.kwicks .post .entry-container {
position: absolute;
bottom: 0;
padding: 10px;
margin: 10px 10px 18px 35px;
background: url(images/entry.png);
display: none;also, maybe put all of your page titles in a drop down, instead of listed out, and move the nav to the top of the page…
something like this:http://www.yellowrootllc.com/site2
site that i test stuff out with…
if you want to do that i wrote a walkthrough on here a couple months ago… if ya cant find it, i can re-type it up quickly..but slider is sick! great job, thanks for finding my neglected portion!!.. Good job.
- This reply was modified 12 years, 8 months ago by gavintfn.
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220actually, lol.. not that bad…can be done with CSS and one quick change to Loop-slider.php
ok, so, first go to loop-slider.php under editor section… (note: haven’t tested a lot of text content in slides, but seems to be fine.)your looking for
‘posts_per_page’ => 4′
change it to the number you would like to have….so 4 to 7make sure you have enough posts…if not publish a couple test posts…
next,
go to style.css still in editor…find:
#ajax-content {
position:relative;
max-width:1140px;
margin:0 auto;
}change max width to:
#ajax-content {
position:relative;
max-width:940px;
margin:0 auto;
}next find:
#slides {
margin:0 auto;
overflow:hidden;
}add max-width:940px;
so it should look like:#slides {
margin:0 auto;
overflow:hidden;
max-width:940px;
}lastly, take your total number of slides you intend on having and divide 940 by that number…id round down if you get a decimal.. write it down…
in css find
.kwicks .slide {
float:left;
display:block;
width:230px;
height:410px;
overflow:hidden;
-moz-box-shadow:0px 0px 30px #000;
-webkit-box-shadow:0px 0px 30px #000;
box-shadow:0 0 30px #000;
}change the width from 230 to the number you wrote down… save, and that should be it..
it seems as though kwicks.js pulls in the values that you enter from css.. .. Ughh… its late i dont know.. any way, if you have a problem, let me know, and post a link so i can see it…
please let me know if I’m missing something…
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220ergg…without looking a little deeper…i can tell you that you do not have images set for your featured image… the second slide is trying to pull a video…
I would start by making sure all posts have a featured image set.. bottom right hand side on the edit post screen..If that does not work, use an make all your posts standard, (middle right in the edit post screen) not video,
and manually use and embed tag in the content area, as opposed to using the media upload. Format your page accordingly.Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220for now the simple solution if dont want to mess with code is a plugin… If your only doing a couple…
here is the link:
http://wordpress.org/extend/plugins/quick-pagepost-redirect-plugin/Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantDeprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 2432Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236Warning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220yeah, sure…but it takes a couple steps… I am assuming you know how to use appearance > editor in the main dashboard..so If you don’t understand what something means…just let me know…
ok, in header.php i created a div around the header so to speak…
so where you see this:<header id=”header” role=”banner”>
<?php $heading_tag = ( is_home() || is_front_page() ) ? ‘h1’ : ‘div’; ?>
<<?php echo $heading_tag; ?> id=”site-title”><a href=”<?php echo home_url(); ?>” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?></a></<?php echo $heading_tag; ?>>
</header>Replace with this:
<header id=”header” role=”banner”>
<div id=”centerheader”>
<?php $heading_tag = ( is_home() || is_front_page() ) ? ‘h1’ : ‘div’; ?>
<a href=” http://yoursite.com/ “><img src=”http://yoursite.com/yourjpg location” height=”100px” width=”940px” style=”max-width:940px; margin:0 auto;”></img></a>
</div>
</header>________________________________________
Second Part…in style.css add to bottom, (once again, in the appearance > editor area..should be all the way at the bottom on the right…)
#centerheader {
margin:0 auto;
width:940px;
height:auto;
}Start there, lets see it…
- This reply was modified 12 years, 8 months ago by gavintfn.
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236gavintfn
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220This one still open?