Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme »

[SOLVED] Strange behavior in clicking links


  #1  
Old Feb 22, 2011, 10:28 AM
Tamara-IT's Avatar
Tamara-IT
 
41 posts · Jan 2011
Italy
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
  #2  
Old Feb 22, 2011, 03:16 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
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?
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #3  
Old Feb 23, 2011, 10:22 AM
Tamara-IT's Avatar
Tamara-IT
 
41 posts · Jan 2011
Italy
Quote:
Originally Posted by lmilesw
What is the text in one of your text widgets?
? Which of the text widgets are you talking about?
  #4  
Old Feb 23, 2011, 10:38 AM
Tamara-IT's Avatar
Tamara-IT
 
41 posts · Jan 2011
Italy
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!
  #5  
Old Feb 24, 2011, 11:10 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Could you post what you have in the Pubblicazioni widget. Also what code do you have in ATO>Add HTML/CSS Inserts>CSS Inserts?
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #6  
Old Feb 25, 2011, 01:36 AM
Tamara-IT's Avatar
Tamara-IT
 
41 posts · Jan 2011
Italy
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:
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;
}
  #7  
Old Feb 25, 2011, 02:05 AM
Tamara-IT's Avatar
Tamara-IT
 
41 posts · Jan 2011
Italy
Ok, dirst silly things I did: I was duplicating the settings in ATA Options with my insert.
Deleted the insert.
The problema remains....
  #8  
Old Feb 25, 2011, 03:37 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
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;
}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Feb 25, 2011 at 03:47 AM.
  #9  
Old Feb 25, 2011, 04:01 AM
Tamara-IT's Avatar
Tamara-IT
 
41 posts · Jan 2011
Italy
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.
  #10  
Old Feb 25, 2011, 04:02 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Re-read my post #8 - I saw the issue and edited my post - you just read my response to quickly
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #11  
Old Feb 25, 2011, 08:58 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Well I see it is fixed so I'll close this
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Strange behavior Karin Atahualpa 3 Wordpress theme 1 Feb 16, 2011 11:04 AM
[SOLVED] Strange Post behavior on some Page pages blueprairie Plugins & Atahualpa 6 Nov 9, 2009 06:34 PM
[SOLVED] Strange behavior on sidebar widgets with Flexi Pages ScottKarlins Sidebars & Widgets 8 Oct 25, 2009 07:21 AM
Unusual Behavior in IE and Safari Kevinito Header configuration & styling 4 Aug 6, 2009 07:05 AM
Strange behavior when editing bfa_header_config.php jacoblo Header configuration & styling 2 Mar 24, 2009 04:45 AM


All times are GMT -6. The time now is 05:18 AM.


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