baymediaarts
Forum Replies Created
-
Forum: Plugins
In reply to: Contact Form Widget?“Contact Me Widget”
Forum: Fixing WordPress
In reply to: how to remove columnwent in footer.php and removed widget code. then in css, i changed size of footer. thanks
Forum: Fixing WordPress
In reply to: how to remove columnI don’t have any widgets enabled. So, ill go into footer.php and edit it. can you tell what code i should be looking for to edit out?
thanksForum: Fixing WordPress
In reply to: Image not showing up in sidebarThat worked, thanks!
Forum: Fixing WordPress
In reply to: Image not showing up in sidebarwebsite is musicianstelevision.com/wordpress
Forum: Fixing WordPress
In reply to: logo not showing up in headerI have decided to put logo in sidebar instead but I get a box with no image and question mark inside it. I also tried using a text widget with no luck. Here is my current sidebar code;
<div class="sidebar"> <img src="url_of/https://www.musicianstelevision.com/wordpress/wp-content/uploads/2009/01/mtn_mulitco_logo.png" width="140" height="200" /> <?php /* if the current pages has a parent, i.e. we are on a subpage */ if ( $post->post_parent) { $parent_title = get_the_title($post->post_parent); $parent_link = get_permalink($post->post_parent); $children = wp_list_pages("title_li=&include=".$post->post_parent."&echo=0"); // list the parent page $children = wp_list_pages("depth=1&title_li=&child_of=".$post->post_parent."&echo=0"); // append the list of children pages to the same } // $children variable /* else if the current page does not have a parent, i.e. this is a top level page */ else { $parent_title = get_the_title($post->ID); $children = wp_list_pages("title_li=&include=".$post->ID."&echo=0"); $children = wp_list_pages("depth=1&title_li=&child_of=".$post->ID."&echo=0"); // form a list of the children of the current page } if ($children) { echo "<div style='float: right; width: 220px; padding-top: 25px; height: 100%;'>"; echo "<a href='" . $parent_link . "'>" . $parent_title . "</a>"; echo "<ul style='list-style: none; padding-left: 20px;'>"; echo $children; /*print list of pages*/ echo "</ul>"; echo "</div>"; } ?> </div> </div>
Forum: Fixing WordPress
In reply to: logo not showing up in headerI was following other forums advice/directions. they where giving advise based on the specific theme and setup. I am pretty sure i would need custom directions. so, if you would help me out, I would really appreciate it.
Forum: Fixing WordPress
In reply to: logo not showing up in headerumm, I placed the image (mtn_mulitco_logo.png) in the media library, in the control panel of wordpress. The location is
https://musicianstelevision.com/wordpress/wp-content/uploads/2009/01/mtn_mulitco_logo.png
Forum: Fixing WordPress
In reply to: adding logo to headerI am having a similar problem on
https://www.musicianstelevision.com/wordpress
I tried a few different variations to get the logo to show up, with no luck. Anyone with any suggestions?
current code for header in css.style is as follows:
/* Header */ #header { position: absolute; top: 0; left: 0; width: 900px; height: 159px; } #headerimg { padding: 17px 0 0 14px; height:140px; background-image: url('images/mtn_mulitco_logo.png') 500px 0px no-repeat; } #header h1 { width: 590px; height: 100px; position: absolute; bottom: 0; left: 0; } #header h1 a { width: 590px; height: 100px; display: block; text-decoration: none; } #header h1 a .blogName { /*display: none;*/ font-size: 24px; color: #FFFFFF; font-weight: light; display: block; } #header a .blogDescription { font-size: 36px; color: #cccfd1; font-weight: normal; display: block; } /* Header auxiliary box */ #auxBox { width: 310px; height: 118px; position: absolute; bottom: 0; right: 0; } #siteFeeds { margin-left: 15px; margin-top: 15px; } #siteFeeds li { list-style: none; background-image: url('images/rss-icon.png'); background-repeat: no-repeat; background-position: left top; padding-left: 20px; margin-bottom: 0.5em; } #siteFeeds li a { color: #FFFFFF; } #searchForm { width: 266px; height: 31px; background-image: url('images/search-background.png'); background-repeat: no-repeat; background-position: left top; position: relative; margin-left: 15px; margin-top: 15px; } #searchForm #s { width: 198px; height: 22px; position: absolute; left: 7px; top: 2px; border: none; background-color: transparent; line-height: 27px; color: #FFFFFF; padding-top: 5px; } #searchForm #searchsubmit { position: absolute; right: 0; top: 0; } /* Enable/Disable animation button */ #enableDisableAnimation { top: 6px; right: 8px; position: absolute; } #enableDisableAnimation img { border: none; display: none; }
Forum: Fixing WordPress
In reply to: sidebar moving under the contenti fixed it.
from:
echo "<div style='width: 220px; padding-top: 25px; height: 100%;'>";
to:
echo "<div style='float: right; width: 220px; padding-top: 25px; height: 100%;'>";
Forum: Fixing WordPress
In reply to: sidebar moving under the contentForum: Themes and Templates
In reply to: Remove / Change Default Theme Dropdown Menu.I am having the same problem! my header code is below.
[Code moderated as per the Forum Rules. Please use the pastebin]
thanks
Forum: Themes and Templates
In reply to: [Mystique Theme] How to remove drop down menu on navi bari am having a similar problem. i want to remove the drop down menu all together. any resolution?
also, i don’t really need the drop down menu from my main horizontal header menu now that the subpages are showing up in sidebar. Do you know how to get rid of drop down menu in the main horizontal menu?
thanksI was wondering if you know what code to add to the original code to make it so you can see the parent page too, not just the children/sub-pages? hope that makes sense.
thanks