clarawr
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Bullets in Sidebar … Earthlytouch themeYou didn’t post your main CSS (I’m too lazy to search for it).
Anyways, by looking at your index HTML, you have a UL class ‘xoxo blogroll’ for the blogroll links. Delete all CSS associated with that class and then make sure you add the list-style like this:
ul { list-style-type: none; }
Forum: Themes and Templates
In reply to: Comment page: Columns not aligningOOPS, didn’t realize the single.php was part of this page. I got it fixed, yay!
Forum: Themes and Templates
In reply to: Replacing Header with existing site Navigation and headerCan you please paste the header.php file, since we can only view a static HTML page.
Forum: Themes and Templates
In reply to: Bullets in Sidebar … Earthlytouch themeCan you post the main CSS for the page?
Is this your main CSS page: https://freshandfrugalchallenge.com/wp-content/themes/EarthlyTouch/style-Green.css ?
———You need to define your lists in CSS or else by default, they will be bulletins.
Define your UL and LI classes in the CSS and that should fix your problem.
This article has a good on lists: https://www.alistapart.com/articles/taminglists/
Or, you can reply back with my question in the next 10 mins, and I’ll just give you the code.Forum: Themes and Templates
In reply to: Remove duplicate “home” tab and edit tab namesOh, and you can change the names of the links and the links themselves by changing the tags I mentioned above.
Forum: Themes and Templates
In reply to: Remove duplicate “home” tab and edit tab namesI’m not familiar with intrepidity theme, so I’m not sure what page it will be on.
Look for this group of tags on your pages:<!-- #Container--> <div id="globalnav"> <div id="navpocket"> <ul id="nav"> <li><a href="https://marketingpromotionmix.com" rel="nofollow">Home</a></li> <li class="page_item page-item-193 current_page_item"><a href="https://marketingpromotionmix.com/" title="Integrated Marketing and Social Media Management">Integrated Marketing and Social Media Management</a></li> <li class="page_item page-item-81"><a href="https://marketingpromotionmix.com/make-your-website-an-asset/" title="Make Your Website an Asset.">Make Your Website an Asset.</a></li> <li class="page_item page-item-84"><a href="https://marketingpromotionmix.com/do-i-have-to-do-social-media/" title="Do I Have to Do Social Media?">Do I Have to Do Social Media?</a></li> <li class="page_item page-item-146"><a href="https://marketingpromotionmix.com/building-success/" title="Building Success">Building Success</a></li> <li class="page_item page-item-12"><a href="https://marketingpromotionmix.com/about-us/" title="About Us">About Us</a></li> <li class="page_item page-item-120"><a href="https://marketingpromotionmix.com/marketing-mix-blog/" title="Marketing Mix Blog">Marketing Mix Blog</a></li> <li class="page_item page-item-13"><a href="https://marketingpromotionmix.com/contact-us/" title="Contact Us">Contact Us</a></li> </ul>
and delete this line:
<li><a href="https://marketingpromotionmix.com" rel="nofollow">Home</a></li>
Everything is already formatted in the CSS, so nothing should change except for the HOME link to disappear.
Hope that works out.
Forum: Themes and Templates
In reply to: Postmetadata tags will not line up properly!Thank you so much! Just the info I needed!
I was able to close the nav and that solved my problem. Now I just need to fix all the other errors…