|
#1
Sep 27, 2011, 03:18 PM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
I added new link categories. The fist one the title category is one size font but all the others are larger.
The bullets on the first link are bar bullets. The other new categories that were added have the larger title font and the bullets are little dots.
Can anyone explain how or why that happened and how I can fix it so that all the fonts and bullets are the same (the bar bullet)
Thanks
|
#2
Sep 27, 2011, 03:43 PM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
what version of Atahualpa and WP?
What is your URL
if atahualpa 3.6.7, do you have the patches applied?
- PATCH 367-01: Odd effects when 'CSS: Compress' = 'Yes'
- PATCH 367-02 is incorporated in PATCH 367-04
- PATCH 367-03: PHP errors when adding widget areas in index.php
- PATCH 367-04: Hovering over a Post/Page title only shows "Permanent Link to"
- PATCH 367-05: Site Title appended after the 'WordPress SEO by Yoast' title
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#3
Sep 27, 2011, 03:57 PM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
I have3.6.7 and yes I have all the patches. I have version 3.2.1. wordpress
Here is my URL: http://www.pyrography-gourd-art.com/
Last edited by lmilesw; Sep 27, 2011 at 04:30 PM.
|
#4
Sep 27, 2011, 08:00 PM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
the source shows this
HTML Code:
<div id="linkcat-99" class="widget widget_links">
<div class="widget-title">
<h3>Gourd & Pyrography Supplies & Tools</h3>
</div>
<ul class="xoxo blogroll">
<li>
<a target="_blank" title="Fine Gourd and Wood Art; Gourd and Pyrography Supplies and Tools; Free Tutorials and more" rel="me" href="http://www.sawdustconnection.com/">Sawdust Connection</a>
</li>
</ul>
<h3>Gourd & Seed Suppliers</h3>
</div>
The first one is the widget title and the title is an <h3> under a <div> under a <div> so it is picking up the styling for that element. the others are <h3> under just one <div> so there is different styling it picks up.
This is a place where you need to know some CSS (w3schools.com/css is a great reference) and using FireBug in FireFox is a great way to see where an HTML element lies in the code and what CSS applies to it.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#5
Sep 28, 2011, 08:26 AM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
thank you. My web design has helped me on my website and I do know a bit about css but i am totally new to wordpress and don't even see how I can change the css on the titles.
Also, how/why are the bullets different bullets or is that all part of the different styling.
|
#6
Sep 28, 2011, 08:36 AM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
I found the source code but don't know how to edit it. I'm assuming that this is what needs to be added before the other category titles:
<div id="linkcat-99" class="widget widget_links"><div class="widget-title">
is that correct?
If so, how do I got in and edit the code
Nedra
|
#7
Sep 28, 2011, 09:15 AM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
you don't need to edit the code, you just need to add some CSS and you can do that as a theme option. Go to ATO->Add HTML/CSS Inserts->CSS Inserts and add
HTML Code:
div#linkcat-99 .widget-title h3 {
font-size: 24px;
}
this will make any <h3> that is inside an element with a class of 'widget-title' that is inside a <div> with an ID of 'linkcat-99' be font size 24px.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#8
Sep 28, 2011, 09:30 AM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
Thanks, but what about the bullets?
Nedra
|
#9
Sep 28, 2011, 09:40 AM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
is this where I am supposed to find that area to fix:
http://www.pyrography-gourd-art.com/...=functions.php
and if so, how and where to I paste that.
I don't see where I can do anything to make sure all the bullets are bars either
Nedra
|
#10
Sep 28, 2011, 09:45 AM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
You don't need to edit any of the theme code. ATO stands for Atahualpa Theme Options - so go to the dashboard->appearances ATO...
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#11
Sep 28, 2011, 10:29 AM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
ok, have inserted that code into the css and the font size is now all the same and looks much better.
The bullets are still not bars. How do I change that so they are all bars?
Nedra
|
#12
Sep 28, 2011, 03:58 PM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
I would still love to know why this happened. All I did was post new categories and links and why/how did the code change?
I did NOT touch the code and it would really help to know how the font size changed and how the bullets changed on it's own. Is this a bug or what?
|
#13
Sep 28, 2011, 05:02 PM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
Seems we have figured out the problem.
I wiped out the blog when I published all the pages to my site which is my primary domain and my blog folder resides within that under public_html .....my host was able to put the blog back but I didnt realise the widgets needed to get put back and that was the problem and all is well now.
So, if anyone else has a problem like this perhaps this will help them fix the problem.
|
#14
Sep 28, 2011, 08:10 PM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
the grey bars are actually CSS that is setting the left border of the element. It is controlled in the widget styling. the dots are the LI style and is generally shut off. Some widgets work a little different though.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#15
Sep 29, 2011, 01:01 PM
|
|
|
25 posts · Sep 2011
New Mexico
|
|
any idea how or why those dots popped up on the blog?
Nedra
|
|