dragonbonetattoo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Child theme will not override parent theme CSSThat link doesn’t work. Can’t locate the server for some reason. The only reason some of the CSS is working is because I broke down and changed the parent theme CSS. Any other ideas?
Thanks!Forum: Fixing WordPress
In reply to: All of footer HTML not showingYou were absolutely right about the anchor tags. You both have been so helpful on this project. Thanks!
Forum: Fixing WordPress
In reply to: All of footer HTML not showingI had added the
a href
function to the images, attempting to get them to act as links. For example:
<a href="https://www.oakley.com" title="Oakley"></a>
I was missing the titles on the other images, so adding in titles fixed the display issue. Now it won’t link to the specified URL. Probably missing something super obvious.Forum: Fixing WordPress
In reply to: how to get footer to display images horizontallySo clearing the cache on my browser did it. It works!
Forum: Fixing WordPress
In reply to: Need to move sidebar to the leftThey are displaying the same as the landscape demo, as far as I can tell. The only sidebar I had to build from scratch was the footer. There are three that come with the theme, I’m trying to get them to be on the left of the page, instead of at the bottom. I’m not sure what you mean that the main content and sidebar are not displaying correctly. I have no idea how to fix this. I’m super new, be gentle.
Forum: Fixing WordPress
In reply to: how to get footer to display images horizontallyYou all rock so much! I’m thinking it is still not functioning correctly because I had to build my own widgitized footer, and possibly set the width incorrectly? Would this make a difference? I’m waaaay new at this..
Forum: Fixing WordPress
In reply to: Need to move sidebar to the leftI’m attempting to build the site from a Photoshop template and only had three days to do it. I grabbed the closest theme and am modifying like crazy. Is there a way to just stick a RSS feed to the left of the text in the home page itself, or should I muck about with the CSS?
Forum: Fixing WordPress
In reply to: how to get footer to display images horizontallyThanks! I have added the above CSS to my css, but it is still being stubborn. I’m probably missing something basic.. The beginning of my html is:
<div class="sponsers"> <ul> <li>..... </li> </ul> </div>
Is there something else I need to do?
Forum: Fixing WordPress
In reply to: Need to move sidebar to the leftForum: Fixing WordPress
In reply to: Div not workingThanks!
Forum: Fixing WordPress
In reply to: Div not workingI just want the image to be halfway down the page and floated right (about 100px from the right edge of the page). I’m kind of teaching myself, and mostly likely have this entirely wrong..
Forum: Fixing WordPress
In reply to: Div not workingI forgot to add…using the div styling as described above does not change the appearance of the object on the page AT ALL.
Forum: Themes and Templates
In reply to: [Landscape] Can't add widgets to footerI cleared all the other functions from the functions.php in the child theme and added the following code to it:
<?php
if ( function_exists(‘register_sidebar’) )
register_sidebars(5,array(
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h4>’,
‘after_title’ => ‘</h4>’,
));
?>
as per instructions on https://www.sueblimely.com/add-widget-ready-sidebars-to-wordpress-footers/
but I am getting a syntax error on line 12 <?php
Why? Does there need to be additional code before the function?
Thanks…Forum: Themes and Templates
In reply to: [Landscape] Can't add widgets to footerI am using a child theme to prevent fatal errors. ?? I copied the functions.php and stuck it in the child folder, but now i’m getting the following error when I try to access it in the WYSIWYG editor:
Fatal error: Cannot redeclare landscape_widgets_init() (previously declared in /home4/soul1/public_html/wp-content/themes/landscape_child/functions.php:90) in /home4/soul1/public_html/wp-content/themes/landscape/functions.php on line 138
I’m so confused..Forum: Themes and Templates
In reply to: [Landscape] Can't add widgets to footerI apologize for any duplicate posts. The URL for the site is soulriverfilm.com Thanks!