Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Atahualpa 3 Wordpress theme (http://forum.bytesforall.com/forumdisplay.php?f=2)
-   -   [SOLVED] Strange behavior in clicking links (http://forum.bytesforall.com/showthread.php?t=12939)

Tamara-IT Feb 22, 2011 10:28 AM

[SOLVED] Strange behavior in clicking links
 
Hello,
I've set the link to be in bold, but when I click over them tey turn normal and display in a block, so that the rest of the text goes below. I don't understand why...
url: www.megedizioni.it

thanks

lmilesw Feb 22, 2011 03:16 PM

Perhaps you need to add some css to ATO>Add HTML/CSS Inserts>CSS Inserts for the active or visited state. What is the text in one of your text widgets?

Tamara-IT Feb 23, 2011 10:22 AM

Quote:

Originally Posted by lmilesw (Post 58746)
What is the text in one of your text widgets?

? Which of the text widgets are you talking about?

Tamara-IT Feb 23, 2011 10:38 AM

Anyway, I tried
Code:

a.link, a.visited, a.focus, a.hover, a.active {
        font-weight: bold;
        display: inline;
        outline: none;
}

and did not work :-(
After dinner I'll restart thinking about it!

lmilesw Feb 24, 2011 11:10 AM

Could you post what you have in the Pubblicazioni widget. Also what code do you have in ATO>Add HTML/CSS Inserts>CSS Inserts?

Tamara-IT Feb 25, 2011 01:36 AM

Here's the content:
Code:

Siamo specializzati in <a href="http://www.megedizioni.it/editoria/tecnica/">testi riguardanti il benessere, la bioarchitettura e l'ecosostenibilità’</a>, sia pubblicati da noi sia da altre case editrici.
Parte della nostra attività editoriale è dedicata agli aspetti <a href="http://www.megedizioni.it/editoria/esoterica/">esoterici ed energetici degli edifici</a>, specialmente sacri e di culto.

The problem exists with every link in the site anyway.
These are my settings in inserts, hope you don't need the whole loooooong txt:p:
Code:

/* ================================================ */
/* Regole generali                                  */
/* ================================================ */
body {
    background-position: center center fixed no-repeat;
    -moz-background-size: cover;
    background-size: cover;
}
@media only all and (max-width: 1024px) and (max-height: 768px) {
  body {       
    -moz-background-size: 1024px 768px;
    background-size: 1024px 768px;
    }
}
a.link, a.visited, a.focus, a.hover, a.active {
        font-weight: bold;
        display: inline;
        outline: none;
}


Tamara-IT Feb 25, 2011 02:05 AM

Ok, dirst silly things I did: I was duplicating the settings in ATA Options with my insert.
Deleted the insert.
The problema remains....:confused:

juggledad Feb 25, 2011 03:37 AM

You have some messed up CSS. In your CSS Inserts you have this code
HTML Code:

div .category-fiere h1 a:link, a:active {
    background-color: #FFFFFF;
    color: #7B167F;
    display: block;
    font-weight: normal;
    padding: 2px;
}

There are a couple problems with this.
1) there should be no space vetween the 'div' and the '.category-fiere'
2) putting in the ', a:active' says "Apply this to all active links. what you probably wanted is

HTML Code:

div.category-fiere h1 a:link,
div.category-fiere h1 a:active {
    background-color: #FFFFFF;
    color: #7B167F;
    display: block;
    font-weight: normal;
    padding: 2px;
}


Tamara-IT Feb 25, 2011 04:01 AM

Ok, they have to be GREEN firts and turn RED+UNDERLINED when hovered. That's fine:)
But, on firefox, opera, IE (all on winXP pro) they do not stay bold when clicked, and also take the css settings of the list items in ATA widgets style options.
They become purple+normal, also with a left margin of 1
This is what happens in the central column too.

juggledad Feb 25, 2011 04:02 AM

:)Re-read my post #8 - I saw the issue and edited my post - you just read my response to quickly

juggledad Feb 25, 2011 08:58 AM

Well I see it is fixed so I'll close this


All times are GMT -6. The time now is 01:03 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.